You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02: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:
@@ -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));
|
||||
|
Reference in New Issue
Block a user