diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-10-28 10:24:02 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-10-28 10:24:02 +0000 |
commit | 61b262a90ae9a337875cba826bb89a35ab92f3d0 (patch) | |
tree | d9ec1220249c480dd83667ef47c964848fae5c97 /tests/regression.sh | |
parent | 1c3990dbba6a1e594c8a273e85c8460d90d29643 (diff) | |
download | ffmpeg-61b262a90ae9a337875cba826bb89a35ab92f3d0.tar.gz |
h.261 regression test
Originally committed as revision 3644 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/regression.sh')
-rwxr-xr-x | tests/regression.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/regression.sh b/tests/regression.sh index 5c064ad95c..91d82eb85c 100755 --- a/tests/regression.sh +++ b/tests/regression.sh @@ -44,6 +44,7 @@ else do_msmpeg4=y do_wmv1=y do_wmv2=y + do_h261=y do_h263=y do_h263p=y do_mpeg4=y @@ -224,6 +225,16 @@ do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst fi ################################### +if [ -n "$do_h261" ] ; then +# h261 encoding +file=${outfile}h261.avi +do_ffmpeg $file -y -qscale 11 -f pgmyuv -i $raw_src -s 352x288 -an -vcodec h261 $file + +# h261 decoding +do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst +fi + +################################### if [ -n "$do_h263" ] ; then # h263 encoding file=${outfile}h263.avi |