mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 19:59:46 +00:00
avformat/wavenc: more specific error return for "Writing 16 bit peak for 8 bit audio"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d34d3304a8
commit
3bd0221bc1
@ -170,7 +170,7 @@ static av_cold int peak_init_writer(AVFormatContext *s)
|
||||
if (wav->peak_bps == 1 && wav->peak_format == PEAK_FORMAT_UINT16) {
|
||||
av_log(s, AV_LOG_ERROR,
|
||||
"Writing 16 bit peak for 8 bit audio does not make sense\n");
|
||||
return -1;
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
wav->peak_maxpos = av_mallocz(enc->channels * sizeof(*wav->peak_maxpos));
|
||||
|
Loading…
Reference in New Issue
Block a user