diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 044413a50a..46f339fafd 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -853,7 +853,9 @@ AVFrame *avcodec_alloc_frame(void) if (frame == NULL) return NULL; +FF_DISABLE_DEPRECATION_WARNINGS avcodec_get_frame_defaults(frame); +FF_ENABLE_DEPRECATION_WARNINGS return frame; }