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)

Typedefs

typedef struct CDXLDemuxContext CDXLDemuxContext

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

#define CDXL_HEADER_SIZE   32

Definition at line 29 of file cdxl.c.

Referenced by cdxl_read_packet().

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

Definition at line 165 of file cdxl.c.

Typedef Documentation

Function Documentation

static int cdxl_read_header ( AVFormatContext s)
static

Definition at line 42 of file cdxl.c.

static int cdxl_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 62 of file cdxl.c.

Variable Documentation

const AVClass cdxl_demuxer_class
static
Initial value:
{
.class_name = "CDXL demuxer",
.item_name = av_default_item_name,
.option = cdxl_options,
}

Definition at line 172 of file cdxl.c.

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 },
}

Definition at line 166 of file cdxl.c.

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",
.flags = AVFMT_GENERIC_INDEX,
.priv_class = &cdxl_demuxer_class,
}

Definition at line 179 of file cdxl.c.