mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-11 17:30:00 +01:00
avcodec/decode: use the correct function name
Fixes compilation erros. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user