avcodec/opusdec: Return error upon error

The Opus decoder forgot to return an error when allocating an
SwrContext fails.

Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Reviewed-by: Lynne <dev@lynne.ee>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
(cherry picked from commit 794fb18369be7dae9f9844c83040bb06611ff890)
This commit is contained in:
Andreas Rheinhardt 2020-12-28 17:52:12 +01:00
parent 6d3a064251
commit 45d9887751

View File

@ -672,8 +672,10 @@ static av_cold int opus_decode_init(AVCodecContext *avctx)
s->fdsp = c->fdsp;
s->swr =swr_alloc();
if (!s->swr)
if (!s->swr) {
ret = AVERROR(ENOMEM);
goto fail;
}
layout = (s->output_channels == 1) ? AV_CH_LAYOUT_MONO : AV_CH_LAYOUT_STEREO;
av_opt_set_int(s->swr, "in_sample_fmt", avctx->sample_fmt, 0);