v4l2.c File Reference

Video4Linux2 grab interface. More...

#include "config.h"
#include "libavformat/internal.h"
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/time.h>
#include <linux/videodev2.h>
#include "libavutil/atomic.h"
#include "libavutil/avassert.h"
#include "libavutil/imgutils.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"
#include "avdevice.h"
#include "timefilter.h"
#include "libavutil/parseutils.h"
#include "libavutil/pixdesc.h"
#include "libavutil/time.h"
#include "libavutil/avstring.h"
Include dependency graph for v4l2.c:

Go to the source code of this file.

Data Structures

struct  video_data
 
struct  buff_data
 
struct  fmt_map
 

Macros

#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
 
#define V4L_ALLFORMATS   3
 
#define V4L_RAWFORMATS   1
 
#define V4L_COMPFORMATS   2
 
#define V4L_TS_DEFAULT   0
 Return timestamps to the user exactly as returned by the kernel. More...
 
#define V4L_TS_ABS   1
 Autodetect the kind of timestamps returned by the kernel and convert to absolute (wall clock) timestamps. More...
 
#define V4L_TS_MONO2ABS   2
 Assume kernel timestamps are from the monotonic clock and convert to absolute timestamps. More...
 
#define V4L_TS_CONVERT_READY   V4L_TS_DEFAULT
 Once the kind of timestamps returned by the kernel have been detected, the value of the timefilter (NULL or not) determines whether a conversion takes place. More...
 
#define OFFSET(x)   offsetof(struct video_data, x)
 
#define DEC   AV_OPT_FLAG_DECODING_PARAM
 

Functions

static int device_open (AVFormatContext *ctx)
 
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 AVPixelFormat pix_fmt, enum AVCodecID codec_id)
 
static enum AVPixelFormat fmt_v4l2ff (uint32_t v4l2_fmt, enum AVCodecID codec_id)
 
static enum AVCodecID fmt_v4l2codec (uint32_t v4l2_fmt)
 
static void list_formats (AVFormatContext *ctx, int fd, int type)
 
static void list_standards (AVFormatContext *ctx)
 
static int mmap_init (AVFormatContext *ctx)
 
static void mmap_release_buffer (void *opaque, uint8_t *data)
 
static int init_convert_timestamp (AVFormatContext *ctx, int64_t ts)
 
static int convert_timestamp (AVFormatContext *ctx, int64_t *ts)
 
static int mmap_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)
 
static int device_try_init (AVFormatContext *s1, enum AVPixelFormat pix_fmt, int *width, int *height, uint32_t *desired_format, enum AVCodecID *codec_id)
 
static int v4l2_read_header (AVFormatContext *s1)
 
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://linuxtv.org/downloads/v4l-dvb-apis/capture-example.html)

Thanks to Michael Niedermayer for providing the mapping between V4L2_PIX_FMT_* and AV_PIX_FMT_*

Definition in file v4l2.c.

Macro Definition Documentation

#define DEC   AV_OPT_FLAG_DECODING_PARAM

Definition at line 1051 of file v4l2.c.

#define OFFSET (   x)    offsetof(struct video_data, x)

Definition at line 1050 of file v4l2.c.

#define v4l2_close   close

Definition at line 65 of file v4l2.c.

Referenced by device_open(), v4l2_read_close(), and v4l2_read_header().

#define v4l2_dup   dup

Definition at line 66 of file v4l2.c.

#define v4l2_mmap   mmap

Definition at line 69 of file v4l2.c.

Referenced by mmap_init().

#define v4l2_munmap   munmap

Definition at line 70 of file v4l2.c.

Referenced by mmap_close().

#define v4l2_open   open

Definition at line 64 of file v4l2.c.

Referenced by device_open().

#define v4l2_read   read

Definition at line 68 of file v4l2.c.

#define V4L_ALLFORMATS   3

Definition at line 75 of file v4l2.c.

#define V4L_COMPFORMATS   2

Definition at line 77 of file v4l2.c.

Referenced by list_formats().

#define V4L_RAWFORMATS   1

Definition at line 76 of file v4l2.c.

Referenced by list_formats().

#define V4L_TS_ABS   1

Autodetect the kind of timestamps returned by the kernel and convert to absolute (wall clock) timestamps.

Definition at line 87 of file v4l2.c.

Referenced by init_convert_timestamp().

#define V4L_TS_CONVERT_READY   V4L_TS_DEFAULT

Once the kind of timestamps returned by the kernel have been detected, the value of the timefilter (NULL or not) determines whether a conversion takes place.

Definition at line 99 of file v4l2.c.

Referenced by init_convert_timestamp().

#define V4L_TS_DEFAULT   0

Return timestamps to the user exactly as returned by the kernel.

Definition at line 82 of file v4l2.c.

#define V4L_TS_MONO2ABS   2

Assume kernel timestamps are from the monotonic clock and convert to absolute timestamps.

Definition at line 92 of file v4l2.c.

Referenced by init_convert_timestamp().

Function Documentation

static int convert_timestamp ( AVFormatContext ctx,
int64_t *  ts 
)
static

Definition at line 541 of file v4l2.c.

Referenced by mmap_read_frame().

static int device_init ( AVFormatContext ctx,
int *  width,
int *  height,
uint32_t  pix_fmt 
)
static

Definition at line 219 of file v4l2.c.

Referenced by device_try_init().

static int device_open ( AVFormatContext ctx)
static

Definition at line 170 of file v4l2.c.

Referenced by v4l2_read_header().

static int device_try_init ( AVFormatContext s1,
enum AVPixelFormat  pix_fmt,
int *  width,
int *  height,
uint32_t *  desired_format,
enum AVCodecID codec_id 
)
static

Definition at line 819 of file v4l2.c.

Referenced by v4l2_read_header().

static int first_field ( int  fd)
static

Definition at line 262 of file v4l2.c.

Referenced by dnxhd_decode_frame(), dnxhd_encode_picture(), and v4l2_read_header().

static uint32_t fmt_ff2v4l ( enum AVPixelFormat  pix_fmt,
enum AVCodecID  codec_id 
)
static

Definition at line 278 of file v4l2.c.

Referenced by device_try_init().

static enum AVCodecID fmt_v4l2codec ( uint32_t  v4l2_fmt)
static

Definition at line 308 of file v4l2.c.

Referenced by device_try_init(), and list_formats().

static enum AVPixelFormat fmt_v4l2ff ( uint32_t  v4l2_fmt,
enum AVCodecID  codec_id 
)
static

Definition at line 294 of file v4l2.c.

Referenced by list_formats(), and v4l2_read_header().

static int init_convert_timestamp ( AVFormatContext ctx,
int64_t  ts 
)
static

Definition at line 512 of file v4l2.c.

Referenced by convert_timestamp().

static void list_formats ( AVFormatContext ctx,
int  fd,
int  type 
)
static

Definition at line 347 of file v4l2.c.

Referenced by v4l2_read_header().

static void list_standards ( AVFormatContext ctx)
static

Definition at line 384 of file v4l2.c.

Referenced by v4l2_read_header().

static void mmap_close ( struct video_data s)
static

Definition at line 693 of file v4l2.c.

Referenced by v4l2_read_close().

static int mmap_init ( AVFormatContext ctx)
static

Definition at line 408 of file v4l2.c.

Referenced by v4l2_read_header().

static int mmap_read_frame ( AVFormatContext ctx,
AVPacket pkt 
)
static

Definition at line 562 of file v4l2.c.

Referenced by v4l2_read_packet().

static void mmap_release_buffer ( void opaque,
uint8_t data 
)
static

Definition at line 481 of file v4l2.c.

Referenced by mmap_read_frame().

static int mmap_start ( AVFormatContext ctx)
static

Definition at line 662 of file v4l2.c.

Referenced by v4l2_read_header().

static int v4l2_read_close ( AVFormatContext s1)
static

Definition at line 1036 of file v4l2.c.

static int v4l2_read_header ( AVFormatContext s1)
static

Definition at line 871 of file v4l2.c.

static int v4l2_read_packet ( AVFormatContext s1,
AVPacket pkt 
)
static

Definition at line 1017 of file v4l2.c.

static int v4l2_set_parameters ( AVFormatContext s1)
static

Definition at line 710 of file v4l2.c.

Referenced by v4l2_read_header().

Variable Documentation

const int desired_video_buffers = 256
static

Definition at line 73 of file v4l2.c.

Referenced by mmap_init().

AVInputFormat ff_v4l2_demuxer
Initial value:
= {
.name = "video4linux2,v4l2",
.long_name = NULL_IF_CONFIG_SMALL("Video4Linux2 device grab"),
.priv_data_size = sizeof(struct video_data),
.read_packet = v4l2_read_packet,
.read_close = v4l2_read_close,
.flags = AVFMT_NOFILE,
.priv_class = &v4l2_class,
}
static int v4l2_read_packet(AVFormatContext *s1, AVPacket *pkt)
Definition: v4l2.c:1017
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:517
static const AVClass v4l2_class
Definition: v4l2.c:1078
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition: avformat.h:345
static int v4l2_read_header(AVFormatContext *s1)
Definition: v4l2.c:871
static int v4l2_read_close(AVFormatContext *s1)
Definition: v4l2.c:1036

Definition at line 1085 of file v4l2.c.

struct fmt_map fmt_conversion_table[]
static

Definition at line 137 of file v4l2.c.

const AVOption options[]
static
Initial value:
= {
{ "standard", "set TV standard, used only by analog frame grabber", OFFSET(standard), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC },
{ "channel", "set TV channel, used only by frame grabber", OFFSET(channel), AV_OPT_TYPE_INT, {.i64 = -1 }, -1, INT_MAX, DEC },
{ "video_size", "set frame size", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, DEC },
{ "pixel_format", "set preferred pixel format", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
{ "input_format", "set preferred pixel format (for raw video) or codec name", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
{ "framerate", "set frame rate", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
{ "list_formats", "list available formats and exit", OFFSET(list_format), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, DEC, "list_formats" },
{ "all", "show all available formats", OFFSET(list_format), AV_OPT_TYPE_CONST, {.i64 = V4L_ALLFORMATS }, 0, INT_MAX, DEC, "list_formats" },
{ "raw", "show only non-compressed formats", OFFSET(list_format), AV_OPT_TYPE_CONST, {.i64 = V4L_RAWFORMATS }, 0, INT_MAX, DEC, "list_formats" },
{ "compressed", "show only compressed formats", OFFSET(list_format), AV_OPT_TYPE_CONST, {.i64 = V4L_COMPFORMATS }, 0, INT_MAX, DEC, "list_formats" },
{ "list_standards", "list supported standards and exit", OFFSET(list_standard), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 1, DEC, "list_standards" },
{ "all", "show all supported standards", OFFSET(list_standard), AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, DEC, "list_standards" },
{ "timestamps", "set type of timestamps for grabbed frames", OFFSET(ts_mode), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 2, DEC, "timestamps" },
{ "ts", "set type of timestamps for grabbed frames", OFFSET(ts_mode), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 2, DEC, "timestamps" },
{ "default", "use timestamps from the kernel", OFFSET(ts_mode), AV_OPT_TYPE_CONST, {.i64 = V4L_TS_DEFAULT }, 0, 2, DEC, "timestamps" },
{ "abs", "use absolute timestamps (wall clock)", OFFSET(ts_mode), AV_OPT_TYPE_CONST, {.i64 = V4L_TS_ABS }, 0, 2, DEC, "timestamps" },
{ "mono2abs", "force conversion from monotonic to absolute timestamps", OFFSET(ts_mode), AV_OPT_TYPE_CONST, {.i64 = V4L_TS_MONO2ABS }, 0, 2, DEC, "timestamps" },
{ NULL },
}
char * pixel_format
Set by a private option.
Definition: v4l2.c:120
int channel
Definition: v4l2.c:119
#define V4L_TS_ABS
Autodetect the kind of timestamps returned by the kernel and convert to absolute (wall clock) timesta...
Definition: v4l2.c:87
char * standard
Definition: v4l2.c:117
#define V4L_TS_DEFAULT
Return timestamps to the user exactly as returned by the kernel.
Definition: v4l2.c:82
#define OFFSET(x)
Definition: v4l2.c:1050
#define V4L_TS_MONO2ABS
Assume kernel timestamps are from the monotonic clock and convert to absolute timestamps.
Definition: v4l2.c:92
int ts_mode
Definition: v4l2.c:109
int list_format
Set by a private option.
Definition: v4l2.c:121
NULL
Definition: eval.c:55
static int width
Definition: tests/utils.c:158
#define V4L_ALLFORMATS
Definition: v4l2.c:75
offset must point to two consecutive integers
Definition: opt.h:230
int list_standard
Set by a private option.
Definition: v4l2.c:122
char * framerate
Set by a private option.
Definition: v4l2.c:123
#define V4L_COMPFORMATS
Definition: v4l2.c:77
#define V4L_RAWFORMATS
Definition: v4l2.c:76
#define DEC
Definition: v4l2.c:1051

Definition at line 1053 of file v4l2.c.

const AVClass v4l2_class
static
Initial value:
= {
.class_name = "V4L2 indev",
.item_name = av_default_item_name,
.option = options,
}
av_default_item_name
static const AVOption options[]
Definition: v4l2.c:1053
LIBAVUTIL_VERSION_INT
Definition: eval.c:55

Definition at line 1078 of file v4l2.c.