mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
Originally committed as revision 1493 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
committed by
Fabrice Bellard
parent
4b8b2edb62
commit
8aa3ee32c2
+3
-5
@@ -53,8 +53,6 @@ static int aiw_init(VideoData *s);
|
||||
static int aiw_read_picture(VideoData *s, uint8_t *data);
|
||||
static int aiw_close(VideoData *s);
|
||||
|
||||
const char *v4l_device = "/dev/video";
|
||||
|
||||
static int grab_read_header(AVFormatContext *s1, AVFormatParameters *ap)
|
||||
{
|
||||
VideoData *s = s1->priv_data;
|
||||
@@ -80,9 +78,9 @@ static int grab_read_header(AVFormatContext *s1, AVFormatParameters *ap)
|
||||
s->height = height;
|
||||
s->frame_rate = frame_rate;
|
||||
|
||||
video_fd = open(v4l_device, O_RDWR);
|
||||
video_fd = open(video_device, O_RDWR);
|
||||
if (video_fd < 0) {
|
||||
perror(v4l_device);
|
||||
perror(video_device);
|
||||
goto fail;
|
||||
}
|
||||
|
||||
@@ -339,7 +337,7 @@ static int grab_read_close(AVFormatContext *s1)
|
||||
}
|
||||
|
||||
static AVInputFormat video_grab_device_format = {
|
||||
"video_grab_device",
|
||||
"video4linux",
|
||||
"video grab",
|
||||
sizeof(VideoData),
|
||||
NULL,
|
||||
|
||||
Reference in New Issue
Block a user