diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-15 18:01:32 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-09-15 18:02:43 +0200 |
commit | 7404f3bdb90e6a5dcb59bc0a091e2c5c038e557d (patch) | |
tree | 08d1d4010e20cd696e358bf03f9e2565f3256e0c /libavcodec/pcm-bluray.c | |
parent | 28e023377cfe42c5406441eeff32842c1bb1f09f (diff) | |
download | ffmpeg-7404f3bdb90e6a5dcb59bc0a091e2c5c038e557d.tar.gz |
lavc: Switch bitrate to 64bit unless compatibility with avconv was requested.
Diffstat (limited to 'libavcodec/pcm-bluray.c')
-rw-r--r-- | libavcodec/pcm-bluray.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/pcm-bluray.c b/libavcodec/pcm-bluray.c index e7f9ee44a1..22c1c08bcf 100644 --- a/libavcodec/pcm-bluray.c +++ b/libavcodec/pcm-bluray.c @@ -117,9 +117,9 @@ static int pcm_bluray_parse_header(AVCodecContext *avctx, if (avctx->debug & FF_DEBUG_PICT_INFO) ff_dlog(avctx, - "pcm_bluray_parse_header: %d channels, %d bits per sample, %d Hz, %d bit/s\n", + "pcm_bluray_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); return 0; } |