mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
oggdec: print a warning if the number of headers mismatch expectations.
This is based on: commit 7751e4693dd10ec98c20fbd9887233b575034272 Author: Luca Barbato <lu_zero@gentoo.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
cc4deafed1
commit
4c273eb64c
@ -600,10 +600,15 @@ static int ogg_read_header(AVFormatContext *s)
|
||||
} while (!ogg->headers);
|
||||
av_dlog(s, "found headers\n");
|
||||
|
||||
for (i = 0; i < ogg->nstreams; i++)
|
||||
for (i = 0; i < ogg->nstreams; i++) {
|
||||
struct ogg_stream *os = ogg->streams + i;
|
||||
|
||||
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;
|
||||
} else if (os->codec && os->nb_header < os->codec->nb_header) {
|
||||
av_log(s, AV_LOG_WARNING, "Number of headers (%d) mismatch for stream %d\n", os->nb_header, i);
|
||||
}
|
||||
}
|
||||
|
||||
//linear granulepos seek from end
|
||||
|
Loading…
x
Reference in New Issue
Block a user