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
Fix url_fopen() flag values.
Reported by: Luca Abeni Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.8
Michael Niedermayer
15 years ago
parent
90bcbc791f
commit
183401b924
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
@@ -374,7 +374,7 @@ void put_nbyte(AVIOContext *s, int b, int count)
int url_fopen(AVIOContext **s, const char *filename, int flags)
{
return avio_open(s, filename, flags);
return avio_open(s, filename, flags
+1
);
}
int url_fclose(AVIOContext *s)
{
Write
Preview
Loading…
Cancel
Save