avcodec/libopencore-amr: Use frame_number instead of frame_num

Forgotten in 6b6f7db819.

Reviewed-by: Marton Balint <cus@passwd.hu>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2023-03-12 18:50:57 +01:00
parent 7f825d3335
commit 430dcd52b6
1 changed files with 2 additions and 2 deletions

View File

@ -106,8 +106,8 @@ static int amr_nb_decode_frame(AVCodecContext *avctx, AVFrame *frame,
enum Mode dec_mode;
int packet_size, ret;
ff_dlog(avctx, "amr_decode_frame buf=%p buf_size=%d frame_count=%d!!\n",
buf, buf_size, avctx->frame_number);
ff_dlog(avctx, "amr_decode_frame buf=%p buf_size=%d frame_count=%"PRId64"!!\n",
buf, buf_size, avctx->frame_num);
/* get output buffer */
frame->nb_samples = 160;