diff options
author | Daniel Maas <dmaas@maasdigital.com> | 2006-03-06 08:54:33 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2006-03-06 08:54:33 +0000 |
commit | 0b297700b787a68323629e836b15852c3331b4a0 (patch) | |
tree | 19627c66fc489abb8b05b88766ff164811b33734 /tests/regression.sh | |
parent | 2ffb22d2ad014e7fa8ee4c24263eb03abb9e86e5 (diff) | |
download | ffmpeg-0b297700b787a68323629e836b15852c3331b4a0.tar.gz |
DVCPRO50 support.
Patch by Daniel Maas dmaas at maasdigital dot com
Originally committed as revision 5113 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/regression.sh')
-rwxr-xr-x | tests/regression.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/regression.sh b/tests/regression.sh index 52b791efc4..2df2d8044f 100755 --- a/tests/regression.sh +++ b/tests/regression.sh @@ -83,6 +83,7 @@ else do_snowll=y do_adpcm_yam=y do_dv=y + do_dv50=y fi @@ -498,6 +499,17 @@ do_ffmpeg $raw_dst -y -i $file -f rawvideo -s cif $raw_dst fi ################################### +if [ -n "$do_dv50" ] ; then +# dv50 encoding +file=${outfile}dv.dv +do_ffmpeg $file -dct int -y -f pgmyuv -i $raw_src -s pal -pix_fmt yuv422p -an $file + +# dv50 decoding +do_ffmpeg $raw_dst -y -i $file -f rawvideo -s cif -pix_fmt yuv420p $raw_dst +fi + + +################################### if [ -n "$do_svq1" ] ; then # svq1 encoding file=${outfile}svq1.mov |