You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/flacenc: Replace "return -1" by named constant
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -268,7 +268,7 @@ static av_cold int flac_encode_init(AVCodecContext *avctx)
|
||||
|
||||
/* find samplerate in table */
|
||||
if (freq < 1)
|
||||
return -1;
|
||||
return AVERROR(EINVAL);
|
||||
for (i = 4; i < 12; i++) {
|
||||
if (freq == ff_flac_sample_rate_table[i]) {
|
||||
s->samplerate = ff_flac_sample_rate_table[i];
|
||||
|
Reference in New Issue
Block a user