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:
Max Krasnyansky
2003-01-22 22:40:52 +00:00
committed by Fabrice Bellard
parent 4b8b2edb62
commit 8aa3ee32c2
7 changed files with 648 additions and 12 deletions
+3 -5
View File
@@ -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,