forked from FFmpeg/FFmpeg
avcodec/decode: use the correct function name
Fixes compilation erros. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
dd7bdb40c4
commit
74611cdb5c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue