2 * Id Quake II CIN File Demuxer
3 * Copyright (c) 2003 The ffmpeg Project
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * Id Quake II CIN file demuxer by Mike Melanson (melanson@pcisys.net)
23 * For more information about the Id CIN format, visit:
24 * http://www.csse.monash.edu.au/~timf/
26 * CIN is a somewhat quirky and ill-defined format. Here are some notes
27 * for anyone trying to understand the technical details of this format:
29 * The format has no definite file signature. This is problematic for a
30 * general-purpose media player that wants to automatically detect file
31 * types. However, a CIN file does start with 5 32-bit numbers that
32 * specify audio and video parameters. This demuxer gets around the lack
33 * of file signature by performing sanity checks on those parameters.
34 * Probabalistically, this is a reasonable solution since the number of
35 * valid combinations of the 5 parameters is a very small subset of the
36 * total 160-bit number space.
38 * Refer to the function idcin_probe() for the precise A/V parameters
39 * that this demuxer allows.
41 * Next, each audio and video frame has a duration of 1/14 sec. If the
42 * audio sample rate is a multiple of the common frequency 22050 Hz it will
43 * divide evenly by 14. However, if the sample rate is 11025 Hz:
44 * 11025 (samples/sec) / 14 (frames/sec) = 787.5 (samples/frame)
45 * The way the CIN stores audio in this case is by storing 787 sample
46 * frames in the first audio frame and 788 sample frames in the second
47 * audio frame. Therefore, the total number of bytes in an audio frame
49 * audio frame #0: 787 * (bytes/sample) * (# channels) bytes in frame
50 * audio frame #1: 788 * (bytes/sample) * (# channels) bytes in frame
51 * audio frame #2: 787 * (bytes/sample) * (# channels) bytes in frame
52 * audio frame #3: 788 * (bytes/sample) * (# channels) bytes in frame
54 * Finally, not all Id CIN creation tools agree on the resolution of the
55 * color palette, apparently. Some creation tools specify red, green, and
56 * blue palette components in terms of 6-bit VGA color DAC values which
57 * range from 0..63. Other tools specify the RGB components as full 8-bit
58 * values that range from 0..255. Since there are no markers in the file to
59 * differentiate between the two variants, this demuxer uses the following
61 * - load the 768 palette bytes from disk
62 * - assume that they will need to be shifted left by 2 bits to
63 * transform them from 6-bit values to 8-bit values
64 * - scan through all 768 palette bytes
65 * - if any bytes exceed 63, do not shift the bytes at all before
66 * transmitting them to the video decoder
71 #define LE_16(x) ((((uint8_t*)(x))[1] << 8) | ((uint8_t*)(x))[0])
72 #define LE_32(x) ((((uint8_t*)(x))[3] << 24) | \
73 (((uint8_t*)(x))[2] << 16) | \
74 (((uint8_t*)(x))[1] << 8) | \
77 #define HUFFMAN_TABLE_SIZE (64 * 1024)
78 #define FRAME_PTS_INC (90000 / 14)
80 typedef struct IdcinDemuxContext
{
81 int video_stream_index
;
82 int audio_stream_index
;
83 int audio_chunk_size1
;
84 int audio_chunk_size2
;
86 /* demux state variables */
87 int current_audio_chunk
;
88 int next_chunk_is_video
;
93 AVPaletteControl palctrl
;
96 static int idcin_probe(AVProbeData
*p
)
101 * This is what you could call a "probabilistic" file check: Id CIN
102 * files don't have a definite file signature. In lieu of such a marker,
103 * perform sanity checks on the 5 32-bit header fields:
104 * width, height: greater than 0, less than or equal to 1024
105 * audio sample rate: greater than or equal to 8000, less than or
106 * equal to 48000, or 0 for no audio
107 * audio sample width (bytes/sample): 0 for no audio, or 1 or 2
108 * audio channels: 0 for no audio, or 1 or 2
111 /* cannot proceed without 20 bytes */
112 if (p
->buf_size
< 20)
115 /* check the video width */
116 number
= LE_32(&p
->buf
[0]);
117 if ((number
== 0) || (number
> 1024))
120 /* check the video height */
121 number
= LE_32(&p
->buf
[4]);
122 if ((number
== 0) || (number
> 1024))
125 /* check the audio sample rate */
126 number
= LE_32(&p
->buf
[8]);
127 if ((number
!= 0) && ((number
< 8000) | (number
> 48000)))
130 /* check the audio bytes/sample */
131 number
= LE_32(&p
->buf
[12]);
135 /* check the audio channels */
136 number
= LE_32(&p
->buf
[16]);
140 /* return half certainly since this check is a bit sketchy */
141 return AVPROBE_SCORE_MAX
/ 2;
144 static int idcin_read_header(AVFormatContext
*s
,
145 AVFormatParameters
*ap
)
147 ByteIOContext
*pb
= &s
->pb
;
148 IdcinDemuxContext
*idcin
= (IdcinDemuxContext
*)s
->priv_data
;
150 unsigned int width
, height
;
151 unsigned int sample_rate
, bytes_per_sample
, channels
;
153 /* get the 5 header parameters */
154 width
= get_le32(pb
);
155 height
= get_le32(pb
);
156 sample_rate
= get_le32(pb
);
157 bytes_per_sample
= get_le32(pb
);
158 channels
= get_le32(pb
);
160 st
= av_new_stream(s
, 0);
162 return AVERROR_NOMEM
;
163 idcin
->video_stream_index
= st
->index
;
164 st
->codec
.codec_type
= CODEC_TYPE_VIDEO
;
165 st
->codec
.codec_id
= CODEC_ID_IDCIN
;
166 st
->codec
.codec_tag
= 0; /* no fourcc */
167 st
->codec
.width
= width
;
168 st
->codec
.height
= height
;
170 /* load up the Huffman tables into extradata */
171 st
->codec
.extradata_size
= HUFFMAN_TABLE_SIZE
;
172 st
->codec
.extradata
= av_malloc(HUFFMAN_TABLE_SIZE
);
173 if (get_buffer(pb
, st
->codec
.extradata
, HUFFMAN_TABLE_SIZE
) !=
176 /* save a reference in order to transport the palette */
177 st
->codec
.palctrl
= &idcin
->palctrl
;
179 /* if sample rate is 0, assume no audio */
181 idcin
->audio_present
= 1;
182 st
= av_new_stream(s
, 0);
184 return AVERROR_NOMEM
;
185 idcin
->audio_stream_index
= st
->index
;
186 st
->codec
.codec_type
= CODEC_TYPE_AUDIO
;
187 st
->codec
.codec_tag
= 1;
188 st
->codec
.channels
= channels
;
189 st
->codec
.sample_rate
= sample_rate
;
190 st
->codec
.bits_per_sample
= bytes_per_sample
* 8;
191 st
->codec
.bit_rate
= sample_rate
* bytes_per_sample
* 8 * channels
;
192 st
->codec
.block_align
= bytes_per_sample
* channels
;
193 if (bytes_per_sample
== 1)
194 st
->codec
.codec_id
= CODEC_ID_PCM_U8
;
196 st
->codec
.codec_id
= CODEC_ID_PCM_S16LE
;
198 if (sample_rate
% 14 != 0) {
199 idcin
->audio_chunk_size1
= (sample_rate
/ 14) *
200 bytes_per_sample
* channels
;
201 idcin
->audio_chunk_size2
= (sample_rate
/ 14 + 1) *
202 bytes_per_sample
* channels
;
204 idcin
->audio_chunk_size1
= idcin
->audio_chunk_size2
=
205 (sample_rate
/ 14) * bytes_per_sample
* channels
;
207 idcin
->current_audio_chunk
= 0;
209 idcin
->audio_present
= 1;
211 idcin
->next_chunk_is_video
= 1;
214 /* set the pts reference (1 pts = 1/90000) */
221 static int idcin_read_packet(AVFormatContext
*s
,
225 unsigned int command
;
226 unsigned int chunk_size
;
227 IdcinDemuxContext
*idcin
= (IdcinDemuxContext
*)s
->priv_data
;
228 ByteIOContext
*pb
= &s
->pb
;
231 unsigned char r
, g
, b
;
232 unsigned char palette_buffer
[768];
234 if (url_feof(&s
->pb
))
237 if (idcin
->next_chunk_is_video
) {
238 command
= get_le32(pb
);
241 } else if (command
== 1) {
242 /* trigger a palette change */
243 idcin
->palctrl
.palette_changed
= 1;
244 if (get_buffer(pb
, palette_buffer
, 768) != 768)
246 /* scale the palette as necessary */
248 for (i
= 0; i
< 768; i
++)
249 if (palette_buffer
[i
] > 63) {
254 for (i
= 0; i
< 256; i
++) {
255 r
= palette_buffer
[i
* 3 ] << palette_scale
;
256 g
= palette_buffer
[i
* 3 + 1] << palette_scale
;
257 b
= palette_buffer
[i
* 3 + 2] << palette_scale
;
258 idcin
->palctrl
.palette
[i
] = (r
<< 16) | (g
<< 8) | (b
);
262 chunk_size
= get_le32(pb
);
263 /* skip the number of decoded bytes (always equal to width * height) */
264 url_fseek(pb
, 4, SEEK_CUR
);
266 if (av_new_packet(pkt
, chunk_size
))
268 pkt
->stream_index
= idcin
->video_stream_index
;
269 pkt
->pts
= idcin
->pts
;
270 ret
= get_buffer(pb
, pkt
->data
, chunk_size
);
271 if (ret
!= chunk_size
)
274 /* send out the audio chunk */
275 if (idcin
->current_audio_chunk
)
276 chunk_size
= idcin
->audio_chunk_size2
;
278 chunk_size
= idcin
->audio_chunk_size1
;
279 if (av_new_packet(pkt
, chunk_size
))
281 pkt
->stream_index
= idcin
->audio_stream_index
;
282 pkt
->pts
= idcin
->pts
;
283 ret
= get_buffer(&s
->pb
, pkt
->data
, chunk_size
);
284 if (ret
!= chunk_size
)
287 idcin
->current_audio_chunk
^= 1;
288 idcin
->pts
+= FRAME_PTS_INC
;
291 if (idcin
->audio_present
)
292 idcin
->next_chunk_is_video
^= 1;
297 static int idcin_read_close(AVFormatContext
*s
)
303 static AVInputFormat idcin_iformat
= {
306 sizeof(IdcinDemuxContext
),
315 av_register_input_format(&idcin_iformat
);