mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/mvdec: Don't signal success on parse_audio_var() error
Propagate the error it returned instead. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
90da43557f
commit
229e949c8e
|
@ -387,7 +387,7 @@ static int mv_read_header(AVFormatContext *avctx)
|
||||||
if (!ast)
|
if (!ast)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
ast->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
ast->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||||
if ((read_table(avctx, ast, parse_audio_var)) < 0)
|
if ((ret = read_table(avctx, ast, parse_audio_var)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
if (mv->acompression == 100 &&
|
if (mv->acompression == 100 &&
|
||||||
mv->aformat == AUDIO_FORMAT_SIGNED &&
|
mv->aformat == AUDIO_FORMAT_SIGNED &&
|
||||||
|
|
Loading…
Reference in New Issue