mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Merge commit '51eb213d00154b8e7856c7667ea62db8b0f663d4'
* commit '51eb213d00154b8e7856c7667ea62db8b0f663d4': libavformat: use avpriv_open() Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
756f865e3b
@ -20,6 +20,7 @@
|
||||
*/
|
||||
|
||||
#include "libavutil/avstring.h"
|
||||
#include "libavutil/internal.h"
|
||||
#include "libavutil/opt.h"
|
||||
#include "avformat.h"
|
||||
#include <fcntl.h>
|
||||
@ -150,7 +151,7 @@ static int file_open(URLContext *h, const char *filename, int flags)
|
||||
#ifdef O_BINARY
|
||||
access |= O_BINARY;
|
||||
#endif
|
||||
fd = open(filename, access, 0666);
|
||||
fd = avpriv_open(filename, access, 0666);
|
||||
if (fd == -1)
|
||||
return AVERROR(errno);
|
||||
c->fd = fd;
|
||||
|
Loading…
Reference in New Issue
Block a user