diff options
author | wm4 <wm4@nowhere> | 2015-04-20 20:52:16 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-04-20 20:52:16 +0200 |
commit | c6d046414b1d31046c39da6399130b39fe54813d (patch) | |
tree | 30c1d2b0ac5e13fa9954dae8db0e8d85fb7cc6b4 /audio/decode | |
parent | c5654e400587a8358e486da7da468a775dcd8cc2 (diff) |
player: change video-bitrate and audio-bitrate properties
Remove the old implementation for these properties. It was never very
good, often returned very innaccurate values or just 0, and was static
even if the source was variable bitrate. Replace it with the
implementation of "packet-video-bitrate". Mark the "packet-..."
properties as deprecated. (The effective difference is different
formatting, and returning the raw value in bits instead of kilobits.)
Also extend the documentation a little.
It appears at least some decoders (sipr?) need the
AVCodecContext.bit_rate field set, so this one is still passed through.
Diffstat (limited to 'audio/decode')
-rw-r--r-- | audio/decode/ad_lavc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/audio/decode/ad_lavc.c b/audio/decode/ad_lavc.c index f02f9213ab..5a2392e05a 100644 --- a/audio/decode/ad_lavc.c +++ b/audio/decode/ad_lavc.c @@ -144,9 +144,6 @@ static int init(struct dec_audio *da, const char *decoder) return 0; } - if (lavc_context->bit_rate != 0) - da->bitrate = lavc_context->bit_rate; - return 1; } |