Libav
Data Structures | Macros | Functions | Variables
cdxl.c File Reference
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/parseutils.h"
#include "libavutil/opt.h"
#include "avformat.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  CDXLDemuxContext
 

Macros

#define CDXL_HEADER_SIZE   32
 
#define OFFSET(x)   offsetof(CDXLDemuxContext, x)
 

Functions

static int cdxl_read_header (AVFormatContext *s)
 
static int cdxl_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

static const AVOption cdxl_options []
 
static const AVClass cdxl_demuxer_class
 
AVInputFormat ff_cdxl_demuxer
 

Macro Definition Documentation

§ CDXL_HEADER_SIZE

#define CDXL_HEADER_SIZE   32

Definition at line 29 of file cdxl.c.

Referenced by cdxl_read_packet().

§ OFFSET

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

Definition at line 165 of file cdxl.c.

Function Documentation

§ cdxl_read_header()

static int cdxl_read_header ( AVFormatContext s)
static

Definition at line 42 of file cdxl.c.

§ cdxl_read_packet()

static int cdxl_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 62 of file cdxl.c.

Variable Documentation

§ cdxl_options

const AVOption cdxl_options[]
static
Initial value:
= {
{ "sample_rate", "", OFFSET(sample_rate), AV_OPT_TYPE_INT, { .i64 = 11025 }, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
{ "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
{ NULL },
}
#define OFFSET(x)
Definition: cdxl.c:165
NULL
Definition: eval.c:55
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
Definition: opt.h:265

Definition at line 166 of file cdxl.c.

§ cdxl_demuxer_class

const AVClass cdxl_demuxer_class
static
Initial value:
= {
.class_name = "CDXL demuxer",
.item_name = av_default_item_name,
.option = cdxl_options,
}
static const AVOption cdxl_options[]
Definition: cdxl.c:166
LIBAVUTIL_VERSION_INT
Definition: eval.c:55
av_default_item_name
Definition: dnxhdenc.c:52

Definition at line 172 of file cdxl.c.

§ ff_cdxl_demuxer

AVInputFormat ff_cdxl_demuxer
Initial value:
= {
.name = "cdxl",
.long_name = NULL_IF_CONFIG_SMALL("Commodore CDXL video"),
.priv_data_size = sizeof(CDXLDemuxContext),
.extensions = "cdxl,xl",
.priv_class = &cdxl_demuxer_class,
}
static const AVClass cdxl_demuxer_class
Definition: cdxl.c:172
static int flags
Definition: log.c:44
static int cdxl_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: cdxl.c:62
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:145
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:544
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition: libcdio.c:114
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:417
static int cdxl_read_header(AVFormatContext *s)
Definition: cdxl.c:42

Definition at line 179 of file cdxl.c.