mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-29 19:02:21 +00:00
dpcm: use AV_LOG_ERROR for error message.
This commit is contained in:
parent
461797f6aa
commit
8d88920578
@ -118,7 +118,7 @@ static av_cold int dpcm_decode_init(AVCodecContext *avctx)
|
||||
int i;
|
||||
|
||||
if (avctx->channels < 1 || avctx->channels > 2) {
|
||||
av_log(avctx, AV_LOG_INFO, "invalid number of channels\n");
|
||||
av_log(avctx, AV_LOG_ERROR, "invalid number of channels\n");
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user