[FFmpeg-cvslog] avcodec/decode: use the correct function name

James Almer git at videolan.org
Fri Jul 14 19:59:56 EEST 2023


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Fri Jul 14 13:59:40 2023 -0300| [74611cdb5ca02e96d40ace2f34cbf14ac88a0dcc] | committer: James Almer

avcodec/decode: use the correct function name

Fixes compilation erros.

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=74611cdb5ca02e96d40ace2f34cbf14ac88a0dcc
---

 libavcodec/decode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/decode.c b/libavcodec/decode.c
index 1523fddf70..68525e47a6 100644
--- a/libavcodec/decode.c
+++ b/libavcodec/decode.c
@@ -632,7 +632,7 @@ static int decode_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame)
         if (avctx->codec_type != AVMEDIA_TYPE_VIDEO)
             frame->flags |= AV_FRAME_FLAG_KEY;
 
-        ret = fill_missing_fields(avctx, frame);
+        ret = fill_frame_props(avctx, frame);
         if (ret < 0) {
             av_frame_unref(frame);
             return ret;



More information about the ffmpeg-cvslog mailing list