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.
This commit is contained in:
Justin Ruggles 2011-08-10 09:39:43 -04:00
parent 29a20ac4a1
commit 6f1a5e8d6b

View File

@ -3131,8 +3131,6 @@ av_cold void dsputil_init(DSPContext* c, AVCodecContext *avctx)
} }
break; break;
default: default:
av_log(avctx, AV_LOG_DEBUG, "Unsupported bit depth: %d\n", avctx->bits_per_raw_sample);
case 8:
BIT_DEPTH_FUNCS(8, _16); BIT_DEPTH_FUNCS(8, _16);
break; break;
} }