mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-29 10:52:20 +00:00
avcodec/options: Silence deprecated warning about coded_frame
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
94c0df79c7
commit
a368920eef
@ -213,7 +213,11 @@ int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
|
|||||||
dest->slice_offset = NULL;
|
dest->slice_offset = NULL;
|
||||||
dest->hwaccel = NULL;
|
dest->hwaccel = NULL;
|
||||||
dest->internal = NULL;
|
dest->internal = NULL;
|
||||||
|
#if FF_API_CODED_FRAME
|
||||||
|
FF_DISABLE_DEPRECATION_WARNINGS
|
||||||
dest->coded_frame = NULL;
|
dest->coded_frame = NULL;
|
||||||
|
FF_ENABLE_DEPRECATION_WARNINGS
|
||||||
|
#endif
|
||||||
|
|
||||||
/* reallocate values that should be allocated separately */
|
/* reallocate values that should be allocated separately */
|
||||||
dest->extradata = NULL;
|
dest->extradata = NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user