From a368920eefbfe3e741108e3b52ff0be69e8bd8c0 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 6 Aug 2015 12:39:37 +0200 Subject: avcodec/options: Silence deprecated warning about coded_frame Signed-off-by: Michael Niedermayer --- libavcodec/options.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libavcodec') diff --git a/libavcodec/options.c b/libavcodec/options.c index 37f379245d..7154c9c4e7 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -213,7 +213,11 @@ int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src) dest->slice_offset = NULL; dest->hwaccel = NULL; dest->internal = NULL; +#if FF_API_CODED_FRAME +FF_DISABLE_DEPRECATION_WARNINGS dest->coded_frame = NULL; +FF_ENABLE_DEPRECATION_WARNINGS +#endif /* reallocate values that should be allocated separately */ dest->extradata = NULL; -- cgit v1.2.3