Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
2a222a72
Commit
2a222a72
authored
Oct 17, 2012
by
Mans Rullgard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fate-lavfi: replace sed/grep/cut combos with awk
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
4ebc6a74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lavfi-regression.sh
tests/lavfi-regression.sh
+2
-2
No files found.
tests/lavfi-regression.sh
View file @
2a222a72
...
@@ -49,7 +49,7 @@ do_lavfi_pixfmts(){
...
@@ -49,7 +49,7 @@ do_lavfi_pixfmts(){
out_fmts
=
${
outfile
}${
1
}
_out_fmts
out_fmts
=
${
outfile
}${
1
}
_out_fmts
# exclude pixel formats which are not supported as input
# exclude pixel formats which are not supported as input
$avconv
-pix_fmts
list 2>/dev/null |
sed
-ne
'9,$p'
|
grep
'^\..\.'
|
cut
-d
' '
-f2
|
sort
>
$exclude_fmts
$avconv
-pix_fmts
list 2>/dev/null |
awk
'NR > 8 && /^\..\./ { print $2 }'
|
sort
>
$exclude_fmts
$showfiltfmts
scale |
awk
-F
'[ \r]'
'/^OUTPUT/{ print $3 }'
|
sort
|
comm
-23
-
$exclude_fmts
>
$out_fmts
$showfiltfmts
scale |
awk
-F
'[ \r]'
'/^OUTPUT/{ print $3 }'
|
sort
|
comm
-23
-
$exclude_fmts
>
$out_fmts
pix_fmts
=
$(
$showfiltfmts
$filter
|
awk
-F
'[ \r]'
'/^INPUT/{ print $3 }'
|
sort
|
comm
-12
-
$out_fmts
)
pix_fmts
=
$(
$showfiltfmts
$filter
|
awk
-F
'[ \r]'
'/^INPUT/{ print $3 }'
|
sort
|
comm
-12
-
$out_fmts
)
...
@@ -70,7 +70,7 @@ do_lavfi_pixfmts "scale" "200:100"
...
@@ -70,7 +70,7 @@ do_lavfi_pixfmts "scale" "200:100"
do_lavfi_pixfmts
"vflip"
""
do_lavfi_pixfmts
"vflip"
""
if
[
-n
"
$do_pixdesc
"
]
;
then
if
[
-n
"
$do_pixdesc
"
]
;
then
pix_fmts
=
"
$(
$avconv
-pix_fmts
list 2>/dev/null |
sed
-ne
'9,$p'
|
grep
'^IO'
|
cut
-d
' '
-f2
|
sort
)
"
pix_fmts
=
"
$(
$avconv
-pix_fmts
list 2>/dev/null |
awk
'NR > 8 && /^IO/ { print $2 }'
|
sort
)
"
for
pix_fmt
in
$pix_fmts
;
do
for
pix_fmt
in
$pix_fmts
;
do
do_video_filter
$pix_fmt
"slicify=random,format=
$pix_fmt
,pixdesctest"
-pix_fmt
$pix_fmt
do_video_filter
$pix_fmt
"slicify=random,format=
$pix_fmt
,pixdesctest"
-pix_fmt
$pix_fmt
done
done
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment