diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-05-26 17:23:36 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-05-26 17:23:36 +0000 |
commit | d3752b15d85500da18d5a38e46f8436f9b2ae591 (patch) | |
tree | 3e31501cd34d40ac3c6dacf4797c493ff3d2fac0 | |
parent | 220f2bd9c595c7934753694854d4a778358d5c4d (diff) | |
download | ffmpeg-d3752b15d85500da18d5a38e46f8436f9b2ae591.tar.gz |
Treat SIPP like xvid, fixed issue1966
Originally committed as revision 23336 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h263dec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index f5df5560c5..c80cfcfa2d 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -428,7 +428,9 @@ retry: if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){ if(s->stream_codec_tag == AV_RL32("XVID") || s->codec_tag == AV_RL32("XVID") || s->codec_tag == AV_RL32("XVIX") || - s->codec_tag == AV_RL32("RMP4")) + s->codec_tag == AV_RL32("RMP4") || + s->codec_tag == AV_RL32("SIPP") + ) s->xvid_build= 0; #if 0 if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==1 |