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>
pull/389/head
Andreas Rheinhardt 2 years ago
parent 7f825d3335
commit 430dcd52b6
  1. 4
      libavcodec/libopencore-amr.c

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

Loading…
Cancel
Save