ffmpeg | branch: master | Michael Niedermayer <mich...@niedermayer.cc> | Tue Apr 7 16:55:41 2020 +0200| [054ce5f786f0bff2491bda5497850d2390621176] | committer: Michael Niedermayer
avformat/ilbc: Add missing #if for muxer Fixes: building without muxers Fixes: 21594 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <mich...@niedermayer.cc> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=054ce5f786f0bff2491bda5497850d2390621176 --- libavformat/ilbc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/ilbc.c b/libavformat/ilbc.c index c778f5a5af..188c0f091a 100644 --- a/libavformat/ilbc.c +++ b/libavformat/ilbc.c @@ -121,6 +121,7 @@ AVInputFormat ff_ilbc_demuxer = { .flags = AVFMT_GENERIC_INDEX, }; +#if CONFIG_ILBC_MUXER AVOutputFormat ff_ilbc_muxer = { .name = "ilbc", .long_name = NULL_IF_CONFIG_SMALL("iLBC storage"), @@ -131,3 +132,4 @@ AVOutputFormat ff_ilbc_muxer = { .write_packet = ff_raw_write_packet, .flags = AVFMT_NOTIMESTAMPS, }; +#endif _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".