[FFmpeg-cvslog] r23385 - in branches/0.6: . libavcodec/h263dec.c
siretart
subversion
Sat May 29 17:07:08 CEST 2010
Author: siretart
Date: Sat May 29 17:07:08 2010
New Revision: 23385
Log:
Treat SIPP like xvid, fixed issue1966
backport r23336 by michael
Modified:
branches/0.6/ (props changed)
branches/0.6/libavcodec/h263dec.c
Modified: branches/0.6/libavcodec/h263dec.c
==============================================================================
--- branches/0.6/libavcodec/h263dec.c Sat May 29 16:45:13 2010 (r23384)
+++ branches/0.6/libavcodec/h263dec.c Sat May 29 17:07:08 2010 (r23385)
@@ -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
More information about the ffmpeg-cvslog
mailing list