libavformat/pcmdec.c File Reference

#include "avformat.h"
#include "rawdec.h"
#include "pcm.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"

Go to the source code of this file.

Defines

#define RAW_SAMPLES   1024
#define PCMDEF(name_, long_name_, ext, codec)

Functions

static int raw_read_packet (AVFormatContext *s, AVPacket *pkt)

Variables

static const AVOption pcm_options []


Define Documentation

#define PCMDEF ( name_,
long_name_,
ext,
codec   ) 

Value:

static const AVClass name_ ## _demuxer_class = {            \
    .class_name = #name_ " demuxer",                        \
    .item_name  = av_default_item_name,                     \
    .option     = pcm_options,                              \
    .version    = LIBAVUTIL_VERSION_INT,                    \
};                                                          \
AVInputFormat ff_pcm_ ## name_ ## _demuxer = {              \
    .name           = #name_,                               \
    .long_name      = NULL_IF_CONFIG_SMALL(long_name_),     \
    .priv_data_size = sizeof(RawAudioDemuxerContext),       \
    .read_header    = ff_raw_read_header,                   \
    .read_packet    = raw_read_packet,                      \
    .read_seek      = ff_pcm_read_seek,                     \
    .flags          = AVFMT_GENERIC_INDEX,                  \
    .extensions     = ext,                                  \
    .raw_codec_id   = codec,                                \
    .priv_class     = &name_ ## _demuxer_class,             \
};

Definition at line 58 of file pcmdec.c.

#define RAW_SAMPLES   1024

Definition at line 28 of file pcmdec.c.

Referenced by raw_read_packet().


Function Documentation

static int raw_read_packet ( AVFormatContext s,
AVPacket pkt 
) [static]

Definition at line 30 of file pcmdec.c.


Variable Documentation

const AVOption pcm_options[] [static]

Initial value:

 {
    { "sample_rate", "", 0x42, AV_OPT_TYPE_INT, {.dbl = 0}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
    { "channels",    "", 0x42,    AV_OPT_TYPE_INT, {.dbl = 0}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
    { NULL },
}

Definition at line 52 of file pcmdec.c.


Generated on Fri Oct 26 02:48:02 2012 for FFmpeg by  doxygen 1.5.8