mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 21:20:41 +00:00
pcm: Print number of bits in the error message of unsupported DVD PCM formats.
This commit is contained in:
parent
be5ac961e0
commit
f36ce75e35
@ -438,7 +438,9 @@ static int pcm_decode_frame(AVCodecContext *avctx,
|
||||
}
|
||||
break;
|
||||
default:
|
||||
av_log(avctx, AV_LOG_ERROR, "PCM DVD unsupported sample depth\n");
|
||||
av_log(avctx, AV_LOG_ERROR,
|
||||
"PCM DVD unsupported sample depth %i\n",
|
||||
avctx->bits_per_coded_sample);
|
||||
return -1;
|
||||
}
|
||||
samples = (short *) dst_int32_t;
|
||||
|
Loading…
Reference in New Issue
Block a user