| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2009-01-19 15:46:40 +00:00
										 |  |  |  * Copyright (c) 2000,2001 Fabrice Bellard | 
					
						
							|  |  |  |  * Copyright (c) 2006 Luca Abeni | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-03-20 19:07:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-28 20:59:27 +02:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @file | 
					
						
							|  |  |  |  * Video4Linux2 grab interface | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Part of this file is based on the V4L2 video capture example | 
					
						
							|  |  |  |  * (http://v4l2spec.bytesex.org/v4l2spec/capture.c)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Thanks to Michael Niedermayer for providing the mapping between | 
					
						
							|  |  |  |  * V4L2_PIX_FMT_* and PIX_FMT_* | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-19 21:20:39 +00:00
										 |  |  | #undef __STRICT_ANSI__ //workaround due to broken kernel headers
 | 
					
						
							| 
									
										
										
										
											2008-03-20 19:07:24 +00:00
										 |  |  | #include "config.h"
 | 
					
						
							| 
									
										
										
										
											2011-11-29 19:28:15 +01:00
										 |  |  | #include "libavformat/internal.h"
 | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | #include <unistd.h>
 | 
					
						
							|  |  |  | #include <fcntl.h>
 | 
					
						
							|  |  |  | #include <sys/ioctl.h>
 | 
					
						
							|  |  |  | #include <sys/mman.h>
 | 
					
						
							|  |  |  | #include <sys/time.h>
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if HAVE_SYS_VIDEOIO_H
 | 
					
						
							| 
									
										
										
										
											2008-09-21 22:47:52 +00:00
										 |  |  | #include <sys/videoio.h>
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-12-15 20:21:54 +00:00
										 |  |  | #if HAVE_ASM_TYPES_H
 | 
					
						
							| 
									
										
										
										
											2006-05-30 13:04:18 +00:00
										 |  |  | #include <asm/types.h>
 | 
					
						
							| 
									
										
										
										
											2011-12-15 20:21:54 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-05-30 13:04:18 +00:00
										 |  |  | #include <linux/videodev2.h>
 | 
					
						
							| 
									
										
										
										
											2008-09-21 22:47:52 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | #include <time.h>
 | 
					
						
							| 
									
										
										
										
											2011-02-07 14:37:08 +01:00
										 |  |  | #include "libavutil/imgutils.h"
 | 
					
						
							| 
									
										
										
										
											2011-05-23 21:21:59 +02:00
										 |  |  | #include "libavutil/log.h"
 | 
					
						
							|  |  |  | #include "libavutil/opt.h"
 | 
					
						
							| 
									
										
										
										
											2011-05-26 19:11:25 +02:00
										 |  |  | #include "avdevice.h"
 | 
					
						
							| 
									
										
										
										
											2011-05-24 07:43:01 +02:00
										 |  |  | #include "libavutil/parseutils.h"
 | 
					
						
							| 
									
										
										
										
											2011-05-24 09:02:11 +02:00
										 |  |  | #include "libavutil/pixdesc.h"
 | 
					
						
							| 
									
										
										
										
											2011-11-02 20:17:25 +01:00
										 |  |  | #include "libavutil/avstring.h"
 | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  | #if CONFIG_LIBV4L2
 | 
					
						
							|  |  |  | #include <libv4l2.h>
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define v4l2_open   open
 | 
					
						
							|  |  |  | #define v4l2_close  close
 | 
					
						
							|  |  |  | #define v4l2_dup    dup
 | 
					
						
							|  |  |  | #define v4l2_ioctl  ioctl
 | 
					
						
							|  |  |  | #define v4l2_read   read
 | 
					
						
							|  |  |  | #define v4l2_mmap   mmap
 | 
					
						
							|  |  |  | #define v4l2_munmap munmap
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | static const int desired_video_buffers = 256; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum io_method { | 
					
						
							|  |  |  |     io_read, | 
					
						
							|  |  |  |     io_mmap, | 
					
						
							|  |  |  |     io_userptr | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct video_data { | 
					
						
							| 
									
										
										
										
											2011-05-23 21:21:59 +02:00
										 |  |  |     AVClass *class; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     int fd; | 
					
						
							|  |  |  |     int frame_format; /* V4L2_PIX_FMT_* */ | 
					
						
							|  |  |  |     enum io_method io_method; | 
					
						
							|  |  |  |     int width, height; | 
					
						
							|  |  |  |     int frame_size; | 
					
						
							|  |  |  |     int top_field_first; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int buffers; | 
					
						
							|  |  |  |     void **buf_start; | 
					
						
							|  |  |  |     unsigned int *buf_len; | 
					
						
							| 
									
										
										
										
											2011-05-23 21:21:59 +02:00
										 |  |  |     char *standard; | 
					
						
							| 
									
										
										
										
											2011-05-23 21:53:44 +02:00
										 |  |  |     int channel; | 
					
						
							| 
									
										
										
										
											2011-05-24 07:43:01 +02:00
										 |  |  |     char *video_size; /**< String describing video size, set by a private option. */ | 
					
						
							| 
									
										
										
										
											2011-05-24 09:02:11 +02:00
										 |  |  |     char *pixel_format; /**< Set by a private option. */ | 
					
						
							| 
									
										
										
										
											2011-05-24 21:16:47 +02:00
										 |  |  |     char *framerate;    /**< Set by a private option. */ | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  | struct buff_data { | 
					
						
							|  |  |  |     int index; | 
					
						
							|  |  |  |     int fd; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | struct fmt_map { | 
					
						
							|  |  |  |     enum PixelFormat ff_fmt; | 
					
						
							| 
									
										
										
										
											2009-12-14 10:33:24 +00:00
										 |  |  |     enum CodecID codec_id; | 
					
						
							| 
									
										
										
										
											2009-12-14 10:31:29 +00:00
										 |  |  |     uint32_t v4l2_fmt; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct fmt_map fmt_conversion_table[] = { | 
					
						
							| 
									
										
										
										
											2010-09-12 19:44:45 +00:00
										 |  |  |     //ff_fmt           codec_id           v4l2_fmt
 | 
					
						
							|  |  |  |     { PIX_FMT_YUV420P, CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUV420  }, | 
					
						
							|  |  |  |     { PIX_FMT_YUV422P, CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUV422P }, | 
					
						
							|  |  |  |     { PIX_FMT_YUYV422, CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUYV    }, | 
					
						
							|  |  |  |     { PIX_FMT_UYVY422, CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_UYVY    }, | 
					
						
							|  |  |  |     { PIX_FMT_YUV411P, CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUV411P }, | 
					
						
							|  |  |  |     { PIX_FMT_YUV410P, CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUV410  }, | 
					
						
							|  |  |  |     { PIX_FMT_RGB555,  CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_RGB555  }, | 
					
						
							|  |  |  |     { PIX_FMT_RGB565,  CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_RGB565  }, | 
					
						
							|  |  |  |     { PIX_FMT_BGR24,   CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_BGR24   }, | 
					
						
							|  |  |  |     { PIX_FMT_RGB24,   CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_RGB24   }, | 
					
						
							|  |  |  |     { PIX_FMT_BGRA,    CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_BGR32   }, | 
					
						
							|  |  |  |     { PIX_FMT_GRAY8,   CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_GREY    }, | 
					
						
							|  |  |  |     { PIX_FMT_NV12,    CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_NV12    }, | 
					
						
							|  |  |  |     { PIX_FMT_NONE,    CODEC_ID_MJPEG,    V4L2_PIX_FMT_MJPEG   }, | 
					
						
							|  |  |  |     { PIX_FMT_NONE,    CODEC_ID_MJPEG,    V4L2_PIX_FMT_JPEG    }, | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-14 17:01:32 +00:00
										 |  |  | static int device_open(AVFormatContext *ctx, uint32_t *capabilities) | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     struct v4l2_capability cap; | 
					
						
							|  |  |  |     int fd; | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  | #if CONFIG_LIBV4L2
 | 
					
						
							|  |  |  |     int fd_libv4l; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-01 08:24:24 +00:00
										 |  |  |     int res, err; | 
					
						
							| 
									
										
										
										
											2007-07-06 07:18:25 +00:00
										 |  |  |     int flags = O_RDWR; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-06 07:18:25 +00:00
										 |  |  |     if (ctx->flags & AVFMT_FLAG_NONBLOCK) { | 
					
						
							|  |  |  |         flags |= O_NONBLOCK; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |     fd = v4l2_open(ctx->filename, flags, 0); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     if (fd < 0) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         av_log(ctx, AV_LOG_ERROR, "Cannot open video device %s : %s\n", | 
					
						
							| 
									
										
										
										
											2007-02-14 17:01:32 +00:00
										 |  |  |                  ctx->filename, strerror(errno)); | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |         return AVERROR(errno); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  | #if CONFIG_LIBV4L2
 | 
					
						
							|  |  |  |     fd_libv4l = v4l2_fd_open(fd, 0); | 
					
						
							|  |  |  |     if (fd < 0) { | 
					
						
							|  |  |  |         err = AVERROR(errno); | 
					
						
							|  |  |  |         av_log(ctx, AV_LOG_ERROR, "Cannot open video device with libv4l neither %s : %s\n", | 
					
						
							|  |  |  |                ctx->filename, strerror(errno)); | 
					
						
							|  |  |  |         return err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     fd = fd_libv4l; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |     res = v4l2_ioctl(fd, VIDIOC_QUERYCAP, &cap); | 
					
						
							| 
									
										
										
										
											2006-02-26 13:22:32 +00:00
										 |  |  |     // ENOIOCTLCMD definition only availble on __KERNEL__
 | 
					
						
							| 
									
										
										
										
											2010-05-01 08:24:24 +00:00
										 |  |  |     if (res < 0 && ((err = errno) == 515)) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         av_log(ctx, AV_LOG_ERROR, "QUERYCAP not implemented, probably V4L device but not supporting V4L2\n"); | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         v4l2_close(fd); | 
					
						
							| 
									
										
										
										
											2006-02-26 13:22:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-01 08:24:24 +00:00
										 |  |  |         return AVERROR(515); | 
					
						
							| 
									
										
										
										
											2006-02-26 13:22:32 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     if (res < 0) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QUERYCAP): %s\n", | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |                  strerror(errno)); | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         v4l2_close(fd); | 
					
						
							| 
									
										
										
										
											2010-05-01 08:24:24 +00:00
										 |  |  |         return AVERROR(err); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     if ((cap.capabilities & V4L2_CAP_VIDEO_CAPTURE) == 0) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         av_log(ctx, AV_LOG_ERROR, "Not a video capture device\n"); | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         v4l2_close(fd); | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |         return AVERROR(ENODEV); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     *capabilities = cap.capabilities; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return fd; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 10:31:29 +00:00
										 |  |  | static int device_init(AVFormatContext *ctx, int *width, int *height, uint32_t pix_fmt) | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |     struct video_data *s = ctx->priv_data; | 
					
						
							|  |  |  |     int fd = s->fd; | 
					
						
							| 
									
										
										
										
											2011-05-28 21:02:14 +02:00
										 |  |  |     struct v4l2_format fmt = {0}; | 
					
						
							| 
									
										
										
										
											2006-02-28 11:28:09 +00:00
										 |  |  |     int res; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; | 
					
						
							| 
									
										
										
										
											2006-02-28 11:28:09 +00:00
										 |  |  |     fmt.fmt.pix.width = *width; | 
					
						
							|  |  |  |     fmt.fmt.pix.height = *height; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     fmt.fmt.pix.pixelformat = pix_fmt; | 
					
						
							|  |  |  |     fmt.fmt.pix.field = V4L2_FIELD_INTERLACED; | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |     res = v4l2_ioctl(fd, VIDIOC_S_FMT, &fmt); | 
					
						
							| 
									
										
										
										
											2006-02-28 11:28:09 +00:00
										 |  |  |     if ((*width != fmt.fmt.pix.width) || (*height != fmt.fmt.pix.height)) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         av_log(ctx, AV_LOG_INFO, "The V4L2 driver changed the video from %dx%d to %dx%d\n", *width, *height, fmt.fmt.pix.width, fmt.fmt.pix.height); | 
					
						
							| 
									
										
										
										
											2006-02-28 11:28:09 +00:00
										 |  |  |         *width = fmt.fmt.pix.width; | 
					
						
							|  |  |  |         *height = fmt.fmt.pix.height; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-21 07:59:41 +00:00
										 |  |  |     if (pix_fmt != fmt.fmt.pix.pixelformat) { | 
					
						
							|  |  |  |         av_log(ctx, AV_LOG_DEBUG, "The V4L2 driver changed the pixel format from 0x%08X to 0x%08X\n", pix_fmt, fmt.fmt.pix.pixelformat); | 
					
						
							|  |  |  |         res = -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-28 11:28:09 +00:00
										 |  |  |     return res; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int first_field(int fd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int res; | 
					
						
							|  |  |  |     v4l2_std_id std; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |     res = v4l2_ioctl(fd, VIDIOC_G_STD, &std); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     if (res < 0) { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (std & V4L2_STD_NTSC) { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  | static uint32_t fmt_ff2v4l(enum PixelFormat pix_fmt, enum CodecID codec_id) | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-21 21:40:24 +00:00
										 |  |  |     for (i = 0; i < FF_ARRAY_ELEMS(fmt_conversion_table); i++) { | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  |         if ((codec_id == CODEC_ID_NONE || | 
					
						
							|  |  |  |              fmt_conversion_table[i].codec_id == codec_id) && | 
					
						
							|  |  |  |             (pix_fmt == PIX_FMT_NONE || | 
					
						
							|  |  |  |              fmt_conversion_table[i].ff_fmt == pix_fmt)) { | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |             return fmt_conversion_table[i].v4l2_fmt; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  | static enum PixelFormat fmt_v4l2ff(uint32_t v4l2_fmt, enum CodecID codec_id) | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-21 21:40:24 +00:00
										 |  |  |     for (i = 0; i < FF_ARRAY_ELEMS(fmt_conversion_table); i++) { | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  |         if (fmt_conversion_table[i].v4l2_fmt == v4l2_fmt && | 
					
						
							|  |  |  |             fmt_conversion_table[i].codec_id == codec_id) { | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |             return fmt_conversion_table[i].ff_fmt; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 22:28:43 +00:00
										 |  |  |     return PIX_FMT_NONE; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  | static enum CodecID fmt_v4l2codec(uint32_t v4l2_fmt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < FF_ARRAY_ELEMS(fmt_conversion_table); i++) { | 
					
						
							|  |  |  |         if (fmt_conversion_table[i].v4l2_fmt == v4l2_fmt) { | 
					
						
							|  |  |  |             return fmt_conversion_table[i].codec_id; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return CODEC_ID_NONE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  | static int mmap_init(AVFormatContext *ctx) | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |     struct video_data *s = ctx->priv_data; | 
					
						
							| 
									
										
										
										
											2011-05-28 21:02:14 +02:00
										 |  |  |     struct v4l2_requestbuffers req = {0}; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     int i, res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     req.count = desired_video_buffers; | 
					
						
							|  |  |  |     req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; | 
					
						
							|  |  |  |     req.memory = V4L2_MEMORY_MMAP; | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |     res = v4l2_ioctl(s->fd, VIDIOC_REQBUFS, &req); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     if (res < 0) { | 
					
						
							|  |  |  |         if (errno == EINVAL) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |             av_log(ctx, AV_LOG_ERROR, "Device does not support mmap\n"); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |             av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_REQBUFS)\n"); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |         return AVERROR(errno); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (req.count < 2) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         av_log(ctx, AV_LOG_ERROR, "Insufficient buffer memory\n"); | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     s->buffers = req.count; | 
					
						
							|  |  |  |     s->buf_start = av_malloc(sizeof(void *) * s->buffers); | 
					
						
							|  |  |  |     if (s->buf_start == NULL) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         av_log(ctx, AV_LOG_ERROR, "Cannot allocate buffer pointers\n"); | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     s->buf_len = av_malloc(sizeof(unsigned int) * s->buffers); | 
					
						
							|  |  |  |     if (s->buf_len == NULL) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         av_log(ctx, AV_LOG_ERROR, "Cannot allocate buffer sizes\n"); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |         av_free(s->buf_start); | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < req.count; i++) { | 
					
						
							| 
									
										
										
										
											2011-05-28 21:02:14 +02:00
										 |  |  |         struct v4l2_buffer buf = {0}; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; | 
					
						
							|  |  |  |         buf.memory = V4L2_MEMORY_MMAP; | 
					
						
							|  |  |  |         buf.index = i; | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         res = v4l2_ioctl(s->fd, VIDIOC_QUERYBUF, &buf); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |         if (res < 0) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |             av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QUERYBUF)\n"); | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |             return AVERROR(errno); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         s->buf_len[i] = buf.length; | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  |         if (s->frame_size > 0 && s->buf_len[i] < s->frame_size) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |             av_log(ctx, AV_LOG_ERROR, "Buffer len [%d] = %d != %d\n", i, s->buf_len[i], s->frame_size); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         s->buf_start[i] = v4l2_mmap(NULL, buf.length, | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |                         PROT_READ | PROT_WRITE, MAP_SHARED, s->fd, buf.m.offset); | 
					
						
							|  |  |  |         if (s->buf_start[i] == MAP_FAILED) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |             av_log(ctx, AV_LOG_ERROR, "mmap: %s\n", strerror(errno)); | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |             return AVERROR(errno); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  | static int read_init(AVFormatContext *ctx) | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  | static void mmap_release_buffer(AVPacket *pkt) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-28 21:02:14 +02:00
										 |  |  |     struct v4l2_buffer buf = {0}; | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  |     int res, fd; | 
					
						
							|  |  |  |     struct buff_data *buf_descriptor = pkt->priv; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-30 12:41:44 +00:00
										 |  |  |     if (pkt->data == NULL) { | 
					
						
							|  |  |  |          return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  |     buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; | 
					
						
							|  |  |  |     buf.memory = V4L2_MEMORY_MMAP; | 
					
						
							|  |  |  |     buf.index = buf_descriptor->index; | 
					
						
							|  |  |  |     fd = buf_descriptor->fd; | 
					
						
							|  |  |  |     av_free(buf_descriptor); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |     res = v4l2_ioctl(fd, VIDIOC_QBUF, &buf); | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  |     if (res < 0) { | 
					
						
							| 
									
										
										
										
											2011-01-04 18:18:01 +00:00
										 |  |  |         av_log(NULL, AV_LOG_ERROR, "ioctl(VIDIOC_QBUF): %s\n", strerror(errno)); | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     pkt->data = NULL; | 
					
						
							|  |  |  |     pkt->size = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int mmap_read_frame(AVFormatContext *ctx, AVPacket *pkt) | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |     struct video_data *s = ctx->priv_data; | 
					
						
							| 
									
										
										
										
											2011-05-28 21:02:14 +02:00
										 |  |  |     struct v4l2_buffer buf = {0}; | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  |     struct buff_data *buf_descriptor; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     int res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; | 
					
						
							|  |  |  |     buf.memory = V4L2_MEMORY_MMAP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* FIXME: Some special treatment might be needed in case of loss of signal... */ | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |     while ((res = v4l2_ioctl(s->fd, VIDIOC_DQBUF, &buf)) < 0 && (errno == EINTR)); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     if (res < 0) { | 
					
						
							| 
									
										
										
										
											2007-07-06 07:18:25 +00:00
										 |  |  |         if (errno == EAGAIN) { | 
					
						
							|  |  |  |             pkt->size = 0; | 
					
						
							|  |  |  |             return AVERROR(EAGAIN); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_DQBUF): %s\n", strerror(errno)); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |         return AVERROR(errno); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-05-28 21:04:29 +02:00
										 |  |  |     assert(buf.index < s->buffers); | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  |     if (s->frame_size > 0 && buf.bytesused != s->frame_size) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         av_log(ctx, AV_LOG_ERROR, "The v4l2 frame is %d bytes, but %d bytes are expected\n", buf.bytesused, s->frame_size); | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2006-10-22 09:56:08 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     /* Image is at s->buff_start[buf.index] */ | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  |     pkt->data= s->buf_start[buf.index]; | 
					
						
							|  |  |  |     pkt->size = buf.bytesused; | 
					
						
							|  |  |  |     pkt->pts = buf.timestamp.tv_sec * INT64_C(1000000) + buf.timestamp.tv_usec; | 
					
						
							|  |  |  |     pkt->destruct = mmap_release_buffer; | 
					
						
							|  |  |  |     buf_descriptor = av_malloc(sizeof(struct buff_data)); | 
					
						
							|  |  |  |     if (buf_descriptor == NULL) { | 
					
						
							|  |  |  |         /* Something went wrong... Since av_malloc() failed, we cannot even
 | 
					
						
							|  |  |  |          * allocate a buffer for memcopying into it | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         av_log(ctx, AV_LOG_ERROR, "Failed to allocate a buffer descriptor\n"); | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         res = v4l2_ioctl(s->fd, VIDIOC_QBUF, &buf); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  |     buf_descriptor->fd = s->fd; | 
					
						
							|  |  |  |     buf_descriptor->index = buf.index; | 
					
						
							|  |  |  |     pkt->priv = buf_descriptor; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return s->buf_len[buf.index]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  | static int read_frame(AVFormatContext *ctx, AVPacket *pkt) | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  | static int mmap_start(AVFormatContext *ctx) | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |     struct video_data *s = ctx->priv_data; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     enum v4l2_buf_type type; | 
					
						
							|  |  |  |     int i, res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < s->buffers; i++) { | 
					
						
							| 
									
										
										
										
											2011-05-28 21:02:14 +02:00
										 |  |  |         struct v4l2_buffer buf = {0}; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; | 
					
						
							|  |  |  |         buf.memory = V4L2_MEMORY_MMAP; | 
					
						
							|  |  |  |         buf.index  = i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         res = v4l2_ioctl(s->fd, VIDIOC_QBUF, &buf); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |         if (res < 0) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |             av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QBUF): %s\n", strerror(errno)); | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |             return AVERROR(errno); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     type = V4L2_BUF_TYPE_VIDEO_CAPTURE; | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |     res = v4l2_ioctl(s->fd, VIDIOC_STREAMON, &type); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     if (res < 0) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_STREAMON): %s\n", strerror(errno)); | 
					
						
							| 
									
										
										
										
											2010-04-26 19:40:15 +00:00
										 |  |  |         return AVERROR(errno); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void mmap_close(struct video_data *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     enum v4l2_buf_type type; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     type = V4L2_BUF_TYPE_VIDEO_CAPTURE; | 
					
						
							|  |  |  |     /* We do not check for the result, because we could
 | 
					
						
							|  |  |  |      * not do anything about it anyway... | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |     v4l2_ioctl(s->fd, VIDIOC_STREAMOFF, &type); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     for (i = 0; i < s->buffers; i++) { | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         v4l2_munmap(s->buf_start[i], s->buf_len[i]); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     av_free(s->buf_start); | 
					
						
							|  |  |  |     av_free(s->buf_len); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-11 16:44:10 +00:00
										 |  |  | static int v4l2_set_parameters(AVFormatContext *s1, AVFormatParameters *ap) | 
					
						
							| 
									
										
										
										
											2007-03-29 06:32:54 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     struct video_data *s = s1->priv_data; | 
					
						
							| 
									
										
										
										
											2011-05-28 21:02:14 +02:00
										 |  |  |     struct v4l2_input input = {0}; | 
					
						
							|  |  |  |     struct v4l2_standard standard = {0}; | 
					
						
							| 
									
										
										
										
											2011-05-28 21:04:29 +02:00
										 |  |  |     struct v4l2_streamparm streamparm = {0}; | 
					
						
							| 
									
										
										
										
											2011-01-05 14:15:13 +00:00
										 |  |  |     struct v4l2_fract *tpf = &streamparm.parm.capture.timeperframe; | 
					
						
							| 
									
										
										
										
											2011-05-28 21:14:06 +02:00
										 |  |  |     int i, ret; | 
					
						
							| 
									
										
										
										
											2011-11-08 01:20:35 +01:00
										 |  |  |     AVRational framerate_q={0}; | 
					
						
							| 
									
										
										
										
											2007-03-29 06:32:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-05 14:15:13 +00:00
										 |  |  |     streamparm.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-03 10:39:54 +02:00
										 |  |  |     if (s->framerate && (ret = av_parse_video_rate(&framerate_q, s->framerate)) < 0) { | 
					
						
							| 
									
										
										
										
											2011-06-03 10:50:28 +02:00
										 |  |  |         av_log(s1, AV_LOG_ERROR, "Could not parse framerate '%s'.\n", s->framerate); | 
					
						
							| 
									
										
										
										
											2011-05-24 21:16:47 +02:00
										 |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-03-29 06:32:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-24 07:23:29 +02:00
										 |  |  |     /* set tv video input */ | 
					
						
							|  |  |  |     input.index = s->channel; | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |     if (v4l2_ioctl(s->fd, VIDIOC_ENUMINPUT, &input) < 0) { | 
					
						
							| 
									
										
										
										
											2011-05-24 07:23:29 +02:00
										 |  |  |         av_log(s1, AV_LOG_ERROR, "The V4L2 driver ioctl enum input failed:\n"); | 
					
						
							|  |  |  |         return AVERROR(EIO); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-03-29 06:32:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-24 07:23:29 +02:00
										 |  |  |     av_log(s1, AV_LOG_DEBUG, "The V4L2 driver set input_id: %d, input: %s\n", | 
					
						
							|  |  |  |             s->channel, input.name); | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |     if (v4l2_ioctl(s->fd, VIDIOC_S_INPUT, &input.index) < 0) { | 
					
						
							| 
									
										
										
										
											2011-05-24 07:23:29 +02:00
										 |  |  |         av_log(s1, AV_LOG_ERROR, "The V4L2 driver ioctl set input(%d) failed\n", | 
					
						
							|  |  |  |                 s->channel); | 
					
						
							|  |  |  |         return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2007-05-10 10:14:42 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-03-29 06:32:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-23 21:21:59 +02:00
										 |  |  |     if (s->standard) { | 
					
						
							| 
									
										
										
										
											2007-05-10 10:15:15 +00:00
										 |  |  |         av_log(s1, AV_LOG_DEBUG, "The V4L2 driver set standard: %s\n", | 
					
						
							| 
									
										
										
										
											2011-05-23 21:21:59 +02:00
										 |  |  |                s->standard); | 
					
						
							| 
									
										
										
										
											2007-05-10 10:15:15 +00:00
										 |  |  |         /* set tv standard */ | 
					
						
							| 
									
										
										
										
											2011-05-28 21:04:29 +02:00
										 |  |  |         for (i = 0;; i++) { | 
					
						
							| 
									
										
										
										
											2007-05-10 10:15:15 +00:00
										 |  |  |             standard.index = i; | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |             ret = v4l2_ioctl(s->fd, VIDIOC_ENUMSTD, &standard); | 
					
						
							| 
									
										
										
										
											2011-11-02 20:17:25 +01:00
										 |  |  |             if (ret < 0 || !av_strcasecmp(standard.name, s->standard)) | 
					
						
							| 
									
										
										
										
											2007-05-10 10:15:15 +00:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2011-05-28 21:14:06 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (ret < 0) { | 
					
						
							|  |  |  |             av_log(s1, AV_LOG_ERROR, "Unknown standard '%s'\n", s->standard); | 
					
						
							|  |  |  |             return ret; | 
					
						
							| 
									
										
										
										
											2007-05-10 10:15:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         av_log(s1, AV_LOG_DEBUG, "The V4L2 driver set standard: %s, id: %"PRIu64"\n", | 
					
						
							| 
									
										
										
										
											2011-05-23 21:21:59 +02:00
										 |  |  |                s->standard, (uint64_t)standard.id); | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         if (v4l2_ioctl(s->fd, VIDIOC_S_STD, &standard.id) < 0) { | 
					
						
							| 
									
										
										
										
											2007-03-29 06:32:54 +00:00
										 |  |  |             av_log(s1, AV_LOG_ERROR, "The V4L2 driver ioctl set standard(%s) failed\n", | 
					
						
							| 
									
										
										
										
											2011-05-23 21:21:59 +02:00
										 |  |  |                    s->standard); | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |             return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2007-03-29 06:32:54 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-05-10 10:14:42 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-03-29 06:32:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-03 10:39:54 +02:00
										 |  |  |     if (framerate_q.num && framerate_q.den) { | 
					
						
							| 
									
										
										
										
											2010-09-23 09:16:05 +00:00
										 |  |  |         av_log(s1, AV_LOG_DEBUG, "Setting time per frame to %d/%d\n", | 
					
						
							| 
									
										
										
										
											2011-06-03 10:39:54 +02:00
										 |  |  |                framerate_q.den, framerate_q.num); | 
					
						
							|  |  |  |         tpf->numerator   = framerate_q.den; | 
					
						
							|  |  |  |         tpf->denominator = framerate_q.num; | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         if (v4l2_ioctl(s->fd, VIDIOC_S_PARM, &streamparm) != 0) { | 
					
						
							| 
									
										
										
										
											2010-09-23 09:16:05 +00:00
										 |  |  |             av_log(s1, AV_LOG_ERROR, | 
					
						
							|  |  |  |                    "ioctl set time per frame(%d/%d) failed\n", | 
					
						
							| 
									
										
										
										
											2011-06-03 10:39:54 +02:00
										 |  |  |                    framerate_q.den, framerate_q.num); | 
					
						
							| 
									
										
										
										
											2010-09-23 09:16:05 +00:00
										 |  |  |             return AVERROR(EIO); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-03 10:39:54 +02:00
										 |  |  |         if (framerate_q.num != tpf->denominator || | 
					
						
							|  |  |  |             framerate_q.den != tpf->numerator) { | 
					
						
							| 
									
										
										
										
											2010-09-23 09:16:05 +00:00
										 |  |  |             av_log(s1, AV_LOG_INFO, | 
					
						
							|  |  |  |                    "The driver changed the time per frame from %d/%d to %d/%d\n", | 
					
						
							| 
									
										
										
										
											2011-06-03 10:39:54 +02:00
										 |  |  |                    framerate_q.den, framerate_q.num, | 
					
						
							| 
									
										
										
										
											2010-09-23 09:16:05 +00:00
										 |  |  |                    tpf->numerator, tpf->denominator); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-01-05 14:15:11 +00:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2011-05-24 21:16:47 +02:00
										 |  |  |         /* if timebase value is not set, read the timebase value from the driver */ | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         if (v4l2_ioctl(s->fd, VIDIOC_G_PARM, &streamparm) != 0) { | 
					
						
							| 
									
										
										
										
											2011-01-05 14:15:11 +00:00
										 |  |  |             av_log(s1, AV_LOG_ERROR, "ioctl(VIDIOC_G_PARM): %s\n", strerror(errno)); | 
					
						
							|  |  |  |             return AVERROR(errno); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-09-23 09:16:05 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-06-03 13:29:43 +02:00
										 |  |  |     s1->streams[0]->codec->time_base.den = tpf->denominator; | 
					
						
							|  |  |  |     s1->streams[0]->codec->time_base.num = tpf->numerator; | 
					
						
							| 
									
										
										
										
											2010-09-23 09:16:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-29 06:32:54 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-03 10:43:36 +00:00
										 |  |  | static uint32_t device_try_init(AVFormatContext *s1, | 
					
						
							| 
									
										
										
										
											2011-05-24 09:02:11 +02:00
										 |  |  |                                 enum PixelFormat pix_fmt, | 
					
						
							| 
									
										
										
										
											2010-01-03 10:43:36 +00:00
										 |  |  |                                 int *width, | 
					
						
							|  |  |  |                                 int *height, | 
					
						
							|  |  |  |                                 enum CodecID *codec_id) | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-24 09:02:11 +02:00
										 |  |  |     uint32_t desired_format = fmt_ff2v4l(pix_fmt, s1->video_codec_id); | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (desired_format == 0 || | 
					
						
							|  |  |  |         device_init(s1, width, height, desired_format) < 0) { | 
					
						
							|  |  |  |         int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         desired_format = 0; | 
					
						
							|  |  |  |         for (i = 0; i<FF_ARRAY_ELEMS(fmt_conversion_table); i++) { | 
					
						
							| 
									
										
										
										
											2010-01-28 15:45:21 +00:00
										 |  |  |             if (s1->video_codec_id == CODEC_ID_NONE || | 
					
						
							|  |  |  |                 fmt_conversion_table[i].codec_id == s1->video_codec_id) { | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  |                 desired_format = fmt_conversion_table[i].v4l2_fmt; | 
					
						
							|  |  |  |                 if (device_init(s1, width, height, desired_format) >= 0) { | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 desired_format = 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (desired_format != 0) { | 
					
						
							|  |  |  |         *codec_id = fmt_v4l2codec(desired_format); | 
					
						
							|  |  |  |         assert(*codec_id != CODEC_ID_NONE); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return desired_format; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | static int v4l2_read_header(AVFormatContext *s1, AVFormatParameters *ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct video_data *s = s1->priv_data; | 
					
						
							|  |  |  |     AVStream *st; | 
					
						
							| 
									
										
										
										
											2011-05-26 20:37:08 +02:00
										 |  |  |     int res = 0; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     uint32_t desired_format, capabilities; | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  |     enum CodecID codec_id; | 
					
						
							| 
									
										
										
										
											2011-05-24 09:02:11 +02:00
										 |  |  |     enum PixelFormat pix_fmt = PIX_FMT_NONE; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-18 11:43:24 +02:00
										 |  |  |     st = avformat_new_stream(s1, NULL); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     if (!st) { | 
					
						
							| 
									
										
										
										
											2011-05-26 20:37:08 +02:00
										 |  |  |         res = AVERROR(ENOMEM); | 
					
						
							|  |  |  |         goto out; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-11-29 19:28:15 +01:00
										 |  |  |     avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */ | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-24 07:43:01 +02:00
										 |  |  |     if (s->video_size && (res = av_parse_video_size(&s->width, &s->height, s->video_size)) < 0) { | 
					
						
							| 
									
										
										
										
											2011-06-03 10:50:28 +02:00
										 |  |  |         av_log(s1, AV_LOG_ERROR, "Could not parse video size '%s'.\n", s->video_size); | 
					
						
							| 
									
										
										
										
											2011-05-24 07:43:01 +02:00
										 |  |  |         goto out; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-05-24 09:02:11 +02:00
										 |  |  |     if (s->pixel_format && (pix_fmt = av_get_pix_fmt(s->pixel_format)) == PIX_FMT_NONE) { | 
					
						
							|  |  |  |         av_log(s1, AV_LOG_ERROR, "No such pixel format: %s.\n", s->pixel_format); | 
					
						
							|  |  |  |         res = AVERROR(EINVAL); | 
					
						
							|  |  |  |         goto out; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     capabilities = 0; | 
					
						
							| 
									
										
										
										
											2007-02-14 17:01:32 +00:00
										 |  |  |     s->fd = device_open(s1, &capabilities); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     if (s->fd < 0) { | 
					
						
							| 
									
										
										
										
											2011-05-26 20:37:08 +02:00
										 |  |  |         res = AVERROR(EIO); | 
					
						
							|  |  |  |         goto out; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-04-27 21:33:56 +00:00
										 |  |  |     av_log(s1, AV_LOG_VERBOSE, "[%d]Capabilities: %x\n", s->fd, capabilities); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-26 22:07:15 +00:00
										 |  |  |     if (!s->width && !s->height) { | 
					
						
							|  |  |  |         struct v4l2_format fmt; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-27 21:33:56 +00:00
										 |  |  |         av_log(s1, AV_LOG_VERBOSE, "Querying the device for the current frame size\n"); | 
					
						
							| 
									
										
										
										
											2010-04-26 22:07:15 +00:00
										 |  |  |         fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         if (v4l2_ioctl(s->fd, VIDIOC_G_FMT, &fmt) < 0) { | 
					
						
							| 
									
										
										
										
											2010-04-26 22:07:15 +00:00
										 |  |  |             av_log(s1, AV_LOG_ERROR, "ioctl(VIDIOC_G_FMT): %s\n", strerror(errno)); | 
					
						
							| 
									
										
										
										
											2011-05-26 20:37:08 +02:00
										 |  |  |             res = AVERROR(errno); | 
					
						
							|  |  |  |             goto out; | 
					
						
							| 
									
										
										
										
											2010-04-26 22:07:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         s->width  = fmt.fmt.pix.width; | 
					
						
							|  |  |  |         s->height = fmt.fmt.pix.height; | 
					
						
							| 
									
										
										
										
											2010-04-27 21:33:56 +00:00
										 |  |  |         av_log(s1, AV_LOG_VERBOSE, "Setting frame size to %dx%d\n", s->width, s->height); | 
					
						
							| 
									
										
										
										
											2010-04-26 22:07:15 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-24 09:02:11 +02:00
										 |  |  |     desired_format = device_try_init(s1, pix_fmt, &s->width, &s->height, &codec_id); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     if (desired_format == 0) { | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  |         av_log(s1, AV_LOG_ERROR, "Cannot find a proper format for " | 
					
						
							| 
									
										
										
										
											2011-05-29 15:22:45 +02:00
										 |  |  |                "codec_id %d, pix_fmt %d.\n", s1->video_codec_id, pix_fmt); | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         v4l2_close(s->fd); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-26 20:37:08 +02:00
										 |  |  |         res = AVERROR(EIO); | 
					
						
							|  |  |  |         goto out; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-11-21 07:50:03 +01:00
										 |  |  |     if ((res = av_image_check_size(s->width, s->height, 0, s1)) < 0) | 
					
						
							| 
									
										
										
										
											2011-05-26 20:37:08 +02:00
										 |  |  |         goto out; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     s->frame_format = desired_format; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 07:50:03 +01:00
										 |  |  |     if ((res = v4l2_set_parameters(s1, ap)) < 0) | 
					
						
							| 
									
										
										
										
											2011-05-26 20:37:08 +02:00
										 |  |  |         goto out; | 
					
						
							| 
									
										
										
										
											2007-03-29 06:32:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  |     st->codec->pix_fmt = fmt_v4l2ff(desired_format, codec_id); | 
					
						
							| 
									
										
										
										
											2010-04-25 18:47:40 +00:00
										 |  |  |     s->frame_size = avpicture_get_size(st->codec->pix_fmt, s->width, s->height); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     if (capabilities & V4L2_CAP_STREAMING) { | 
					
						
							|  |  |  |         s->io_method = io_mmap; | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         res = mmap_init(s1); | 
					
						
							| 
									
										
										
										
											2006-06-15 15:15:20 +00:00
										 |  |  |         if (res == 0) { | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |             res = mmap_start(s1); | 
					
						
							| 
									
										
										
										
											2006-06-15 15:15:20 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         s->io_method = io_read; | 
					
						
							| 
									
										
										
										
											2007-02-12 13:38:14 +00:00
										 |  |  |         res = read_init(s1); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (res < 0) { | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |         v4l2_close(s->fd); | 
					
						
							| 
									
										
										
										
											2011-05-26 20:37:08 +02:00
										 |  |  |         res = AVERROR(EIO); | 
					
						
							|  |  |  |         goto out; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     s->top_field_first = first_field(s->fd); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-30 23:30:55 +00:00
										 |  |  |     st->codec->codec_type = AVMEDIA_TYPE_VIDEO; | 
					
						
							| 
									
										
										
										
											2009-12-14 10:34:31 +00:00
										 |  |  |     st->codec->codec_id = codec_id; | 
					
						
							| 
									
										
										
										
											2010-04-25 18:47:40 +00:00
										 |  |  |     st->codec->width = s->width; | 
					
						
							|  |  |  |     st->codec->height = s->height; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     st->codec->bit_rate = s->frame_size * 1/av_q2d(st->codec->time_base) * 8; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-26 20:37:08 +02:00
										 |  |  | out: | 
					
						
							|  |  |  |     return res; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int v4l2_read_packet(AVFormatContext *s1, AVPacket *pkt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct video_data *s = s1->priv_data; | 
					
						
							|  |  |  |     int res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->io_method == io_mmap) { | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  |         av_init_packet(pkt); | 
					
						
							|  |  |  |         res = mmap_read_frame(s1, pkt); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } else if (s->io_method == io_read) { | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  |         if (av_new_packet(pkt, s->frame_size) < 0) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |             return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2007-02-14 13:25:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         res = read_frame(s1, pkt); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |         return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (res < 0) { | 
					
						
							| 
									
										
										
										
											2007-09-13 12:46:30 +00:00
										 |  |  |         return res; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s1->streams[0]->codec->coded_frame) { | 
					
						
							|  |  |  |         s1->streams[0]->codec->coded_frame->interlaced_frame = 1; | 
					
						
							|  |  |  |         s1->streams[0]->codec->coded_frame->top_field_first = s->top_field_first; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 10:30:37 +00:00
										 |  |  |     return pkt->size; | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int v4l2_read_close(AVFormatContext *s1) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct video_data *s = s1->priv_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->io_method == io_mmap) { | 
					
						
							|  |  |  |         mmap_close(s); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-30 03:21:55 +01:00
										 |  |  |     v4l2_close(s->fd); | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-24 07:43:01 +02:00
										 |  |  | #define OFFSET(x) offsetof(struct video_data, x)
 | 
					
						
							|  |  |  | #define DEC AV_OPT_FLAG_DECODING_PARAM
 | 
					
						
							| 
									
										
										
										
											2011-05-28 20:38:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-23 21:21:59 +02:00
										 |  |  | static const AVOption options[] = { | 
					
						
							| 
									
										
										
										
											2011-10-13 04:55:40 +02:00
										 |  |  |     { "standard", "", OFFSET(standard), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, AV_OPT_FLAG_DECODING_PARAM }, | 
					
						
							|  |  |  |     { "channel",  "", OFFSET(channel),  AV_OPT_TYPE_INT,    {.dbl = 0 }, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM }, | 
					
						
							| 
									
										
										
										
											2011-10-04 07:38:01 +02:00
										 |  |  |     { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC }, | 
					
						
							|  |  |  |     { "pixel_format", "", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC }, | 
					
						
							|  |  |  |     { "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC }, | 
					
						
							| 
									
										
										
										
											2011-05-23 21:21:59 +02:00
										 |  |  |     { NULL }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const AVClass v4l2_class = { | 
					
						
							|  |  |  |     .class_name = "V4L2 indev", | 
					
						
							|  |  |  |     .item_name  = av_default_item_name, | 
					
						
							|  |  |  |     .option     = options, | 
					
						
							|  |  |  |     .version    = LIBAVUTIL_VERSION_INT, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 22:03:28 +00:00
										 |  |  | AVInputFormat ff_v4l2_demuxer = { | 
					
						
							| 
									
										
										
										
											2011-10-30 02:39:30 +02:00
										 |  |  |     .name           = "video4linux2,v4l2", | 
					
						
							| 
									
										
										
										
											2011-09-23 20:50:11 +02:00
										 |  |  |     .long_name      = NULL_IF_CONFIG_SMALL("Video4Linux2 device grab"), | 
					
						
							|  |  |  |     .priv_data_size = sizeof(struct video_data), | 
					
						
							|  |  |  |     .read_header    = v4l2_read_header, | 
					
						
							|  |  |  |     .read_packet    = v4l2_read_packet, | 
					
						
							|  |  |  |     .read_close     = v4l2_read_close, | 
					
						
							|  |  |  |     .flags          = AVFMT_NOFILE, | 
					
						
							|  |  |  |     .priv_class     = &v4l2_class, | 
					
						
							| 
									
										
										
										
											2006-02-01 11:31:33 +00:00
										 |  |  | }; |