#include "avformat.h"
#include "riff.h"
#include "internal.h"
#include "libavcodec/get_bits.h"
Go to the source code of this file.
Data Structures | |
struct | ACTContext |
Defines | |
#define | CHUNK_SIZE 512 |
#define | RIFF_TAG MKTAG('R','I','F','F') |
#define | WAVE_TAG MKTAG('W','A','V','E') |
Functions | |
static int | probe (AVProbeData *p) |
static int | read_header (AVFormatContext *s) |
static int | read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_act_demuxer |
#define CHUNK_SIZE 512 |
static int probe | ( | AVProbeData * | p | ) | [static] |
static int read_header | ( | AVFormatContext * | s | ) | [static] |
static int read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Initial value:
{ .name = "act", .long_name = "ACT Voice file format", .priv_data_size = sizeof(ACTContext), .read_probe = probe, .read_header = read_header, .read_packet = read_packet, }