lavc: use correct type for printf() argument

This was passing uint32_t for %d.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/132/merge
wm4 10 years ago committed by Michael Niedermayer
parent 2b5f34f788
commit 95f524aff5
  1. 2
      libavcodec/utils.c

@ -2600,7 +2600,7 @@ int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
}
av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
discard_padding, frame->nb_samples);
(int)discard_padding, frame->nb_samples);
frame->nb_samples -= discard_padding;
}
}

Loading…
Cancel
Save