diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-08 20:15:42 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-08 20:15:42 +0000 |
commit | 9cd81798187567c1495c595443923951c0c06926 (patch) | |
tree | ab1bed1b8a627f75e4aa82e41039293a2c4f51a2 /libavcodec/h263.c | |
parent | c998bdd9a03d3efa42bfba447579330d51d033fa (diff) | |
download | ffmpeg-9cd81798187567c1495c595443923951c0c06926.tar.gz |
#defines for strict_std_compliance and split between inofficial extensions and non standarized things
Originally committed as revision 4205 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r-- | libavcodec/h263.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c index 80a283bb56..0077d83b18 100644 --- a/libavcodec/h263.c +++ b/libavcodec/h263.c @@ -2408,9 +2408,9 @@ void mpeg4_encode_picture_header(MpegEncContext * s, int picture_number) 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)) |