Commit 71ca855c authored by Paul B Mahol's avatar Paul B Mahol

avcodec/wmalosslessdec: remove warning message as bug is fixed

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent c279c44a
...@@ -205,7 +205,6 @@ static av_cold int decode_init(AVCodecContext *avctx) ...@@ -205,7 +205,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
if (s->bits_per_sample == 16) if (s->bits_per_sample == 16)
avctx->sample_fmt = AV_SAMPLE_FMT_S16P; avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
else if (s->bits_per_sample == 24) { 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->sample_fmt = AV_SAMPLE_FMT_S32P;
avctx->bits_per_raw_sample = 24; avctx->bits_per_raw_sample = 24;
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment