summaryrefslogtreecommitdiff
path: root/tests/regression.sh
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-10-28 10:24:02 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-10-28 10:24:02 +0000
commit61b262a90ae9a337875cba826bb89a35ab92f3d0 (patch)
treed9ec1220249c480dd83667ef47c964848fae5c97 /tests/regression.sh
parent1c3990dbba6a1e594c8a273e85c8460d90d29643 (diff)
h.261 regression test
Originally committed as revision 3644 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/regression.sh')
-rwxr-xr-xtests/regression.sh11
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