#include "libavutil/intreadwrite.h"
#include "avformat.h"
Go to the source code of this file.
Data Structures | |
struct | MmDemuxContext |
Defines | |
#define | MM_PREAMBLE_SIZE 6 |
#define | MM_TYPE_HEADER 0x0 |
#define | MM_TYPE_INTER 0x5 |
#define | MM_TYPE_INTRA 0x8 |
#define | MM_TYPE_INTRA_HH 0xc |
#define | MM_TYPE_INTER_HH 0xd |
#define | MM_TYPE_INTRA_HHV 0xe |
#define | MM_TYPE_INTER_HHV 0xf |
#define | MM_TYPE_AUDIO 0x15 |
#define | MM_TYPE_PALETTE 0x31 |
#define | MM_HEADER_LEN_V 0x16 |
#define | MM_HEADER_LEN_AV 0x18 |
#define | MM_PALETTE_COUNT 128 |
#define | MM_PALETTE_SIZE (MM_PALETTE_COUNT*3) |
Functions | |
static int | mm_probe (AVProbeData *p) |
static int | mm_read_header (AVFormatContext *s, AVFormatParameters *ap) |
static int | mm_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | mm_demuxer |
The MM format was used by IBM-PC ports of ALG's "arcade shooter" games, including Mad Dog McCree and Crime Patrol.
Technical details here: http://wiki.multimedia.cx/index.php?title=American_Laser_Games_MM
Definition in file mm.c.
#define MM_HEADER_LEN_AV 0x18 |
#define MM_HEADER_LEN_V 0x16 |
#define MM_TYPE_AUDIO 0x15 |
#define MM_TYPE_HEADER 0x0 |
static int mm_probe | ( | AVProbeData * | p | ) | [static] |
static int mm_read_header | ( | AVFormatContext * | s, | |
AVFormatParameters * | ap | |||
) | [static] |
static int mm_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Initial value:
{ "mm", NULL_IF_CONFIG_SMALL("American Laser Games MM format"), sizeof(MmDemuxContext), mm_probe, mm_read_header, mm_read_packet, }