FFmpeg  1.2.12
Data Structures | Macros | Typedefs | Functions | Variables
rawvideodec.c File Reference
#include "libavutil/parseutils.h"
#include "libavutil/pixdesc.h"
#include "libavutil/opt.h"
#include "internal.h"
#include "avformat.h"

Go to the source code of this file.

Data Structures

struct  RawVideoDemuxerContext

Macros

#define OFFSET(x)   offsetof(RawVideoDemuxerContext, x)
#define DEC   AV_OPT_FLAG_DECODING_PARAM

Typedefs

typedef struct
RawVideoDemuxerContext 
RawVideoDemuxerContext

Functions

static int rawvideo_read_header (AVFormatContext *ctx)
static int rawvideo_read_packet (AVFormatContext *s, AVPacket *pkt)

Variables

static const AVOption rawvideo_options []
static const AVClass rawvideo_demuxer_class
AVInputFormat ff_rawvideo_demuxer

Macro Definition Documentation

#define DEC   AV_OPT_FLAG_DECODING_PARAM

Definition at line 104 of file rawvideodec.c.

#define OFFSET (   x)    offsetof(RawVideoDemuxerContext, x)

Definition at line 103 of file rawvideodec.c.

Typedef Documentation

Function Documentation

static int rawvideo_read_header ( AVFormatContext ctx)
static

Definition at line 36 of file rawvideodec.c.

static int rawvideo_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 82 of file rawvideodec.c.

Variable Documentation

AVInputFormat ff_rawvideo_demuxer
Initial value:
{
.name = "rawvideo",
.long_name = NULL_IF_CONFIG_SMALL("raw video"),
.priv_data_size = sizeof(RawVideoDemuxerContext),
.extensions = "yuv,cif,qcif,rgb",
.raw_codec_id = AV_CODEC_ID_RAWVIDEO,
.priv_class = &rawvideo_demuxer_class,
}

Definition at line 119 of file rawvideodec.c.

const AVClass rawvideo_demuxer_class
static
Initial value:
{
.class_name = "rawvideo demuxer",
.item_name = av_default_item_name,
.option = rawvideo_options,
}

Definition at line 112 of file rawvideodec.c.

const AVOption rawvideo_options[]
static
Initial value:
{
{ "video_size", "set frame size", OFFSET(video_size), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
{ "pixel_format", "set pixel format", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = "yuv420p"}, 0, 0, DEC },
{ "framerate", "set frame rate", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = "25"}, 0, 0, DEC },
{ NULL },
}

Definition at line 105 of file rawvideodec.c.