1 /*
2 * American Laser Games MM Format Demuxer
3 * Copyright (c) 2006 Peter Ross
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 /**
23 * @file
24 * American Laser Games MM Format Demuxer
25 * by Peter Ross (pross@xvid.org)
26 *
27 * The MM format was used by IBM-PC ports of ALG's "arcade shooter" games,
28 * including Mad Dog McCree and Crime Patrol.
29 *
30 * Technical details here:
31 * http://wiki.multimedia.cx/index.php?title=American_Laser_Games_MM
32 */
33
38
39 #define MM_PREAMBLE_SIZE 6
40
41 #define MM_TYPE_HEADER 0x0
42 #define MM_TYPE_INTER 0x5
43 #define MM_TYPE_INTRA 0x8
44 #define MM_TYPE_INTRA_HH 0xc
45 #define MM_TYPE_INTER_HH 0xd
46 #define MM_TYPE_INTRA_HHV 0xe
47 #define MM_TYPE_INTER_HHV 0xf
48 #define MM_TYPE_AUDIO 0x15
49 #define MM_TYPE_PALETTE 0x31
50
51 #define MM_HEADER_LEN_V 0x16 /* video only */
52 #define MM_HEADER_LEN_AV 0x18 /* video + audio */
53
54 #define MM_PALETTE_COUNT 128
55 #define MM_PALETTE_SIZE (MM_PALETTE_COUNT*3)
56
60
62 {
65 return 0;
66 /* the first chunk is always the header */
68 return 0;
71 return 0;
75 if (!fps || fps > 60 || !
w ||
w > 2048 || !
h ||
h > 2048)
76 return 0;
79 return 0;
80
81 /* only return half certainty since this check is a bit sketchy */
83 }
84
86 {
90
91 unsigned int type, length;
93
96
99
100 /* read header */
101 avio_rl16(pb);
/* total number of chunks */
103 avio_rl16(pb);
/* ibm-pc video bios mode */
106 avio_skip(pb, length - 10);
/* unknown data */
107
108 /* video stream */
110 if (!st)
118
119 /* audio stream */
122 if (!st)
130 }
131
134 return 0;
135 }
136
139 {
143 unsigned int type, length;
145
146 while(1) {
147
150 }
151
153 length =
AV_RL16(&preamble[2]);
154
163 /* output preamble + data */
174 return 0;
175
177 if (
s->nb_streams < 2)
183 return 0;
184
185 default :
188 }
189 }
190 }
191
199 };