idroqdec.c 7.21 KB
Newer Older
1
/*
2
 * id RoQ (.roq) 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
24
 * id RoQ format file demuxer
25 26 27 28 29
 * by Mike Melanson (melanson@pcisys.net)
 * for more information on the .roq file format, visit:
 *   http://www.csse.monash.edu.au/~timf/
 */

30
#include "libavutil/intreadwrite.h"
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 56 57 58 59
#include "avformat.h"

#define RoQ_MAGIC_NUMBER 0x1084
#define RoQ_CHUNK_PREAMBLE_SIZE 8
#define RoQ_AUDIO_SAMPLE_RATE 22050
#define RoQ_CHUNKS_TO_SCAN 30

#define RoQ_INFO           0x1001
#define RoQ_QUAD_CODEBOOK  0x1002
#define RoQ_QUAD_VQ        0x1011
#define RoQ_SOUND_MONO     0x1020
#define RoQ_SOUND_STEREO   0x1021

typedef struct RoqDemuxContext {

    int width;
    int height;
    int audio_channels;

    int video_stream_index;
    int audio_stream_index;

    int64_t video_pts;
    unsigned int audio_frame_count;

} RoqDemuxContext;

static int roq_probe(AVProbeData *p)
{
60 61
    if ((AV_RL16(&p->buf[0]) != RoQ_MAGIC_NUMBER) ||
        (AV_RL32(&p->buf[2]) != 0xFFFFFFFF))
62 63 64 65 66 67 68 69 70
        return 0;

    return AVPROBE_SCORE_MAX;
}

static int roq_read_header(AVFormatContext *s,
                           AVFormatParameters *ap)
{
    RoqDemuxContext *roq = s->priv_data;
71
    ByteIOContext *pb = s->pb;
72
    int framerate;
73 74 75 76
    AVStream *st;
    unsigned char preamble[RoQ_CHUNK_PREAMBLE_SIZE];

    /* get the main header */
77
    if (get_buffer(pb, preamble, RoQ_CHUNK_PREAMBLE_SIZE) !=
78
        RoQ_CHUNK_PREAMBLE_SIZE)
79
        return AVERROR(EIO);
80
    framerate = AV_RL16(&preamble[6]);
81 82

    /* init private context parameters */
83
    roq->width = roq->height = roq->audio_channels = roq->video_pts =
84
    roq->audio_frame_count = 0;
85
    roq->audio_stream_index = -1;
86 87 88

    st = av_new_stream(s, 0);
    if (!st)
89
        return AVERROR(ENOMEM);
90
    av_set_pts_info(st, 63, 1, framerate);
91
    roq->video_stream_index = st->index;
92
    st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
93 94
    st->codec->codec_id = CODEC_ID_ROQ;
    st->codec->codec_tag = 0;  /* no fourcc */
95 96 97 98 99 100 101 102

    return 0;
}

static int roq_read_packet(AVFormatContext *s,
                           AVPacket *pkt)
{
    RoqDemuxContext *roq = s->priv_data;
103
    ByteIOContext *pb = s->pb;
104 105 106 107 108 109
    int ret = 0;
    unsigned int chunk_size;
    unsigned int chunk_type;
    unsigned int codebook_size;
    unsigned char preamble[RoQ_CHUNK_PREAMBLE_SIZE];
    int packet_read = 0;
110
    int64_t codebook_offset;
111 112 113

    while (!packet_read) {

114
        if (url_feof(s->pb))
115
            return AVERROR(EIO);
116 117

        /* get the next chunk preamble */
118
        if ((ret = get_buffer(pb, preamble, RoQ_CHUNK_PREAMBLE_SIZE)) !=
119
            RoQ_CHUNK_PREAMBLE_SIZE)
120
            return AVERROR(EIO);
121

122 123
        chunk_type = AV_RL16(&preamble[0]);
        chunk_size = AV_RL32(&preamble[2]);
124 125
        if(chunk_size > INT_MAX)
            return AVERROR_INVALIDDATA;
126 127 128 129

        switch (chunk_type) {

        case RoQ_INFO:
130 131 132 133 134 135 136 137
            if (!roq->width || !roq->height) {
                AVStream *st = s->streams[roq->video_stream_index];
                if (get_buffer(pb, preamble, RoQ_CHUNK_PREAMBLE_SIZE) != RoQ_CHUNK_PREAMBLE_SIZE)
                    return AVERROR(EIO);
                st->codec->width  = roq->width  = AV_RL16(preamble);
                st->codec->height = roq->height = AV_RL16(preamble + 2);
                break;
            }
138 139 140 141 142 143 144 145 146
            /* don't care about this chunk anymore */
            url_fseek(pb, RoQ_CHUNK_PREAMBLE_SIZE, SEEK_CUR);
            break;

        case RoQ_QUAD_CODEBOOK:
            /* packet needs to contain both this codebook and next VQ chunk */
            codebook_offset = url_ftell(pb) - RoQ_CHUNK_PREAMBLE_SIZE;
            codebook_size = chunk_size;
            url_fseek(pb, codebook_size, SEEK_CUR);
147
            if (get_buffer(pb, preamble, RoQ_CHUNK_PREAMBLE_SIZE) !=
148
                RoQ_CHUNK_PREAMBLE_SIZE)
149
                return AVERROR(EIO);
150
            chunk_size = AV_RL32(&preamble[2]) + RoQ_CHUNK_PREAMBLE_SIZE * 2 +
151 152 153 154 155 156
                codebook_size;

            /* rewind */
            url_fseek(pb, codebook_offset, SEEK_SET);

            /* load up the packet */
Michael Niedermayer's avatar
Michael Niedermayer committed
157 158
            ret= av_get_packet(pb, pkt, chunk_size);
            if (ret != chunk_size)
159
                return AVERROR(EIO);
160
            pkt->stream_index = roq->video_stream_index;
161
            pkt->pts = roq->video_pts++;
162 163 164 165 166 167

            packet_read = 1;
            break;

        case RoQ_SOUND_MONO:
        case RoQ_SOUND_STEREO:
168 169 170 171
            if (roq->audio_stream_index == -1) {
                AVStream *st = av_new_stream(s, 1);
                if (!st)
                    return AVERROR(ENOMEM);
172
                av_set_pts_info(st, 32, 1, RoQ_AUDIO_SAMPLE_RATE);
173
                roq->audio_stream_index = st->index;
174
                st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
175 176 177 178 179 180 181 182 183
                st->codec->codec_id = CODEC_ID_ROQ_DPCM;
                st->codec->codec_tag = 0;  /* no tag */
                st->codec->channels = roq->audio_channels = chunk_type == RoQ_SOUND_STEREO ? 2 : 1;
                st->codec->sample_rate = RoQ_AUDIO_SAMPLE_RATE;
                st->codec->bits_per_coded_sample = 16;
                st->codec->bit_rate = st->codec->channels * st->codec->sample_rate *
                    st->codec->bits_per_coded_sample;
                st->codec->block_align = st->codec->channels * st->codec->bits_per_coded_sample;
            }
184 185 186
        case RoQ_QUAD_VQ:
            /* load up the packet */
            if (av_new_packet(pkt, chunk_size + RoQ_CHUNK_PREAMBLE_SIZE))
187
                return AVERROR(EIO);
188 189 190 191 192
            /* copy over preamble */
            memcpy(pkt->data, preamble, RoQ_CHUNK_PREAMBLE_SIZE);

            if (chunk_type == RoQ_QUAD_VQ) {
                pkt->stream_index = roq->video_stream_index;
193
                pkt->pts = roq->video_pts++;
194 195 196 197 198 199
            } else {
                pkt->stream_index = roq->audio_stream_index;
                pkt->pts = roq->audio_frame_count;
                roq->audio_frame_count += (chunk_size / roq->audio_channels);
            }

Michael Niedermayer's avatar
Michael Niedermayer committed
200
            pkt->pos= url_ftell(pb);
201 202
            ret = get_buffer(pb, pkt->data + RoQ_CHUNK_PREAMBLE_SIZE,
                chunk_size);
203
            if (ret != chunk_size)
204
                ret = AVERROR(EIO);
205 206 207 208 209

            packet_read = 1;
            break;

        default:
210
            av_log(s, AV_LOG_ERROR, "  unknown RoQ chunk (%04X)\n", chunk_type);
211 212 213 214 215 216 217 218
            return AVERROR_INVALIDDATA;
            break;
        }
    }

    return ret;
}

219
AVInputFormat roq_demuxer = {
220
    "RoQ",
221
    NULL_IF_CONFIG_SMALL("id RoQ format"),
222 223 224 225 226
    sizeof(RoqDemuxContext),
    roq_probe,
    roq_read_header,
    roq_read_packet,
};