idcin.c 9.96 KB
Newer Older
1
/*
2
 * id Quake II CIN File Demuxer
3 4
 * Copyright (c) 2003 The ffmpeg Project
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * 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 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * 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 idcin.c
24 25
 * id Quake II CIN file demuxer by Mike Melanson (melanson@pcisys.net)
 * For more information about the id CIN format, visit:
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
 *   http://www.csse.monash.edu.au/~timf/
 *
 * CIN is a somewhat quirky and ill-defined format. Here are some notes
 * for anyone trying to understand the technical details of this format:
 *
 * The format has no definite file signature. This is problematic for a
 * general-purpose media player that wants to automatically detect file
 * types. However, a CIN file does start with 5 32-bit numbers that
 * specify audio and video parameters. This demuxer gets around the lack
 * of file signature by performing sanity checks on those parameters.
 * Probabalistically, this is a reasonable solution since the number of
 * valid combinations of the 5 parameters is a very small subset of the
 * total 160-bit number space.
 *
 * Refer to the function idcin_probe() for the precise A/V parameters
 * that this demuxer allows.
 *
 * Next, each audio and video frame has a duration of 1/14 sec. If the
 * audio sample rate is a multiple of the common frequency 22050 Hz it will
 * divide evenly by 14. However, if the sample rate is 11025 Hz:
 *   11025 (samples/sec) / 14 (frames/sec) = 787.5 (samples/frame)
 * The way the CIN stores audio in this case is by storing 787 sample
 * frames in the first audio frame and 788 sample frames in the second
 * audio frame. Therefore, the total number of bytes in an audio frame
 * is given as:
 *   audio frame #0: 787 * (bytes/sample) * (# channels) bytes in frame
 *   audio frame #1: 788 * (bytes/sample) * (# channels) bytes in frame
 *   audio frame #2: 787 * (bytes/sample) * (# channels) bytes in frame
 *   audio frame #3: 788 * (bytes/sample) * (# channels) bytes in frame
 *
56
 * Finally, not all id CIN creation tools agree on the resolution of the
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
 * color palette, apparently. Some creation tools specify red, green, and
 * blue palette components in terms of 6-bit VGA color DAC values which
 * range from 0..63. Other tools specify the RGB components as full 8-bit
 * values that range from 0..255. Since there are no markers in the file to
 * differentiate between the two variants, this demuxer uses the following
 * heuristic:
 *   - load the 768 palette bytes from disk
 *   - assume that they will need to be shifted left by 2 bits to
 *     transform them from 6-bit values to 8-bit values
 *   - scan through all 768 palette bytes
 *     - if any bytes exceed 63, do not shift the bytes at all before
 *       transmitting them to the video decoder
 */

#include "avformat.h"

#define HUFFMAN_TABLE_SIZE (64 * 1024)
74
#define IDCIN_FPS 14
75 76 77 78 79 80 81 82 83 84 85 86 87 88

typedef struct IdcinDemuxContext {
    int video_stream_index;
    int audio_stream_index;
    int audio_chunk_size1;
    int audio_chunk_size2;

    /* demux state variables */
    int current_audio_chunk;
    int next_chunk_is_video;
    int audio_present;

    int64_t pts;

89
    AVPaletteControl palctrl;
90 91 92 93 94 95 96
} IdcinDemuxContext;

static int idcin_probe(AVProbeData *p)
{
    unsigned int number;

    /*
97
     * This is what you could call a "probabilistic" file check: id CIN
98 99 100 101 102 103 104 105 106 107
     * files don't have a definite file signature. In lieu of such a marker,
     * perform sanity checks on the 5 32-bit header fields:
     *  width, height: greater than 0, less than or equal to 1024
     * audio sample rate: greater than or equal to 8000, less than or
     *  equal to 48000, or 0 for no audio
     * audio sample width (bytes/sample): 0 for no audio, or 1 or 2
     * audio channels: 0 for no audio, or 1 or 2
     */

    /* check the video width */
108
    number = AV_RL32(&p->buf[0]);
109 110 111 112
    if ((number == 0) || (number > 1024))
       return 0;

    /* check the video height */
113
    number = AV_RL32(&p->buf[4]);
114 115 116 117
    if ((number == 0) || (number > 1024))
       return 0;

    /* check the audio sample rate */
118
    number = AV_RL32(&p->buf[8]);
119 120 121 122
    if ((number != 0) && ((number < 8000) | (number > 48000)))
        return 0;

    /* check the audio bytes/sample */
123
    number = AV_RL32(&p->buf[12]);
124 125 126 127
    if (number > 2)
        return 0;

    /* check the audio channels */
128
    number = AV_RL32(&p->buf[16]);
129 130 131 132 133 134 135 136 137 138
    if (number > 2)
        return 0;

    /* return half certainly since this check is a bit sketchy */
    return AVPROBE_SCORE_MAX / 2;
}

static int idcin_read_header(AVFormatContext *s,
                             AVFormatParameters *ap)
{
139
    ByteIOContext *pb = s->pb;
140
    IdcinDemuxContext *idcin = s->priv_data;
141 142 143 144 145 146 147 148 149 150 151 152 153
    AVStream *st;
    unsigned int width, height;
    unsigned int sample_rate, bytes_per_sample, channels;

    /* get the 5 header parameters */
    width = get_le32(pb);
    height = get_le32(pb);
    sample_rate = get_le32(pb);
    bytes_per_sample = get_le32(pb);
    channels = get_le32(pb);

    st = av_new_stream(s, 0);
    if (!st)
154
        return AVERROR(ENOMEM);
155
    av_set_pts_info(st, 33, 1, IDCIN_FPS);
156
    idcin->video_stream_index = st->index;
157 158 159 160 161
    st->codec->codec_type = CODEC_TYPE_VIDEO;
    st->codec->codec_id = CODEC_ID_IDCIN;
    st->codec->codec_tag = 0;  /* no fourcc */
    st->codec->width = width;
    st->codec->height = height;
162 163

    /* load up the Huffman tables into extradata */
164 165 166
    st->codec->extradata_size = HUFFMAN_TABLE_SIZE;
    st->codec->extradata = av_malloc(HUFFMAN_TABLE_SIZE);
    if (get_buffer(pb, st->codec->extradata, HUFFMAN_TABLE_SIZE) !=
167
        HUFFMAN_TABLE_SIZE)
168
        return AVERROR(EIO);
169
    /* save a reference in order to transport the palette */
170
    st->codec->palctrl = &idcin->palctrl;
171 172 173 174 175 176

    /* if sample rate is 0, assume no audio */
    if (sample_rate) {
        idcin->audio_present = 1;
        st = av_new_stream(s, 0);
        if (!st)
177
            return AVERROR(ENOMEM);
178
        av_set_pts_info(st, 33, 1, IDCIN_FPS);
179
        idcin->audio_stream_index = st->index;
180 181 182 183
        st->codec->codec_type = CODEC_TYPE_AUDIO;
        st->codec->codec_tag = 1;
        st->codec->channels = channels;
        st->codec->sample_rate = sample_rate;
184
        st->codec->bits_per_coded_sample = bytes_per_sample * 8;
185 186
        st->codec->bit_rate = sample_rate * bytes_per_sample * 8 * channels;
        st->codec->block_align = bytes_per_sample * channels;
187
        if (bytes_per_sample == 1)
188
            st->codec->codec_id = CODEC_ID_PCM_U8;
189
        else
190
            st->codec->codec_id = CODEC_ID_PCM_S16LE;
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216

        if (sample_rate % 14 != 0) {
            idcin->audio_chunk_size1 = (sample_rate / 14) *
            bytes_per_sample * channels;
            idcin->audio_chunk_size2 = (sample_rate / 14 + 1) *
                bytes_per_sample * channels;
        } else {
            idcin->audio_chunk_size1 = idcin->audio_chunk_size2 =
                (sample_rate / 14) * bytes_per_sample * channels;
        }
        idcin->current_audio_chunk = 0;
    } else
        idcin->audio_present = 1;

    idcin->next_chunk_is_video = 1;
    idcin->pts = 0;

    return 0;
}

static int idcin_read_packet(AVFormatContext *s,
                             AVPacket *pkt)
{
    int ret;
    unsigned int command;
    unsigned int chunk_size;
217
    IdcinDemuxContext *idcin = s->priv_data;
218
    ByteIOContext *pb = s->pb;
219 220
    int i;
    int palette_scale;
221 222
    unsigned char r, g, b;
    unsigned char palette_buffer[768];
223

224
    if (url_feof(s->pb))
225
        return AVERROR(EIO);
226 227 228 229

    if (idcin->next_chunk_is_video) {
        command = get_le32(pb);
        if (command == 2) {
230
            return AVERROR(EIO);
231 232
        } else if (command == 1) {
            /* trigger a palette change */
233 234
            idcin->palctrl.palette_changed = 1;
            if (get_buffer(pb, palette_buffer, 768) != 768)
235
                return AVERROR(EIO);
236 237 238
            /* scale the palette as necessary */
            palette_scale = 2;
            for (i = 0; i < 768; i++)
239
                if (palette_buffer[i] > 63) {
240 241 242 243
                    palette_scale = 0;
                    break;
                }

244 245 246 247 248 249
            for (i = 0; i < 256; i++) {
                r = palette_buffer[i * 3    ] << palette_scale;
                g = palette_buffer[i * 3 + 1] << palette_scale;
                b = palette_buffer[i * 3 + 2] << palette_scale;
                idcin->palctrl.palette[i] = (r << 16) | (g << 8) | (b);
            }
250 251 252 253 254 255
        }

        chunk_size = get_le32(pb);
        /* skip the number of decoded bytes (always equal to width * height) */
        url_fseek(pb, 4, SEEK_CUR);
        chunk_size -= 4;
256
        ret= av_get_packet(pb, pkt, chunk_size);
Michael Niedermayer's avatar
Michael Niedermayer committed
257
        if (ret != chunk_size)
258
            return AVERROR(EIO);
259 260 261 262 263 264 265 266
        pkt->stream_index = idcin->video_stream_index;
        pkt->pts = idcin->pts;
    } else {
        /* send out the audio chunk */
        if (idcin->current_audio_chunk)
            chunk_size = idcin->audio_chunk_size2;
        else
            chunk_size = idcin->audio_chunk_size1;
Michael Niedermayer's avatar
Michael Niedermayer committed
267 268
        ret= av_get_packet(pb, pkt, chunk_size);
        if (ret != chunk_size)
269
            return AVERROR(EIO);
270 271 272 273
        pkt->stream_index = idcin->audio_stream_index;
        pkt->pts = idcin->pts;

        idcin->current_audio_chunk ^= 1;
274
        idcin->pts++;
275 276 277 278 279 280 281 282
    }

    if (idcin->audio_present)
        idcin->next_chunk_is_video ^= 1;

    return ret;
}

283
AVInputFormat idcin_demuxer = {
284
    "idcin",
285
    NULL_IF_CONFIG_SMALL("id CIN format"),
286 287 288 289 290
    sizeof(IdcinDemuxContext),
    idcin_probe,
    idcin_read_header,
    idcin_read_packet,
};