Browse Source

vocdec: Take channel count into account when calculating bit rate.

Fixes trac issue #343.

Carl Eugen Hoyos actually made a patch first, but I missed it because
trac does not send notification emails when an attachment is added.

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
tags/n0.9
Reimar Döffinger 13 years ago
parent
commit
056c13fd17
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/vocdec.c

+ 1
- 1
libavformat/vocdec.c View File

@@ -142,7 +142,7 @@ voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size)
}
}

dec->bit_rate = dec->sample_rate * dec->bits_per_coded_sample;
dec->bit_rate = dec->sample_rate * dec->channels * dec->bits_per_coded_sample;

if (max_size <= 0)
max_size = 2048;


Loading…
Cancel
Save