diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-11-25 01:15:47 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-25 01:19:33 +0100 |
commit | e6305f7631317d358d64cc4cb60dea048efaec2e (patch) | |
tree | 170da93460d8eac2b8a2fa79dc0ad19cc4322040 /libavformat/mov.c | |
parent | e903cb419473b76b0825dd0196bdb231770de6d8 (diff) | |
download | ffmpeg-e6305f7631317d358d64cc4cb60dea048efaec2e.tar.gz |
mov: set flags to indicate that byte wise seeking is not supported.
Fixes Ticket1831
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 1 |
1 files changed, 1 insertions, 0 deletions
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, }; |