1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-21 11:44:12 +02:00

roqaudioenc: return AVERROR codes instead of -1

This commit is contained in:
Justin Ruggles 2012-02-22 18:33:39 -05:00
parent 3fa9a999c1
commit f7a2e12f2a

View File

@ -57,11 +57,11 @@ static av_cold int roq_dpcm_encode_init(AVCodecContext *avctx)
if (avctx->channels > 2) {
av_log(avctx, AV_LOG_ERROR, "Audio must be mono or stereo\n");
return -1;
return AVERROR(EINVAL);
}
if (avctx->sample_rate != 22050) {
av_log(avctx, AV_LOG_ERROR, "Audio must be 22050 Hz\n");
return -1;
return AVERROR(EINVAL);
}
avctx->frame_size = ROQ_FRAME_SIZE;