]> git.sesse.net Git - ffmpeg/blob - libavformat/idcin.c
idcin: allow seeking back to the first packet
[ffmpeg] / libavformat / idcin.c
1 /*
2  * id Quake II CIN File Demuxer
3  * Copyright (c) 2003 The ffmpeg Project
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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  * id Quake II CIN file demuxer by Mike Melanson (melanson@pcisys.net)
25  * For more information about the id CIN format, visit:
26  *   http://www.csse.monash.edu.au/~timf/
27  *
28  * CIN is a somewhat quirky and ill-defined format. Here are some notes
29  * for anyone trying to understand the technical details of this format:
30  *
31  * The format has no definite file signature. This is problematic for a
32  * general-purpose media player that wants to automatically detect file
33  * types. However, a CIN file does start with 5 32-bit numbers that
34  * specify audio and video parameters. This demuxer gets around the lack
35  * of file signature by performing sanity checks on those parameters.
36  * Probabalistically, this is a reasonable solution since the number of
37  * valid combinations of the 5 parameters is a very small subset of the
38  * total 160-bit number space.
39  *
40  * Refer to the function idcin_probe() for the precise A/V parameters
41  * that this demuxer allows.
42  *
43  * Next, each audio and video frame has a duration of 1/14 sec. If the
44  * audio sample rate is a multiple of the common frequency 22050 Hz it will
45  * divide evenly by 14. However, if the sample rate is 11025 Hz:
46  *   11025 (samples/sec) / 14 (frames/sec) = 787.5 (samples/frame)
47  * The way the CIN stores audio in this case is by storing 787 sample
48  * frames in the first audio frame and 788 sample frames in the second
49  * audio frame. Therefore, the total number of bytes in an audio frame
50  * is given as:
51  *   audio frame #0: 787 * (bytes/sample) * (# channels) bytes in frame
52  *   audio frame #1: 788 * (bytes/sample) * (# channels) bytes in frame
53  *   audio frame #2: 787 * (bytes/sample) * (# channels) bytes in frame
54  *   audio frame #3: 788 * (bytes/sample) * (# channels) bytes in frame
55  *
56  * Finally, not all id CIN creation tools agree on the resolution of the
57  * color palette, apparently. Some creation tools specify red, green, and
58  * blue palette components in terms of 6-bit VGA color DAC values which
59  * range from 0..63. Other tools specify the RGB components as full 8-bit
60  * values that range from 0..255. Since there are no markers in the file to
61  * differentiate between the two variants, this demuxer uses the following
62  * heuristic:
63  *   - load the 768 palette bytes from disk
64  *   - assume that they will need to be shifted left by 2 bits to
65  *     transform them from 6-bit values to 8-bit values
66  *   - scan through all 768 palette bytes
67  *     - if any bytes exceed 63, do not shift the bytes at all before
68  *       transmitting them to the video decoder
69  */
70
71 #include "libavutil/audioconvert.h"
72 #include "libavutil/imgutils.h"
73 #include "libavutil/intreadwrite.h"
74 #include "avformat.h"
75 #include "internal.h"
76
77 #define HUFFMAN_TABLE_SIZE (64 * 1024)
78 #define IDCIN_FPS 14
79
80 typedef struct IdcinDemuxContext {
81     int video_stream_index;
82     int audio_stream_index;
83     int audio_chunk_size1;
84     int audio_chunk_size2;
85     int block_align;
86
87     /* demux state variables */
88     int current_audio_chunk;
89     int next_chunk_is_video;
90     int audio_present;
91     int64_t first_pkt_pos;
92 } IdcinDemuxContext;
93
94 static int idcin_probe(AVProbeData *p)
95 {
96     unsigned int number;
97
98     /*
99      * This is what you could call a "probabilistic" file check: id CIN
100      * files don't have a definite file signature. In lieu of such a marker,
101      * perform sanity checks on the 5 32-bit header fields:
102      *  width, height: greater than 0, less than or equal to 1024
103      * audio sample rate: greater than or equal to 8000, less than or
104      *  equal to 48000, or 0 for no audio
105      * audio sample width (bytes/sample): 0 for no audio, or 1 or 2
106      * audio channels: 0 for no audio, or 1 or 2
107      */
108
109     /* check we have enough data to do all checks, otherwise the
110        0-padding may cause a wrong recognition */
111     if (p->buf_size < 20)
112         return 0;
113
114     /* check the video width */
115     number = AV_RL32(&p->buf[0]);
116     if ((number == 0) || (number > 1024))
117        return 0;
118
119     /* check the video height */
120     number = AV_RL32(&p->buf[4]);
121     if ((number == 0) || (number > 1024))
122        return 0;
123
124     /* check the audio sample rate */
125     number = AV_RL32(&p->buf[8]);
126     if ((number != 0) && ((number < 8000) | (number > 48000)))
127         return 0;
128
129     /* check the audio bytes/sample */
130     number = AV_RL32(&p->buf[12]);
131     if (number > 2)
132         return 0;
133
134     /* check the audio channels */
135     number = AV_RL32(&p->buf[16]);
136     if (number > 2)
137         return 0;
138
139     /* return half certainly since this check is a bit sketchy */
140     return AVPROBE_SCORE_MAX / 2;
141 }
142
143 static int idcin_read_header(AVFormatContext *s)
144 {
145     AVIOContext *pb = s->pb;
146     IdcinDemuxContext *idcin = s->priv_data;
147     AVStream *st;
148     unsigned int width, height;
149     unsigned int sample_rate, bytes_per_sample, channels;
150
151     /* get the 5 header parameters */
152     width = avio_rl32(pb);
153     height = avio_rl32(pb);
154     sample_rate = avio_rl32(pb);
155     bytes_per_sample = avio_rl32(pb);
156     channels = avio_rl32(pb);
157
158     if (av_image_check_size(width, height, 0, s) < 0)
159         return AVERROR_INVALIDDATA;
160     if (sample_rate > 0) {
161         if (sample_rate < 14 || sample_rate > INT_MAX) {
162             av_log(s, AV_LOG_ERROR, "invalid sample rate: %u\n", sample_rate);
163             return AVERROR_INVALIDDATA;
164         }
165         if (bytes_per_sample < 1 || bytes_per_sample > 2) {
166             av_log(s, AV_LOG_ERROR, "invalid bytes per sample: %u\n",
167                    bytes_per_sample);
168             return AVERROR_INVALIDDATA;
169         }
170         if (channels < 1 || channels > 2) {
171             av_log(s, AV_LOG_ERROR, "invalid channels: %u\n", channels);
172             return AVERROR_INVALIDDATA;
173         }
174         idcin->audio_present = 1;
175     } else {
176         /* if sample rate is 0, assume no audio */
177         idcin->audio_present = 0;
178     }
179
180     st = avformat_new_stream(s, NULL);
181     if (!st)
182         return AVERROR(ENOMEM);
183     avpriv_set_pts_info(st, 33, 1, IDCIN_FPS);
184     st->start_time = 0;
185     idcin->video_stream_index = st->index;
186     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
187     st->codec->codec_id = AV_CODEC_ID_IDCIN;
188     st->codec->codec_tag = 0;  /* no fourcc */
189     st->codec->width = width;
190     st->codec->height = height;
191
192     /* load up the Huffman tables into extradata */
193     st->codec->extradata_size = HUFFMAN_TABLE_SIZE;
194     st->codec->extradata = av_malloc(HUFFMAN_TABLE_SIZE);
195     if (avio_read(pb, st->codec->extradata, HUFFMAN_TABLE_SIZE) !=
196         HUFFMAN_TABLE_SIZE)
197         return AVERROR(EIO);
198
199     if (idcin->audio_present) {
200         idcin->audio_present = 1;
201         st = avformat_new_stream(s, NULL);
202         if (!st)
203             return AVERROR(ENOMEM);
204         avpriv_set_pts_info(st, 63, 1, sample_rate);
205         st->start_time = 0;
206         idcin->audio_stream_index = st->index;
207         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
208         st->codec->codec_tag = 1;
209         st->codec->channels = channels;
210         st->codec->channel_layout = channels > 1 ? AV_CH_LAYOUT_STEREO :
211                                                    AV_CH_LAYOUT_MONO;
212         st->codec->sample_rate = sample_rate;
213         st->codec->bits_per_coded_sample = bytes_per_sample * 8;
214         st->codec->bit_rate = sample_rate * bytes_per_sample * 8 * channels;
215         st->codec->block_align = idcin->block_align = bytes_per_sample * channels;
216         if (bytes_per_sample == 1)
217             st->codec->codec_id = AV_CODEC_ID_PCM_U8;
218         else
219             st->codec->codec_id = AV_CODEC_ID_PCM_S16LE;
220
221         if (sample_rate % 14 != 0) {
222             idcin->audio_chunk_size1 = (sample_rate / 14) *
223             bytes_per_sample * channels;
224             idcin->audio_chunk_size2 = (sample_rate / 14 + 1) *
225                 bytes_per_sample * channels;
226         } else {
227             idcin->audio_chunk_size1 = idcin->audio_chunk_size2 =
228                 (sample_rate / 14) * bytes_per_sample * channels;
229         }
230         idcin->current_audio_chunk = 0;
231     }
232
233     idcin->next_chunk_is_video = 1;
234     idcin->first_pkt_pos = avio_tell(s->pb);
235
236     return 0;
237 }
238
239 static int idcin_read_packet(AVFormatContext *s,
240                              AVPacket *pkt)
241 {
242     int ret;
243     unsigned int command;
244     unsigned int chunk_size;
245     IdcinDemuxContext *idcin = s->priv_data;
246     AVIOContext *pb = s->pb;
247     int i;
248     int palette_scale;
249     unsigned char r, g, b;
250     unsigned char palette_buffer[768];
251     uint32_t palette[256];
252
253     if (s->pb->eof_reached)
254         return AVERROR(EIO);
255
256     if (idcin->next_chunk_is_video) {
257         command = avio_rl32(pb);
258         if (command == 2) {
259             return AVERROR(EIO);
260         } else if (command == 1) {
261             /* trigger a palette change */
262             if (avio_read(pb, palette_buffer, 768) != 768)
263                 return AVERROR(EIO);
264             /* scale the palette as necessary */
265             palette_scale = 2;
266             for (i = 0; i < 768; i++)
267                 if (palette_buffer[i] > 63) {
268                     palette_scale = 0;
269                     break;
270                 }
271
272             for (i = 0; i < 256; i++) {
273                 r = palette_buffer[i * 3    ] << palette_scale;
274                 g = palette_buffer[i * 3 + 1] << palette_scale;
275                 b = palette_buffer[i * 3 + 2] << palette_scale;
276                 palette[i] = (r << 16) | (g << 8) | (b);
277             }
278         }
279
280         chunk_size = avio_rl32(pb);
281         /* skip the number of decoded bytes (always equal to width * height) */
282         avio_skip(pb, 4);
283         chunk_size -= 4;
284         ret= av_get_packet(pb, pkt, chunk_size);
285         if (ret < 0)
286             return ret;
287         if (command == 1) {
288             uint8_t *pal;
289
290             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE,
291                                           AVPALETTE_SIZE);
292             if (ret < 0)
293                 return ret;
294             memcpy(pal, palette, AVPALETTE_SIZE);
295             pkt->flags |= AV_PKT_FLAG_KEY;
296         }
297         pkt->stream_index = idcin->video_stream_index;
298         pkt->duration     = 1;
299     } else {
300         /* send out the audio chunk */
301         if (idcin->current_audio_chunk)
302             chunk_size = idcin->audio_chunk_size2;
303         else
304             chunk_size = idcin->audio_chunk_size1;
305         ret= av_get_packet(pb, pkt, chunk_size);
306         if (ret < 0)
307             return ret;
308         pkt->stream_index = idcin->audio_stream_index;
309         pkt->duration     = chunk_size / idcin->block_align;
310
311         idcin->current_audio_chunk ^= 1;
312     }
313
314     if (idcin->audio_present)
315         idcin->next_chunk_is_video ^= 1;
316
317     return ret;
318 }
319
320 static int idcin_read_seek(AVFormatContext *s, int stream_index,
321                            int64_t timestamp, int flags)
322 {
323     IdcinDemuxContext *idcin = s->priv_data;
324
325     if (idcin->first_pkt_pos > 0) {
326         int ret = avio_seek(s->pb, idcin->first_pkt_pos, SEEK_SET);
327         if (ret < 0)
328             return ret;
329         ff_update_cur_dts(s, s->streams[idcin->video_stream_index], 0);
330         idcin->next_chunk_is_video = 1;
331         idcin->current_audio_chunk = 0;
332         return 0;
333     }
334     return -1;
335 }
336
337 AVInputFormat ff_idcin_demuxer = {
338     .name           = "idcin",
339     .long_name      = NULL_IF_CONFIG_SMALL("id Cinematic"),
340     .priv_data_size = sizeof(IdcinDemuxContext),
341     .read_probe     = idcin_probe,
342     .read_header    = idcin_read_header,
343     .read_packet    = idcin_read_packet,
344     .read_seek      = idcin_read_seek,
345     .flags          = AVFMT_NO_BYTE_SEEK,
346 };