diff options
author | Mans Rullgard <mans@mansr.com> | 2011-05-07 13:57:21 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-05-09 10:12:39 +0100 |
commit | eeadaa6bc09dbecccfe3d227a336f6cdeba0b39a (patch) | |
tree | 095d513ddf68ae6e5bc648db32dc550f11327756 /tests/codec-regression.sh | |
parent | 847aaec682f2bbfaac55ee623364dd4527e0f341 (diff) | |
download | ffmpeg-eeadaa6bc09dbecccfe3d227a336f6cdeba0b39a.tar.gz |
regtest: separate flags for encoding and decoding
This separates encoding and decoding flags, and passes them together
with the related file argument instead of all at the start of the
command line.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'tests/codec-regression.sh')
-rwxr-xr-x | tests/codec-regression.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codec-regression.sh b/tests/codec-regression.sh index c8fd275e19..93b8901f42 100755 --- a/tests/codec-regression.sh +++ b/tests/codec-regression.sh @@ -61,7 +61,7 @@ do_video_decoding # mpeg2 encoding interlaced file=${outfile}mpeg2reuse.mpg -do_ffmpeg $file -sameq -me_threshold 256 -mb_threshold 1024 -i ${target_path}/${outfile}mpeg2thread.mpg -vcodec mpeg2video -f mpeg1video -bf 2 -flags +ildct+ilme -threads 4 +do_ffmpeg $file $DEC_OPTS -me_threshold 256 -i ${target_path}/${outfile}mpeg2thread.mpg $ENC_OPTS -sameq -me_threshold 256 -mb_threshold 1024 -vcodec mpeg2video -f mpeg1video -bf 2 -flags +ildct+ilme -threads 4 do_video_decoding fi |