Browse Source

lavc/alsdec: use get_bitsz() to simplify reading of the mantissa

Signed-off-by: James Almer <jamrial@gmail.com>
tags/n3.2
Thilo Borgmann James Almer 9 years ago
parent
commit
4d48add89b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/alsdec.c

+ 1
- 1
libavcodec/alsdec.c View File

@@ -1527,7 +1527,7 @@ static int read_diff_float_data(ALSDecContext *ctx, unsigned int ra_frame) {
if (!get_bits1(gb)) { //uncompressed
for (i = 0; i < frame_length; ++i) {
if (ctx->raw_samples[c][i] != 0) {
raw_mantissa[c][i] = nbits[i] ? get_bits(gb, nbits[i]) : 0;
raw_mantissa[c][i] = get_bitsz(gb, nbits[i]);
}
}
} else { //compressed


Loading…
Cancel
Save