summaryrefslogtreecommitdiff
path: root/ffmpeg/libavdevice/bktr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ffmpeg/libavdevice/bktr.c')
-rw-r--r--ffmpeg/libavdevice/bktr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ffmpeg/libavdevice/bktr.c b/ffmpeg/libavdevice/bktr.c
index b0dbe60..4e25aa6 100644
--- a/ffmpeg/libavdevice/bktr.c
+++ b/ffmpeg/libavdevice/bktr.c
@@ -25,6 +25,7 @@
*/
#include "libavformat/internal.h"
+#include "libavutil/internal.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"
#include "libavutil/parseutils.h"
@@ -135,11 +136,11 @@ static av_cold int bktr_init(const char *video_device, int width, int height,
act.sa_handler = catchsignal;
sigaction(SIGUSR1, &act, &old);
- *tuner_fd = open("/dev/tuner0", O_RDONLY);
+ *tuner_fd = avpriv_open("/dev/tuner0", O_RDONLY);
if (*tuner_fd < 0)
av_log(NULL, AV_LOG_ERROR, "Warning. Tuner not opened, continuing: %s\n", strerror(errno));
- *video_fd = open(video_device, O_RDONLY);
+ *video_fd = avpriv_open(video_device, O_RDONLY);
if (*video_fd < 0) {
av_log(NULL, AV_LOG_ERROR, "%s: %s\n", video_device, strerror(errno));
return -1;