Mercurial > libavformat.hg
annotate idcin.c @ 1167:d89d7ef290da libavformat
give AVInput/OutputFormat structs consistent names
| author | mru |
|---|---|
| date | Sun, 09 Jul 2006 23:40:53 +0000 |
| parents | edbe5c3717f9 |
| children | d18cc9a1fd02 |
| rev | line source |
|---|---|
| 274 | 1 /* |
| 2 * Id Quake II CIN File Demuxer | |
| 3 * Copyright (c) 2003 The ffmpeg Project | |
| 4 * | |
| 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. | |
| 9 * | |
| 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. | |
| 14 * | |
| 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 | |
|
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 274 | 18 */ |
| 19 | |
| 20 /** | |
| 21 * @file idcin.c | |
| 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/ | |
| 25 * | |
| 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: | |
| 28 * | |
| 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. | |
| 37 * | |
| 38 * Refer to the function idcin_probe() for the precise A/V parameters | |
| 39 * that this demuxer allows. | |
| 40 * | |
| 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 | |
| 48 * is given as: | |
| 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 | |
| 53 * | |
| 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 | |
| 60 * heuristic: | |
| 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 | |
| 67 */ | |
| 68 | |
| 69 #include "avformat.h" | |
| 70 | |
| 71 #define HUFFMAN_TABLE_SIZE (64 * 1024) | |
| 72 #define FRAME_PTS_INC (90000 / 14) | |
| 73 | |
| 74 typedef struct IdcinDemuxContext { | |
| 75 int video_stream_index; | |
| 76 int audio_stream_index; | |
| 77 int audio_chunk_size1; | |
| 78 int audio_chunk_size2; | |
| 79 | |
| 80 /* demux state variables */ | |
| 81 int current_audio_chunk; | |
| 82 int next_chunk_is_video; | |
| 83 int audio_present; | |
| 84 | |
| 85 int64_t pts; | |
| 86 | |
|
295
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
87 AVPaletteControl palctrl; |
| 274 | 88 } IdcinDemuxContext; |
| 89 | |
| 90 static int idcin_probe(AVProbeData *p) | |
| 91 { | |
| 92 unsigned int number; | |
| 93 | |
| 94 /* | |
| 95 * This is what you could call a "probabilistic" file check: Id CIN | |
| 96 * files don't have a definite file signature. In lieu of such a marker, | |
| 97 * perform sanity checks on the 5 32-bit header fields: | |
| 98 * width, height: greater than 0, less than or equal to 1024 | |
| 99 * audio sample rate: greater than or equal to 8000, less than or | |
| 100 * equal to 48000, or 0 for no audio | |
| 101 * audio sample width (bytes/sample): 0 for no audio, or 1 or 2 | |
| 102 * audio channels: 0 for no audio, or 1 or 2 | |
| 103 */ | |
| 104 | |
| 105 /* cannot proceed without 20 bytes */ | |
| 106 if (p->buf_size < 20) | |
| 107 return 0; | |
| 108 | |
| 109 /* check the video width */ | |
| 110 number = LE_32(&p->buf[0]); | |
| 111 if ((number == 0) || (number > 1024)) | |
| 112 return 0; | |
| 113 | |
| 114 /* check the video height */ | |
| 115 number = LE_32(&p->buf[4]); | |
| 116 if ((number == 0) || (number > 1024)) | |
| 117 return 0; | |
| 118 | |
| 119 /* check the audio sample rate */ | |
| 120 number = LE_32(&p->buf[8]); | |
| 121 if ((number != 0) && ((number < 8000) | (number > 48000))) | |
| 122 return 0; | |
| 123 | |
| 124 /* check the audio bytes/sample */ | |
| 125 number = LE_32(&p->buf[12]); | |
| 126 if (number > 2) | |
| 127 return 0; | |
| 128 | |
| 129 /* check the audio channels */ | |
| 130 number = LE_32(&p->buf[16]); | |
| 131 if (number > 2) | |
| 132 return 0; | |
| 133 | |
| 134 /* return half certainly since this check is a bit sketchy */ | |
| 135 return AVPROBE_SCORE_MAX / 2; | |
| 136 } | |
| 137 | |
| 138 static int idcin_read_header(AVFormatContext *s, | |
| 139 AVFormatParameters *ap) | |
| 140 { | |
| 141 ByteIOContext *pb = &s->pb; | |
| 142 IdcinDemuxContext *idcin = (IdcinDemuxContext *)s->priv_data; | |
| 143 AVStream *st; | |
| 144 unsigned int width, height; | |
| 145 unsigned int sample_rate, bytes_per_sample, channels; | |
| 146 | |
| 147 /* get the 5 header parameters */ | |
| 148 width = get_le32(pb); | |
| 149 height = get_le32(pb); | |
| 150 sample_rate = get_le32(pb); | |
| 151 bytes_per_sample = get_le32(pb); | |
| 152 channels = get_le32(pb); | |
| 153 | |
| 154 st = av_new_stream(s, 0); | |
| 155 if (!st) | |
| 156 return AVERROR_NOMEM; | |
|
462
b69898ffc92a
move time_base (pts_num/pts_den) from AVFormatContext -> AVStream
michael
parents:
386
diff
changeset
|
157 av_set_pts_info(st, 33, 1, 90000); |
| 274 | 158 idcin->video_stream_index = st->index; |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
159 st->codec->codec_type = CODEC_TYPE_VIDEO; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
160 st->codec->codec_id = CODEC_ID_IDCIN; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
161 st->codec->codec_tag = 0; /* no fourcc */ |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
162 st->codec->width = width; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
163 st->codec->height = height; |
| 274 | 164 |
| 165 /* load up the Huffman tables into extradata */ | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
166 st->codec->extradata_size = HUFFMAN_TABLE_SIZE; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
167 st->codec->extradata = av_malloc(HUFFMAN_TABLE_SIZE); |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
168 if (get_buffer(pb, st->codec->extradata, HUFFMAN_TABLE_SIZE) != |
| 274 | 169 HUFFMAN_TABLE_SIZE) |
| 482 | 170 return AVERROR_IO; |
| 274 | 171 /* save a reference in order to transport the palette */ |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
172 st->codec->palctrl = &idcin->palctrl; |
| 274 | 173 |
| 174 /* if sample rate is 0, assume no audio */ | |
| 175 if (sample_rate) { | |
| 176 idcin->audio_present = 1; | |
| 177 st = av_new_stream(s, 0); | |
| 178 if (!st) | |
| 179 return AVERROR_NOMEM; | |
|
462
b69898ffc92a
move time_base (pts_num/pts_den) from AVFormatContext -> AVStream
michael
parents:
386
diff
changeset
|
180 av_set_pts_info(st, 33, 1, 90000); |
| 274 | 181 idcin->audio_stream_index = st->index; |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
182 st->codec->codec_type = CODEC_TYPE_AUDIO; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
183 st->codec->codec_tag = 1; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
184 st->codec->channels = channels; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
185 st->codec->sample_rate = sample_rate; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
186 st->codec->bits_per_sample = bytes_per_sample * 8; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
187 st->codec->bit_rate = sample_rate * bytes_per_sample * 8 * channels; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
188 st->codec->block_align = bytes_per_sample * channels; |
| 274 | 189 if (bytes_per_sample == 1) |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
190 st->codec->codec_id = CODEC_ID_PCM_U8; |
| 274 | 191 else |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
192 st->codec->codec_id = CODEC_ID_PCM_S16LE; |
| 274 | 193 |
| 194 if (sample_rate % 14 != 0) { | |
| 195 idcin->audio_chunk_size1 = (sample_rate / 14) * | |
| 196 bytes_per_sample * channels; | |
| 197 idcin->audio_chunk_size2 = (sample_rate / 14 + 1) * | |
| 198 bytes_per_sample * channels; | |
| 199 } else { | |
| 200 idcin->audio_chunk_size1 = idcin->audio_chunk_size2 = | |
| 201 (sample_rate / 14) * bytes_per_sample * channels; | |
| 202 } | |
| 203 idcin->current_audio_chunk = 0; | |
| 204 } else | |
| 205 idcin->audio_present = 1; | |
| 206 | |
| 207 idcin->next_chunk_is_video = 1; | |
| 208 idcin->pts = 0; | |
| 209 | |
| 210 return 0; | |
| 211 } | |
| 212 | |
| 213 static int idcin_read_packet(AVFormatContext *s, | |
| 214 AVPacket *pkt) | |
| 215 { | |
| 216 int ret; | |
| 217 unsigned int command; | |
| 218 unsigned int chunk_size; | |
| 219 IdcinDemuxContext *idcin = (IdcinDemuxContext *)s->priv_data; | |
| 220 ByteIOContext *pb = &s->pb; | |
| 221 int i; | |
| 222 int palette_scale; | |
|
295
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
223 unsigned char r, g, b; |
|
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
224 unsigned char palette_buffer[768]; |
| 274 | 225 |
| 226 if (url_feof(&s->pb)) | |
| 482 | 227 return AVERROR_IO; |
| 274 | 228 |
| 229 if (idcin->next_chunk_is_video) { | |
| 230 command = get_le32(pb); | |
| 231 if (command == 2) { | |
| 482 | 232 return AVERROR_IO; |
| 274 | 233 } else if (command == 1) { |
| 234 /* trigger a palette change */ | |
|
295
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
235 idcin->palctrl.palette_changed = 1; |
|
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
236 if (get_buffer(pb, palette_buffer, 768) != 768) |
| 482 | 237 return AVERROR_IO; |
| 274 | 238 /* scale the palette as necessary */ |
| 239 palette_scale = 2; | |
| 240 for (i = 0; i < 768; i++) | |
|
295
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
241 if (palette_buffer[i] > 63) { |
| 274 | 242 palette_scale = 0; |
| 243 break; | |
| 244 } | |
| 245 | |
|
295
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
246 for (i = 0; i < 256; i++) { |
|
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
247 r = palette_buffer[i * 3 ] << palette_scale; |
|
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
248 g = palette_buffer[i * 3 + 1] << palette_scale; |
|
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
249 b = palette_buffer[i * 3 + 2] << palette_scale; |
|
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
250 idcin->palctrl.palette[i] = (r << 16) | (g << 8) | (b); |
|
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
251 } |
| 274 | 252 } |
| 253 | |
| 254 chunk_size = get_le32(pb); | |
| 255 /* skip the number of decoded bytes (always equal to width * height) */ | |
| 256 url_fseek(pb, 4, SEEK_CUR); | |
| 257 chunk_size -= 4; | |
| 885 | 258 ret= av_get_packet(pb, pkt, chunk_size); |
| 775 | 259 if (ret != chunk_size) |
| 260 return AVERROR_IO; | |
| 274 | 261 pkt->stream_index = idcin->video_stream_index; |
| 262 pkt->pts = idcin->pts; | |
| 263 } else { | |
| 264 /* send out the audio chunk */ | |
| 265 if (idcin->current_audio_chunk) | |
| 266 chunk_size = idcin->audio_chunk_size2; | |
| 267 else | |
| 268 chunk_size = idcin->audio_chunk_size1; | |
| 775 | 269 ret= av_get_packet(pb, pkt, chunk_size); |
| 270 if (ret != chunk_size) | |
| 482 | 271 return AVERROR_IO; |
| 274 | 272 pkt->stream_index = idcin->audio_stream_index; |
| 273 pkt->pts = idcin->pts; | |
| 274 | |
| 275 idcin->current_audio_chunk ^= 1; | |
| 276 idcin->pts += FRAME_PTS_INC; | |
| 277 } | |
| 278 | |
| 279 if (idcin->audio_present) | |
| 280 idcin->next_chunk_is_video ^= 1; | |
| 281 | |
| 282 return ret; | |
| 283 } | |
| 284 | |
| 285 static int idcin_read_close(AVFormatContext *s) | |
| 286 { | |
|
295
bff1a372ae38
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
274
diff
changeset
|
287 |
| 274 | 288 return 0; |
| 289 } | |
| 290 | |
| 1167 | 291 static AVInputFormat idcin_demuxer = { |
| 274 | 292 "idcin", |
| 293 "Id CIN format", | |
| 294 sizeof(IdcinDemuxContext), | |
| 295 idcin_probe, | |
| 296 idcin_read_header, | |
| 297 idcin_read_packet, | |
| 298 idcin_read_close, | |
| 299 }; | |
| 300 | |
| 301 int idcin_init(void) | |
| 302 { | |
| 1167 | 303 av_register_input_format(&idcin_demuxer); |
| 274 | 304 return 0; |
| 305 } |
