mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
oggdec: print error when headers couldnt be parses successfully
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
46a35959d8
commit
cc4deafed1
@ -601,8 +601,10 @@ static int ogg_read_header(AVFormatContext *s)
|
||||
av_dlog(s, "found headers\n");
|
||||
|
||||
for (i = 0; i < ogg->nstreams; i++)
|
||||
if (ogg->streams[i].header < 0)
|
||||
if (ogg->streams[i].header < 0) {
|
||||
av_log(s, AV_LOG_ERROR, "Header parsing failed for stream %d\n", i);
|
||||
ogg->streams[i].codec = NULL;
|
||||
}
|
||||
|
||||
//linear granulepos seek from end
|
||||
ogg_get_length (s);
|
||||
|
Loading…
Reference in New Issue
Block a user