From e6305f7631317d358d64cc4cb60dea048efaec2e Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 25 Nov 2012 01:15:47 +0100 Subject: [PATCH] mov: set flags to indicate that byte wise seeking is not supported. Fixes Ticket1831 Signed-off-by: Michael Niedermayer --- libavformat/mov.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index cff9c923bf..1a8a5a7182 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -3410,4 +3410,5 @@ AVInputFormat ff_mov_demuxer = { .read_close = mov_read_close, .read_seek = mov_read_seek, .priv_class = &class, + .flags = AVFMT_NO_BYTE_SEEK, };