diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-18 10:15:07 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-02-27 10:36:45 +0100 |
commit | 4141a5a240fba44b4b4a1c488c279d7dd8a11ec7 (patch) | |
tree | dda5c962984e3a4bb3a0461fb4c9973916eab5d6 /tests/fate-run.sh | |
parent | da8093f712d625db7ce4a2526fb52994e01921ec (diff) | |
download | ffmpeg-4141a5a240fba44b4b4a1c488c279d7dd8a11ec7.tar.gz |
Use modern avconv syntax for codec selection in documentation and tests
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 623fd635a0..43fcee02ab 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -164,8 +164,8 @@ video_filter(){ label=${test#filter-} raw_src="${target_path}/tests/vsynth1/%02d.pgm" printf '%-20s' $label - avconv $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src \ - $FLAGS $ENC_OPTS -vf "$filters" -vcodec rawvideo -frames:v 5 $* -f nut md5: + avconv $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src \ + $FLAGS $ENC_OPTS -vf "$filters" -c:v rawvideo -frames:v 5 $* -f nut md5: } pixfmts(){ |