#include "avformat.h"
#include "rawdec.h"
#include "pcm.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) |
#define PCMDEF | ( | name, | |||
long_name, | |||||
ext, | |||||
codec | ) |
Value:
AVInputFormat ff_pcm_ ## name ## _demuxer = {\ #name,\ NULL_IF_CONFIG_SMALL(long_name),\ sizeof(RawAudioDemuxerContext),\ NULL,\ ff_raw_read_header,\ raw_read_packet,\ NULL,\ pcm_read_seek,\ .flags= AVFMT_GENERIC_INDEX,\ .extensions = ext,\ .value = codec,\ .priv_class = &ff_rawaudio_demuxer_class,\ };
#define RAW_SAMPLES 1024 |
static int raw_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |