Commit 6f1a5e8d authored by Justin Ruggles's avatar Justin Ruggles

dsputil: remove debug message in dsputil_init().

AVCodecContext.bits_per_raw_sample is used for audio too, and values other
than 8, 9, and 10 are valid.
parent 29a20ac4
......@@ -3131,8 +3131,6 @@ av_cold void dsputil_init(DSPContext* c, AVCodecContext *avctx)
}
break;
default:
av_log(avctx, AV_LOG_DEBUG, "Unsupported bit depth: %d\n", avctx->bits_per_raw_sample);
case 8:
BIT_DEPTH_FUNCS(8, _16);
break;
}
......
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