avformat/amr: Return error upon error

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
(cherry picked from commit abc7d1c697e0dbe463ca6632e45142ae72d139a9)
This commit is contained in:
Andreas Rheinhardt 2022-01-09 15:50:57 +01:00
parent e53ab575da
commit 0acca1791e

View File

@ -91,7 +91,7 @@ static int amr_read_header(AVFormatContext *s)
read = avio_read(pb, header, sizeof(header));
if (read < 0)
return ret;
return read;
st = avformat_new_stream(s, NULL);
if (!st)