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 /* keep reference to extradata but never free it */
97 static int idcin_probe(AVProbeData
*p
)
102 * This is what you could call a "probabilistic" file check: Id CIN
103 * files don't have a definite file signature. In lieu of such a marker,
104 * perform sanity checks on the 5 32-bit header fields:
105 * width, height: greater than 0, less than or equal to 1024
106 * audio sample rate: greater than or equal to 8000, less than or
107 * equal to 48000, or 0 for no audio
108 * audio sample width (bytes/sample): 0 for no audio, or 1 or 2
109 * audio channels: 0 for no audio, or 1 or 2
112 /* cannot proceed without 20 bytes */
113 if (p
->buf_size
< 20)
116 /* check the video width */
117 number
= LE_32(&p
->buf
[0]);
118 if ((number
== 0) || (number
> 1024))
121 /* check the video height */
122 number
= LE_32(&p
->buf
[4]);
123 if ((number
== 0) || (number
> 1024))
126 /* check the audio sample rate */
127 number
= LE_32(&p
->buf
[8]);
128 if ((number
!= 0) && ((number
< 8000) | (number
> 48000)))
131 /* check the audio bytes/sample */
132 number
= LE_32(&p
->buf
[12]);
136 /* check the audio channels */
137 number
= LE_32(&p
->buf
[16]);
141 /* return half certainly since this check is a bit sketchy */
142 return AVPROBE_SCORE_MAX
/ 2;
145 static int idcin_read_header(AVFormatContext
*s
,
146 AVFormatParameters
*ap
)
148 ByteIOContext
*pb
= &s
->pb
;
149 IdcinDemuxContext
*idcin
= (IdcinDemuxContext
*)s
->priv_data
;
151 unsigned int width
, height
;
152 unsigned int sample_rate
, bytes_per_sample
, channels
;
154 /* get the 5 header parameters */
155 width
= get_le32(pb
);
156 height
= get_le32(pb
);
157 sample_rate
= get_le32(pb
);
158 bytes_per_sample
= get_le32(pb
);
159 channels
= get_le32(pb
);
161 st
= av_new_stream(s
, 0);
163 return AVERROR_NOMEM
;
164 idcin
->video_stream_index
= st
->index
;
165 st
->codec
.codec_type
= CODEC_TYPE_VIDEO
;
166 st
->codec
.codec_id
= CODEC_ID_IDCIN
;
167 st
->codec
.codec_tag
= 0; /* no fourcc */
168 st
->codec
.width
= width
;
169 st
->codec
.height
= height
;
171 /* load up the Huffman tables into extradata */
172 st
->codec
.extradata_size
= HUFFMAN_TABLE_SIZE
;
173 st
->codec
.extradata
= av_malloc(HUFFMAN_TABLE_SIZE
);
174 if (get_buffer(pb
, st
->codec
.extradata
, HUFFMAN_TABLE_SIZE
) !=
177 /* save a reference in order to transport the palette */
178 idcin
->extradata
= st
->codec
.extradata
;
180 /* if sample rate is 0, assume no audio */
182 idcin
->audio_present
= 1;
183 st
= av_new_stream(s
, 0);
185 return AVERROR_NOMEM
;
186 idcin
->audio_stream_index
= st
->index
;
187 st
->codec
.codec_type
= CODEC_TYPE_AUDIO
;
188 st
->codec
.codec_tag
= 1;
189 st
->codec
.channels
= channels
;
190 st
->codec
.sample_rate
= sample_rate
;
191 st
->codec
.bits_per_sample
= bytes_per_sample
* 8;
192 st
->codec
.bit_rate
= sample_rate
* bytes_per_sample
* 8 * channels
;
193 st
->codec
.block_align
= bytes_per_sample
* channels
;
194 if (bytes_per_sample
== 1)
195 st
->codec
.codec_id
= CODEC_ID_PCM_U8
;
197 st
->codec
.codec_id
= CODEC_ID_PCM_S16LE
;
199 if (sample_rate
% 14 != 0) {
200 idcin
->audio_chunk_size1
= (sample_rate
/ 14) *
201 bytes_per_sample
* channels
;
202 idcin
->audio_chunk_size2
= (sample_rate
/ 14 + 1) *
203 bytes_per_sample
* channels
;
205 idcin
->audio_chunk_size1
= idcin
->audio_chunk_size2
=
206 (sample_rate
/ 14) * bytes_per_sample
* channels
;
208 idcin
->current_audio_chunk
= 0;
210 idcin
->audio_present
= 1;
212 idcin
->next_chunk_is_video
= 1;
215 /* set the pts reference (1 pts = 1/90000) */
222 static int idcin_read_packet(AVFormatContext
*s
,
226 unsigned int command
;
227 unsigned int chunk_size
;
228 IdcinDemuxContext
*idcin
= (IdcinDemuxContext
*)s
->priv_data
;
229 ByteIOContext
*pb
= &s
->pb
;
230 AVPaletteControl
*palette_control
= (AVPaletteControl
*)idcin
->extradata
;
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 palette_control
->palette_changed
= 1;
244 if (get_buffer(pb
, palette_control
->palette
, 768) != 768)
246 /* scale the palette as necessary */
248 for (i
= 0; i
< 768; i
++)
249 if (palette_control
->palette
[i
] > 63) {
255 for (i
= 0; i
< 768; i
++)
256 palette_control
->palette
[i
] <<= palette_scale
;
259 chunk_size
= get_le32(pb
);
260 /* skip the number of decoded bytes (always equal to width * height) */
261 url_fseek(pb
, 4, SEEK_CUR
);
263 if (av_new_packet(pkt
, chunk_size
))
265 pkt
->stream_index
= idcin
->video_stream_index
;
266 pkt
->pts
= idcin
->pts
;
267 ret
= get_buffer(pb
, pkt
->data
, chunk_size
);
268 if (ret
!= chunk_size
)
271 /* send out the audio chunk */
272 if (idcin
->current_audio_chunk
)
273 chunk_size
= idcin
->audio_chunk_size2
;
275 chunk_size
= idcin
->audio_chunk_size1
;
276 if (av_new_packet(pkt
, chunk_size
))
278 pkt
->stream_index
= idcin
->audio_stream_index
;
279 pkt
->pts
= idcin
->pts
;
280 ret
= get_buffer(&s
->pb
, pkt
->data
, chunk_size
);
281 if (ret
!= chunk_size
)
284 idcin
->current_audio_chunk
^= 1;
285 idcin
->pts
+= FRAME_PTS_INC
;
288 if (idcin
->audio_present
)
289 idcin
->next_chunk_is_video
^= 1;
294 static int idcin_read_close(AVFormatContext
*s
)
299 static AVInputFormat idcin_iformat
= {
302 sizeof(IdcinDemuxContext
),
311 av_register_input_format(&idcin_iformat
);