#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | MaxisXADemuxContext |
Defines | |
#define | XA00_TAG MKTAG('X', 'A', 0, 0) |
#define | XAI0_TAG MKTAG('X', 'A', 'I', 0) |
#define | XAJ0_TAG MKTAG('X', 'A', 'J', 0) |
Functions | |
static int | xa_probe (AVProbeData *p) |
static int | xa_read_header (AVFormatContext *s, AVFormatParameters *ap) |
static int | xa_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_xa_demuxer |
Definition in file xa.c.
#define XA00_TAG MKTAG('X', 'A', 0, 0) |
#define XAI0_TAG MKTAG('X', 'A', 'I', 0) |
#define XAJ0_TAG MKTAG('X', 'A', 'J', 0) |
static int xa_probe | ( | AVProbeData * | p | ) | [static] |
static int xa_read_header | ( | AVFormatContext * | s, | |
AVFormatParameters * | ap | |||
) | [static] |
static int xa_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Initial value:
{ .name = "xa", .long_name = NULL_IF_CONFIG_SMALL("Maxis XA File Format"), .priv_data_size = sizeof(MaxisXADemuxContext), .read_probe = xa_probe, .read_header = xa_read_header, .read_packet = xa_read_packet, }