diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-13 08:37:13 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-16 20:24:20 +0200 |
commit | 4f4f33844a7369e5579912cc02f3c5376b1e6872 (patch) | |
tree | d585c43840f102edd2e10174a39b13081b4d7c1c /tests/regression-funcs.sh | |
parent | a3f2f766afe6aa86f56c293875d627f30233cfad (diff) | |
download | ffmpeg-4f4f33844a7369e5579912cc02f3c5376b1e6872.tar.gz |
avconv: use stream copy by default when possible.
Diffstat (limited to 'tests/regression-funcs.sh')
-rwxr-xr-x | tests/regression-funcs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/regression-funcs.sh b/tests/regression-funcs.sh index bba189092b..60aa4d8d21 100755 --- a/tests/regression-funcs.sh +++ b/tests/regression-funcs.sh @@ -95,7 +95,7 @@ do_avconv_crc() do_video_decoding() { - do_avconv $raw_dst $DEC_OPTS $1 -i $target_path/$file -f rawvideo $ENC_OPTS -vsync 0 $2 + do_avconv $raw_dst $DEC_OPTS $1 -i $target_path/$file -f rawvideo -vcodec rawvideo $ENC_OPTS -vsync 0 $2 } do_video_encoding() @@ -112,5 +112,5 @@ do_audio_encoding() do_audio_decoding() { - do_avconv $pcm_dst $DEC_OPTS -i $target_path/$file -sample_fmt s16 -f wav + do_avconv $pcm_dst $DEC_OPTS -i $target_path/$file -sample_fmt s16 -f wav -acodec pcm_s16le } |