Commit 196b8b4e authored by Aurelien Jacobs's avatar Aurelien Jacobs

don't compile some mpeg4 encoder code when encoders are disabled

Originally committed as revision 9571 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5b154bd5
......@@ -2461,6 +2461,8 @@ void mpeg4_encode_picture_header(MpegEncContext * s, int picture_number)
int time_incr;
int time_div, time_mod;
if (!ENABLE_MPEG4_ENCODER) return;
if(s->pict_type==I_TYPE){
if(!(s->flags&CODEC_FLAG_GLOBAL_HEADER)){
if(s->strict_std_compliance < FF_COMPLIANCE_VERY_STRICT) //HACK, the reference sw is buggy
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment