diff options
author | Tobias Rapp <t.rapp@noa-archive.com> | 2017-03-06 08:53:28 +0100 |
---|---|---|
committer | Tobias Rapp <t.rapp@noa-archive.com> | 2017-03-17 11:55:16 +0100 |
commit | 205b8fd078e50aa3f7f401646dbb73de1bb35a10 (patch) | |
tree | abbe5fa686d8d01a1c3bde998e712e5c26f6a561 /libavcodec/y41penc.c | |
parent | 8db301deadfcf113fb274881e65afcbe3e1bd645 (diff) | |
download | ffmpeg-205b8fd078e50aa3f7f401646dbb73de1bb35a10.tar.gz |
avcodec: estimate output bitrate for uncompressed video codecs
Allows to get a more realistic total bitrate (and estimated file size)
in avi_write_header. Previously a static default value of 200k was
assumed.
Adds an internal helper function for bitrate guessing.
Signed-off-by: Tobias Rapp <t.rapp@noa-archive.com>
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/y41penc.c')
-rw-r--r-- | libavcodec/y41penc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/y41penc.c b/libavcodec/y41penc.c index 94acc343fb..ca94a3c171 100644 --- a/libavcodec/y41penc.c +++ b/libavcodec/y41penc.c @@ -31,6 +31,7 @@ static av_cold int y41p_encode_init(AVCodecContext *avctx) } avctx->bits_per_coded_sample = 12; + avctx->bit_rate = ff_guess_coded_bitrate(avctx); return 0; } |