Commit dfbbbdc0 authored by Aurelien Jacobs's avatar Aurelien Jacobs

matroskadec: don't try to seek to negative timestamp

matroska timestamps are unsigned

Originally committed as revision 14956 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 653fb2f8
......@@ -1642,6 +1642,9 @@ static int matroska_read_seek(AVFormatContext *s, int stream_index,
AVStream *st = s->streams[stream_index];
int index;
if (timestamp < 0)
timestamp = 0;
index = av_index_search_timestamp(st, timestamp, flags);
if (index < 0)
return 0;
......
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