avcodec/decode: use the correct function name

Fixes compilation erros.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2023-07-14 13:59:40 -03:00
parent dd7bdb40c4
commit 74611cdb5c
1 changed files with 1 additions and 1 deletions

View File

@ -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;