FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | 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
 

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 OFFSET (   x)    offsetof(RawVideoDemuxerContext, x)

Definition at line 89 of file rawvideodec.c.

#define DEC   AV_OPT_FLAG_DECODING_PARAM

Definition at line 90 of file rawvideodec.c.

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 68 of file rawvideodec.c.

Variable Documentation

const AVOption rawvideo_options[]
static
Initial value:
= {
{ "video_size", "set frame size", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.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_VIDEO_RATE, {.str = "25"}, 0, 0, DEC },
{ NULL },
}

Definition at line 91 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 98 of file rawvideodec.c.

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 105 of file rawvideodec.c.