diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-07 22:45:34 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-07 22:45:34 +0100 |
commit | 72c984432ecc2f906214ad2e53293bd301dc12ac (patch) | |
tree | 2d6f2d733b55bafa5153645e12ecb85b7ce03fbf /libavformat/matroskadec.c | |
parent | 6551acab6877addae815decd02aeca33ba4990c8 (diff) | |
download | ffmpeg-72c984432ecc2f906214ad2e53293bd301dc12ac.tar.gz |
avformat/matroskadec: request a sample with recursive seek heads
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/matroskadec.c')
-rw-r--r-- | libavformat/matroskadec.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index e9ba1e967e..9c476c12b2 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -1441,6 +1441,9 @@ static void matroska_execute_seekhead(MatroskaDemuxContext *matroska) break; } } + if (nb_elem != seekhead_list->nb_elem) { + avpriv_request_sample(matroska->ctx, "recursive SeekHead elements"); + } } static void matroska_add_index_entries(MatroskaDemuxContext *matroska) |