Commit ec32fcae authored by aurel's avatar aurel

matroskadec : propagate AVERROR to the caller

based on a patch by Jai Menon


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23619 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 574ec8ca
......@@ -1158,7 +1158,7 @@ static int matroska_read_header(AVFormatContext *s, AVFormatParameters *ap)
uint64_t max_start = 0;
Ebml ebml = { 0 };
AVStream *st;
int i, j;
int i, j, res;
matroska->ctx = s;
......@@ -1182,8 +1182,8 @@ static int matroska_read_header(AVFormatContext *s, AVFormatParameters *ap)
ebml_free(ebml_syntax, &ebml);
/* The next thing is a segment. */
if (ebml_parse(matroska, matroska_segments, matroska) < 0)
return -1;
if ((res = ebml_parse(matroska, matroska_segments, matroska)) < 0)
return res;
matroska_execute_seekhead(matroska);
if (!matroska->time_scale)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment