Mercurial > libavcodec.hg
diff h263.c @ 2658:d1609cfeb1d0 libavcodec
#defines for strict_std_compliance and split between inofficial extensions and non standarized things
| author | michael |
|---|---|
| date | Sun, 08 May 2005 20:15:42 +0000 |
| parents | c735e3e60ca7 |
| children | 06f0744ffc18 |
line wrap: on
line diff
--- a/h263.c Sun May 08 18:48:19 2005 +0000 +++ b/h263.c Sun May 08 20:15:42 2005 +0000 @@ -2408,9 +2408,9 @@ if(s->pict_type==I_TYPE){ if(!(s->flags&CODEC_FLAG_GLOBAL_HEADER)){ - if(s->strict_std_compliance < 2) //HACK, the reference sw is buggy + if(s->strict_std_compliance < FF_COMPLIANCE_VERY_STRICT) //HACK, the reference sw is buggy mpeg4_encode_visual_object_header(s); - if(s->strict_std_compliance < 2 || picture_number==0) //HACK, the reference sw is buggy + if(s->strict_std_compliance < FF_COMPLIANCE_VERY_STRICT || picture_number==0) //HACK, the reference sw is buggy mpeg4_encode_vol_header(s, 0, 0); } if(!(s->workaround_bugs & FF_BUG_MS))
