#include "config.h"#include "libavformat/avformat.h"#include "libavformat/internal.h"#include "libavutil/log.h"#include "libavutil/mathematics.h"#include "libavutil/opt.h"#include "libavutil/parseutils.h"#include "libavutil/pixdesc.h"Go to the source code of this file.
Data Structures | |
| struct | dc1394_data |
| struct | dc1394_frame_format |
| struct | dc1394_frame_rate |
Defines | |
| #define | OFFSET(x) offsetof(dc1394_data, x) |
| #define | DEC AV_OPT_FLAG_DECODING_PARAM |
Functions | |
| static int | dc1394_read_common (AVFormatContext *c, struct dc1394_frame_format **select_fmt, struct dc1394_frame_rate **select_fps) |
Variables | |
| struct dc1394_frame_format | dc1394_frame_formats [] |
| struct dc1394_frame_rate | dc1394_frame_rates [] |
| static const AVOption | options [] |
| static const AVClass | libdc1394_class |
| #define DEC AV_OPT_FLAG_DECODING_PARAM |
Definition at line 101 of file libdc1394.c.
| #define OFFSET | ( | x | ) | offsetof(dc1394_data, x) |
Definition at line 100 of file libdc1394.c.
| static int dc1394_read_common | ( | AVFormatContext * | c, | |
| struct dc1394_frame_format ** | select_fmt, | |||
| struct dc1394_frame_rate ** | select_fps | |||
| ) | [inline, static] |
Definition at line 120 of file libdc1394.c.
| struct dc1394_frame_format dc1394_frame_formats[] |
Referenced by dc1394_read_common().
| struct dc1394_frame_rate dc1394_frame_rates[] |
Referenced by dc1394_read_common().
const AVClass libdc1394_class [static] |
Initial value:
{
.class_name = "libdc1394 indev",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,
}
Definition at line 112 of file libdc1394.c.
Initial value:
{
{ "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), AV_OPT_TYPE_STRING, {.str = "qvga"}, 0, 0, DEC },
{ "pixel_format", "", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = "uyvy422"}, 0, 0, DEC },
{ "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = "ntsc"}, 0, 0, DEC },
{ NULL },
}
Definition at line 102 of file libdc1394.c.
1.5.8