From 59f72d35719bc9f3576d29f2a22343611fa455e9 Mon Sep 17 00:00:00 2001 From: Silvan Jegen Date: Mon, 18 Jan 2016 20:01:11 +0100 Subject: [PATCH] AVIDump: coded_frame is deprecated Setting this is not required anymore as of commit 40cf1bbacc622 of FFmpeg. For users of older versions of the libavcodec library we guard the change with an #if. --- Source/Core/VideoCommon/AVIDump.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/VideoCommon/AVIDump.cpp b/Source/Core/VideoCommon/AVIDump.cpp index 28adcc3476..e12a21ce6a 100644 --- a/Source/Core/VideoCommon/AVIDump.cpp +++ b/Source/Core/VideoCommon/AVIDump.cpp @@ -203,8 +203,10 @@ void AVIDump::AddFrame(const u8* data, int width, int height) pkt.dts = av_rescale_q(pkt.dts, s_stream->codec->time_base, s_stream->time_base); } +#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(56, 60, 100) if (s_stream->codec->coded_frame->key_frame) pkt.flags |= AV_PKT_FLAG_KEY; +#endif pkt.stream_index = s_stream->index; av_interleaved_write_frame(s_format_context, &pkt);