You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-30 22:24:04 +02:00
roqaudioenc: return AVERROR codes instead of -1
This commit is contained in:
@ -57,11 +57,11 @@ static av_cold int roq_dpcm_encode_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
if (avctx->channels > 2) {
|
if (avctx->channels > 2) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Audio must be mono or stereo\n");
|
av_log(avctx, AV_LOG_ERROR, "Audio must be mono or stereo\n");
|
||||||
return -1;
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
if (avctx->sample_rate != 22050) {
|
if (avctx->sample_rate != 22050) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Audio must be 22050 Hz\n");
|
av_log(avctx, AV_LOG_ERROR, "Audio must be 22050 Hz\n");
|
||||||
return -1;
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
avctx->frame_size = ROQ_FRAME_SIZE;
|
avctx->frame_size = ROQ_FRAME_SIZE;
|
||||||
|
Reference in New Issue
Block a user