comparison h263dec.c @ 11773:9c35a3dbea9b libavcodec

Treat SIPP like xvid, fixed issue1966
author michael
date Wed, 26 May 2010 17:23:36 +0000
parents 7dd2a45249a9
children c35d7bc64882
comparison
equal deleted inserted replaced
11772:4a178e0051d6 11773:9c35a3dbea9b
426 avctx->has_b_frames= !s->low_delay; 426 avctx->has_b_frames= !s->low_delay;
427 427
428 if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){ 428 if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){
429 if(s->stream_codec_tag == AV_RL32("XVID") || 429 if(s->stream_codec_tag == AV_RL32("XVID") ||
430 s->codec_tag == AV_RL32("XVID") || s->codec_tag == AV_RL32("XVIX") || 430 s->codec_tag == AV_RL32("XVID") || s->codec_tag == AV_RL32("XVIX") ||
431 s->codec_tag == AV_RL32("RMP4")) 431 s->codec_tag == AV_RL32("RMP4") ||
432 s->codec_tag == AV_RL32("SIPP")
433 )
432 s->xvid_build= 0; 434 s->xvid_build= 0;
433 #if 0 435 #if 0
434 if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==1 436 if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==1
435 && s->padding_bug_score > 0 && s->low_delay) // XVID with modified fourcc 437 && s->padding_bug_score > 0 && s->low_delay) // XVID with modified fourcc
436 s->xvid_build= 0; 438 s->xvid_build= 0;