diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2016-01-20 19:40:31 +0100 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2016-01-20 19:40:31 +0100 |
| commit | f98176f38a0abceecccc4b467502a13fa17df12c (patch) | |
| tree | e29e1f5625e52d4f41062d094293f36a79dfc51c /Source/Core | |
| parent | be1a9e423193ea686273555cd21afd4c34a554a5 (diff) | |
| parent | 59f72d35719bc9f3576d29f2a22343611fa455e9 (diff) | |
Merge pull request #3528 from Shugyousha/codedframedeprecated
AVIDump: coded_frame is deprecated
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/VideoCommon/AVIDump.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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); |
