Permalink
Browse files
FFmpeg: Fix build with newer lavc (fixes #966)
- Loading branch information...
Showing
with
4 additions
and
0 deletions.
-
+4
−0
src/feature/ffmpeg/ffmpeg-encoder.c
|
|
@@ -229,7 +229,11 @@ bool FFmpegEncoderOpen(struct FFmpegEncoder* encoder, const char* outfile) { |
|
|
AVDictionary* opts = 0;
|
|
|
av_dict_set(&opts, "strict", "-2", 0);
|
|
|
if (encoder->context->oformat->flags & AVFMT_GLOBALHEADER) {
|
|
|
+#ifdef AV_CODEC_FLAG_GLOBAL_HEADER
|
|
|
+ encoder->audio->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
|
|
|
+#else
|
|
|
encoder->audio->flags |= CODEC_FLAG_GLOBAL_HEADER;
|
|
|
+#endif
|
|
|
}
|
|
|
avcodec_open2(encoder->audio, acodec, &opts);
|
|
|
av_dict_free(&opts);
|
|
|
|
0 comments on commit
6dd18fd