libavdevice/v4l2.c File Reference
Video4Linux2 grab interface.
More...
#include "config.h"
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/time.h>
#include <asm/types.h>
#include <linux/videodev2.h>
#include <time.h>
#include <strings.h>
#include "libavutil/imgutils.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"
#include "avdevice.h"
#include "libavutil/parseutils.h"
#include "libavutil/pixdesc.h"
Go to the source code of this file.
|
Data Structures |
struct | video_data |
struct | buff_data |
struct | fmt_map |
Defines |
#define | OFFSET(x) offsetof(struct video_data, x) |
#define | DEC AV_OPT_FLAG_DECODING_PARAM |
Enumerations |
enum | io_method { io_read,
io_mmap,
io_userptr
} |
Functions |
static int | device_open (AVFormatContext *ctx, uint32_t *capabilities) |
static int | device_init (AVFormatContext *ctx, int *width, int *height, uint32_t pix_fmt) |
static int | first_field (int fd) |
static uint32_t | fmt_ff2v4l (enum PixelFormat pix_fmt, enum CodecID codec_id) |
static enum PixelFormat | fmt_v4l2ff (uint32_t v4l2_fmt, enum CodecID codec_id) |
static enum CodecID | fmt_v4l2codec (uint32_t v4l2_fmt) |
static int | mmap_init (AVFormatContext *ctx) |
static int | read_init (AVFormatContext *ctx) |
static void | mmap_release_buffer (AVPacket *pkt) |
static int | mmap_read_frame (AVFormatContext *ctx, AVPacket *pkt) |
static int | read_frame (AVFormatContext *ctx, AVPacket *pkt) |
static int | mmap_start (AVFormatContext *ctx) |
static void | mmap_close (struct video_data *s) |
static int | v4l2_set_parameters (AVFormatContext *s1, AVFormatParameters *ap) |
static uint32_t | device_try_init (AVFormatContext *s1, enum PixelFormat pix_fmt, int *width, int *height, enum CodecID *codec_id) |
static int | v4l2_read_header (AVFormatContext *s1, AVFormatParameters *ap) |
static int | v4l2_read_packet (AVFormatContext *s1, AVPacket *pkt) |
static int | v4l2_read_close (AVFormatContext *s1) |
Variables |
static const int | desired_video_buffers = 256 |
static struct fmt_map | fmt_conversion_table [] |
static const AVOption | options [] |
static const AVClass | v4l2_class |
AVInputFormat | ff_v4l2_demuxer |
Detailed Description
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_*
Definition in file v4l2.c.
Define Documentation
#define DEC AV_OPT_FLAG_DECODING_PARAM |
#define OFFSET |
( |
x |
|
) |
offsetof(struct video_data, x) |
Enumeration Type Documentation
- Enumerator:
-
io_read |
|
io_mmap |
|
io_userptr |
|
Definition at line 57 of file v4l2.c.
Function Documentation
static int device_init |
( |
AVFormatContext * |
ctx, |
|
|
int * |
width, |
|
|
int * |
height, |
|
|
uint32_t |
pix_fmt | |
|
) |
| | [static] |
static int device_open |
( |
AVFormatContext * |
ctx, |
|
|
uint32_t * |
capabilities | |
|
) |
| | [static] |
static int first_field |
( |
int |
fd |
) |
[static] |
static enum CodecID fmt_v4l2codec |
( |
uint32_t |
v4l2_fmt |
) |
[static] |
static void mmap_close |
( |
struct video_data * |
s |
) |
[static] |
static void mmap_release_buffer |
( |
AVPacket * |
pkt |
) |
[static] |
Variable Documentation
Initial value:
Definition at line 728 of file v4l2.c.
Initial value:
{
{ 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 },
}
Definition at line 93 of file v4l2.c.
Initial value:
{
{ "standard", "", OFFSET(standard), FF_OPT_TYPE_STRING, {.str = NULL }, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
{ "channel", "", OFFSET(channel), FF_OPT_TYPE_INT, {.dbl = 0 }, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
{ "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), FF_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
{ "pixel_format", "", OFFSET(pixel_format), FF_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
{ "framerate", "", OFFSET(framerate), FF_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
{ NULL },
}
Definition at line 712 of file v4l2.c.
Initial value:
Definition at line 721 of file v4l2.c.