From 7404f3bdb90e6a5dcb59bc0a091e2c5c038e557d Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 15 Sep 2015 18:01:32 +0200 Subject: lavc: Switch bitrate to 64bit unless compatibility with avconv was requested. --- libavcodec/pcm-dvd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/pcm-dvd.c') diff --git a/libavcodec/pcm-dvd.c b/libavcodec/pcm-dvd.c index 985a19bdb1..a78c05dbe2 100644 --- a/libavcodec/pcm-dvd.c +++ b/libavcodec/pcm-dvd.c @@ -140,9 +140,9 @@ static int pcm_dvd_parse_header(AVCodecContext *avctx, const uint8_t *header) if (avctx->debug & FF_DEBUG_PICT_INFO) ff_dlog(avctx, - "pcm_dvd_parse_header: %d channels, %d bits per sample, %d Hz, %d bit/s\n", + "pcm_dvd_parse_header: %d channels, %d bits per sample, %d Hz, %"PRId64" bit/s\n", avctx->channels, avctx->bits_per_coded_sample, - avctx->sample_rate, avctx->bit_rate); + avctx->sample_rate, (int64_t)avctx->bit_rate); s->last_header = header_int; -- cgit v1.2.3