|
FFmpeg
|
#include <stdatomic.h>#include "libavutil/avassert.h"#include "libavutil/avstring.h"#include "v4l2-common.h"#include <dirent.h>Go to the source code of this file.
Data Structures | |
| struct | video_data |
| struct | buff_data |
Macros | |
| #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 | SET_WRAPPERS(prefix) |
| #define | v4l2_open s->open_f |
| #define | v4l2_close s->close_f |
| #define | v4l2_dup s->dup_f |
| #define | v4l2_ioctl s->ioctl_f |
| #define | v4l2_read s->read_f |
| #define | v4l2_mmap s->mmap_f |
| #define | v4l2_munmap s->munmap_f |
| #define | OFFSET(x) offsetof(struct video_data, x) |
| #define | DEC AV_OPT_FLAG_DECODING_PARAM |
Variables | |
| static const int | desired_video_buffers = 256 |
| static const AVOption | options [] |
| static const AVClass | v4l2_class |
| const AVInputFormat | ff_v4l2_demuxer |
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.
| #define V4L_TS_DEFAULT 0 |
| #define V4L_TS_ABS 1 |
| #define V4L_TS_MONO2ABS 2 |
| #define V4L_TS_CONVERT_READY V4L_TS_DEFAULT |
| #define SET_WRAPPERS | ( | prefix | ) |
| #define v4l2_open s->open_f |
| #define v4l2_close s->close_f |
| #define v4l2_dup s->dup_f |
| #define v4l2_ioctl s->ioctl_f |
| #define v4l2_read s->read_f |
| #define v4l2_mmap s->mmap_f |
| #define v4l2_munmap s->munmap_f |
| #define OFFSET | ( | x | ) | offsetof(struct video_data, x) |
| #define DEC AV_OPT_FLAG_DECODING_PARAM |
|
static |
Definition at line 115 of file v4l2.c.
Referenced by v4l2_get_device_list(), and v4l2_read_header().
|
static |
Definition at line 194 of file v4l2.c.
Referenced by device_try_init().
|
static |
Definition at line 236 of file v4l2.c.
Referenced by dnxhd_decode_frame(), dnxhd_decode_header(), dnxhd_encode_picture(), ff_draw_horiz_band(), and v4l2_read_header().
|
static |
Definition at line 277 of file v4l2.c.
Referenced by v4l2_read_header().
|
static |
Definition at line 315 of file v4l2.c.
Referenced by v4l2_read_header().
|
static |
Definition at line 339 of file v4l2.c.
Referenced by v4l2_read_header().
|
static |
Definition at line 405 of file v4l2.c.
Referenced by mmap_read_frame(), and mmap_release_buffer().
|
static |
Definition at line 419 of file v4l2.c.
Referenced by mmap_read_frame().
|
static |
Definition at line 440 of file v4l2.c.
Referenced by convert_timestamp().
|
static |
Definition at line 473 of file v4l2.c.
Referenced by mmap_read_frame().
|
static |
Definition at line 494 of file v4l2.c.
Referenced by v4l2_read_packet().
|
static |
Definition at line 600 of file v4l2.c.
Referenced by v4l2_read_header().
|
static |
Definition at line 633 of file v4l2.c.
Referenced by v4l2_read_close().
|
static |
Definition at line 650 of file v4l2.c.
Referenced by v4l2_read_header().
|
static |
Definition at line 768 of file v4l2.c.
Referenced by v4l2_read_header().
|
static |
|
static |
|
static |
|
static |
|
static |
Definition at line 1009 of file v4l2.c.
Referenced by v4l2_get_device_list().
|
static |
|
static |
Definition at line 44 of file v4l2.c.
Referenced by mmap_init().
|
static |
|
static |
| const AVInputFormat ff_v4l2_demuxer |
1.8.17