mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-19 05:49:09 +02:00
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)
|
||||
return AVERROR(ENOMEM);
|
||||
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;
|
||||
if (mv->acompression == 100 &&
|
||||
mv->aformat == AUDIO_FORMAT_SIGNED &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user