2 * Linux video grab interface
3 * Copyright (c) 2000,2001 Fabrice Bellard.
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include "libavformat/avformat.h"
24 #include "libavcodec/dsputil.h"
27 #include <sys/ioctl.h>
30 #define _LINUX_TIME_H 1
31 #include <linux/videodev.h>
36 int frame_format
; /* see VIDEO_PALETTE_xxx */
43 struct video_capability video_cap
;
44 struct video_audio audio_saved
;
46 struct video_mbuf gb_buffers
;
47 struct video_mmap gb_buf
;
54 enum PixelFormat pix_fmt
;
55 } video_formats
[] = {
56 {.palette
= VIDEO_PALETTE_YUV420P
, .depth
= 12, .pix_fmt
= PIX_FMT_YUV420P
},
57 {.palette
= VIDEO_PALETTE_YUV422
, .depth
= 16, .pix_fmt
= PIX_FMT_YUYV422
},
58 {.palette
= VIDEO_PALETTE_UYVY
, .depth
= 16, .pix_fmt
= PIX_FMT_UYVY422
},
59 {.palette
= VIDEO_PALETTE_YUYV
, .depth
= 16, .pix_fmt
= PIX_FMT_YUYV422
},
60 /* NOTE: v4l uses BGR24, not RGB24 */
61 {.palette
= VIDEO_PALETTE_RGB24
, .depth
= 24, .pix_fmt
= PIX_FMT_BGR24
},
62 {.palette
= VIDEO_PALETTE_RGB565
, .depth
= 16, .pix_fmt
= PIX_FMT_BGR565
},
63 {.palette
= VIDEO_PALETTE_GREY
, .depth
= 8, .pix_fmt
= PIX_FMT_GRAY8
},
67 static int grab_read_header(AVFormatContext
*s1
, AVFormatParameters
*ap
)
69 VideoData
*s
= s1
->priv_data
;
72 int video_fd
, frame_size
;
73 int ret
, frame_rate
, frame_rate_base
;
74 int desired_palette
, desired_depth
;
75 struct video_tuner tuner
;
76 struct video_audio audio
;
77 struct video_picture pict
;
79 int vformat_num
= sizeof(video_formats
) / sizeof(video_formats
[0]);
81 if (ap
->width
<= 0 || ap
->height
<= 0 || ap
->time_base
.den
<= 0) {
82 av_log(s1
, AV_LOG_ERROR
, "Bad capture size (%dx%d) or wrong time base (%d)\n",
83 ap
->width
, ap
->height
, ap
->time_base
.den
);
90 frame_rate
= ap
->time_base
.den
;
91 frame_rate_base
= ap
->time_base
.num
;
93 if((unsigned)width
> 32767 || (unsigned)height
> 32767) {
94 av_log(s1
, AV_LOG_ERROR
, "Capture size is out of range: %dx%d\n",
100 st
= av_new_stream(s1
, 0);
102 return AVERROR(ENOMEM
);
103 av_set_pts_info(st
, 64, 1, 1000000); /* 64 bits pts in us */
107 s
->frame_rate
= frame_rate
;
108 s
->frame_rate_base
= frame_rate_base
;
110 video_fd
= open(s1
->filename
, O_RDWR
);
112 av_log(s1
, AV_LOG_ERROR
, "%s: %s\n", s1
->filename
, strerror(errno
));
116 if (ioctl(video_fd
,VIDIOCGCAP
, &s
->video_cap
) < 0) {
117 av_log(s1
, AV_LOG_ERROR
, "VIDIOCGCAP: %s\n", strerror(errno
));
121 if (!(s
->video_cap
.type
& VID_TYPE_CAPTURE
)) {
122 av_log(s1
, AV_LOG_ERROR
, "Fatal: grab device does not handle capture\n");
126 desired_palette
= -1;
128 for (j
= 0; j
< vformat_num
; j
++) {
129 if (ap
->pix_fmt
== video_formats
[j
].pix_fmt
) {
130 desired_palette
= video_formats
[j
].palette
;
131 desired_depth
= video_formats
[j
].depth
;
136 /* set tv standard */
137 if (ap
->standard
&& !ioctl(video_fd
, VIDIOCGTUNER
, &tuner
)) {
138 if (!strcasecmp(ap
->standard
, "pal"))
139 tuner
.mode
= VIDEO_MODE_PAL
;
140 else if (!strcasecmp(ap
->standard
, "secam"))
141 tuner
.mode
= VIDEO_MODE_SECAM
;
143 tuner
.mode
= VIDEO_MODE_NTSC
;
144 ioctl(video_fd
, VIDIOCSTUNER
, &tuner
);
149 ioctl(video_fd
, VIDIOCGAUDIO
, &audio
);
150 memcpy(&s
->audio_saved
, &audio
, sizeof(audio
));
151 audio
.flags
&= ~VIDEO_AUDIO_MUTE
;
152 ioctl(video_fd
, VIDIOCSAUDIO
, &audio
);
154 ioctl(video_fd
, VIDIOCGPICT
, &pict
);
156 printf("v4l: colour=%d hue=%d brightness=%d constrast=%d whiteness=%d\n",
163 /* try to choose a suitable video format */
164 pict
.palette
= desired_palette
;
165 pict
.depth
= desired_depth
;
166 if (desired_palette
== -1 || (ret
= ioctl(video_fd
, VIDIOCSPICT
, &pict
)) < 0) {
167 for (j
= 0; j
< vformat_num
; j
++) {
168 pict
.palette
= video_formats
[j
].palette
;
169 pict
.depth
= video_formats
[j
].depth
;
170 if (-1 != ioctl(video_fd
, VIDIOCSPICT
, &pict
))
173 if (j
>= vformat_num
)
177 ret
= ioctl(video_fd
,VIDIOCGMBUF
,&s
->gb_buffers
);
179 /* try to use read based access */
180 struct video_window win
;
190 ioctl(video_fd
, VIDIOCSWIN
, &win
);
192 s
->frame_format
= pict
.palette
;
195 ioctl(video_fd
, VIDIOCCAPTURE
, &val
);
197 s
->time_frame
= av_gettime() * s
->frame_rate
/ s
->frame_rate_base
;
200 s
->video_buf
= mmap(0,s
->gb_buffers
.size
,PROT_READ
|PROT_WRITE
,MAP_SHARED
,video_fd
,0);
201 if ((unsigned char*)-1 == s
->video_buf
) {
202 s
->video_buf
= mmap(0,s
->gb_buffers
.size
,PROT_READ
|PROT_WRITE
,MAP_PRIVATE
,video_fd
,0);
203 if ((unsigned char*)-1 == s
->video_buf
) {
204 av_log(s1
, AV_LOG_ERROR
, "mmap: %s\n", strerror(errno
));
209 s
->time_frame
= av_gettime() * s
->frame_rate
/ s
->frame_rate_base
;
211 /* start to grab the first frame */
212 s
->gb_buf
.frame
= s
->gb_frame
% s
->gb_buffers
.frames
;
213 s
->gb_buf
.height
= height
;
214 s
->gb_buf
.width
= width
;
215 s
->gb_buf
.format
= pict
.palette
;
217 ret
= ioctl(video_fd
, VIDIOCMCAPTURE
, &s
->gb_buf
);
219 if (errno
!= EAGAIN
) {
221 av_log(s1
, AV_LOG_ERROR
, "Fatal: grab device does not support suitable format\n");
223 av_log(s1
, AV_LOG_ERROR
,"Fatal: grab device does not receive any video signal\n");
227 for (j
= 1; j
< s
->gb_buffers
.frames
; j
++) {
229 ioctl(video_fd
, VIDIOCMCAPTURE
, &s
->gb_buf
);
231 s
->frame_format
= s
->gb_buf
.format
;
235 for (j
= 0; j
< vformat_num
; j
++) {
236 if (s
->frame_format
== video_formats
[j
].palette
) {
237 frame_size
= width
* height
* video_formats
[j
].depth
/ 8;
238 st
->codec
->pix_fmt
= video_formats
[j
].pix_fmt
;
243 if (j
>= vformat_num
)
247 s
->frame_size
= frame_size
;
249 st
->codec
->codec_type
= CODEC_TYPE_VIDEO
;
250 st
->codec
->codec_id
= CODEC_ID_RAWVIDEO
;
251 st
->codec
->width
= width
;
252 st
->codec
->height
= height
;
253 st
->codec
->time_base
.den
= frame_rate
;
254 st
->codec
->time_base
.num
= frame_rate_base
;
255 st
->codec
->bit_rate
= frame_size
* 1/av_q2d(st
->codec
->time_base
) * 8;
265 static int v4l_mm_read_picture(VideoData
*s
, uint8_t *buf
)
269 while (ioctl(s
->fd
, VIDIOCSYNC
, &s
->gb_frame
) < 0 &&
270 (errno
== EAGAIN
|| errno
== EINTR
));
272 ptr
= s
->video_buf
+ s
->gb_buffers
.offsets
[s
->gb_frame
];
273 memcpy(buf
, ptr
, s
->frame_size
);
275 /* Setup to capture the next frame */
276 s
->gb_buf
.frame
= s
->gb_frame
;
277 if (ioctl(s
->fd
, VIDIOCMCAPTURE
, &s
->gb_buf
) < 0) {
279 av_log(NULL
, AV_LOG_ERROR
, "Cannot Sync\n");
281 av_log(NULL
, AV_LOG_ERROR
, "VIDIOCMCAPTURE: %s\n", strerror(errno
));
285 /* This is now the grabbing frame */
286 s
->gb_frame
= (s
->gb_frame
+ 1) % s
->gb_buffers
.frames
;
288 return s
->frame_size
;
291 static int grab_read_packet(AVFormatContext
*s1
, AVPacket
*pkt
)
293 VideoData
*s
= s1
->priv_data
;
294 int64_t curtime
, delay
;
297 /* Calculate the time of the next frame */
298 s
->time_frame
+= INT64_C(1000000);
300 /* wait based on the frame rate */
302 curtime
= av_gettime();
303 delay
= s
->time_frame
* s
->frame_rate_base
/ s
->frame_rate
- curtime
;
305 if (delay
< INT64_C(-1000000) * s
->frame_rate_base
/ s
->frame_rate
) {
306 /* printf("grabbing is %d frames late (dropping)\n", (int) -(delay / 16666)); */
307 s
->time_frame
+= INT64_C(1000000);
311 ts
.tv_sec
= delay
/ 1000000;
312 ts
.tv_nsec
= (delay
% 1000000) * 1000;
313 nanosleep(&ts
, NULL
);
316 if (av_new_packet(pkt
, s
->frame_size
) < 0)
323 return v4l_mm_read_picture(s
, pkt
->data
);
325 if (read(s
->fd
, pkt
->data
, pkt
->size
) != pkt
->size
)
327 return s
->frame_size
;
331 static int grab_read_close(AVFormatContext
*s1
)
333 VideoData
*s
= s1
->priv_data
;
336 munmap(s
->video_buf
, s
->gb_buffers
.size
);
338 /* mute audio. we must force it because the BTTV driver does not
339 return its state correctly */
340 s
->audio_saved
.flags
|= VIDEO_AUDIO_MUTE
;
341 ioctl(s
->fd
, VIDIOCSAUDIO
, &s
->audio_saved
);
347 AVInputFormat v4l_demuxer
= {
349 NULL_IF_CONFIG_SMALL("video grab"),
355 .flags
= AVFMT_NOFILE
,