Browse Source

wmalossless: Warn when decoding 24 bit depth

See ticket #4134
tags/n3.0
Vittorio Giovara Michael Niedermayer 9 years ago
parent
commit
65b96aba28
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavcodec/wmalosslessdec.c

+ 1
- 0
libavcodec/wmalosslessdec.c View File

@@ -201,6 +201,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
if (s->bits_per_sample == 16)
avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
else if (s->bits_per_sample == 24) {
av_log(avctx, AV_LOG_WARNING, "Decoding audio at 24 bit-depth\n");
avctx->sample_fmt = AV_SAMPLE_FMT_S32P;
avctx->bits_per_raw_sample = 24;
} else {


Loading…
Cancel
Save