mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
don't compile some mpeg4 encoder code when encoders are disabled
Originally committed as revision 9571 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5b154bd5cd
commit
196b8b4ecc
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user