This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avio: Don't set the seekable flag if no seek function is provided
Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n2.1
Hendrik Schreiber
Martin Storsjö
12 years ago
parent
1297f7b87f
commit
b512360184
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/aviobuf.c
+ 1
- 1
libavformat/aviobuf.c
View File
@@ -90,7 +90,7 @@ int ffio_init_context(AVIOContext *s,
s->must_flush = 0;
s->eof_reached = 0;
s->error = 0;
s->seekable = AVIO_SEEKABLE_NORMAL;
s->seekable =
seek ?
AVIO_SEEKABLE_NORMAL
: 0
;
s->max_packet_size = 0;
s->update_checksum = NULL;
Write
Preview
Loading…
Cancel
Save