dsicin.c 6.79 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * Delphine Software International CIN File Demuxer
 * Copyright (c) 2006 Gregory Montoir (cyx@users.sourceforge.net)
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * 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
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
23
 * @file
24 25 26
 * Delphine Software International CIN file demuxer
 */

27
#include "libavutil/channel_layout.h"
28
#include "libavutil/intreadwrite.h"
29
#include "avformat.h"
30
#include "internal.h"
31
#include "avio_internal.h"
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 60 61 62 63 64 65


typedef struct CinFileHeader {
    int video_frame_size;
    int video_frame_width;
    int video_frame_height;
    int audio_frequency;
    int audio_bits;
    int audio_stereo;
    int audio_frame_size;
} CinFileHeader;

typedef struct CinFrameHeader {
    int audio_frame_type;
    int video_frame_type;
    int pal_colors_count;
    int audio_frame_size;
    int video_frame_size;
} CinFrameHeader;

typedef struct CinDemuxContext {
    int audio_stream_index;
    int video_stream_index;
    CinFileHeader file_header;
    int64_t audio_stream_pts;
    int64_t video_stream_pts;
    CinFrameHeader frame_header;
    int audio_buffer_size;
} CinDemuxContext;


static int cin_probe(AVProbeData *p)
{
    /* header starts with this special marker */
66
    if (AV_RL32(&p->buf[0]) != 0x55AA0000)
67 68 69
        return 0;

    /* for accuracy, check some header field values */
70
    if (AV_RL32(&p->buf[12]) != 22050 || p->buf[16] != 16 || p->buf[17] != 0)
71 72 73 74 75
        return 0;

    return AVPROBE_SCORE_MAX;
}

76
static int cin_read_file_header(CinDemuxContext *cin, AVIOContext *pb) {
77 78
    CinFileHeader *hdr = &cin->file_header;

79
    if (avio_rl32(pb) != 0x55AA0000)
80 81
        return AVERROR_INVALIDDATA;

82 83 84 85 86 87 88
    hdr->video_frame_size   = avio_rl32(pb);
    hdr->video_frame_width  = avio_rl16(pb);
    hdr->video_frame_height = avio_rl16(pb);
    hdr->audio_frequency    = avio_rl32(pb);
    hdr->audio_bits         = avio_r8(pb);
    hdr->audio_stereo       = avio_r8(pb);
    hdr->audio_frame_size   = avio_rl16(pb);
89 90 91 92 93 94 95

    if (hdr->audio_frequency != 22050 || hdr->audio_bits != 16 || hdr->audio_stereo != 0)
        return AVERROR_INVALIDDATA;

    return 0;
}

96
static int cin_read_header(AVFormatContext *s)
97 98
{
    int rc;
99
    CinDemuxContext *cin = s->priv_data;
100
    CinFileHeader *hdr = &cin->file_header;
101
    AVIOContext *pb = s->pb;
102 103 104 105 106 107 108 109 110 111 112
    AVStream *st;

    rc = cin_read_file_header(cin, pb);
    if (rc)
        return rc;

    cin->video_stream_pts = 0;
    cin->audio_stream_pts = 0;
    cin->audio_buffer_size = 0;

    /* initialize the video decoder stream */
113
    st = avformat_new_stream(s, NULL);
114
    if (!st)
115
        return AVERROR(ENOMEM);
116

117
    avpriv_set_pts_info(st, 32, 1, 12);
118
    cin->video_stream_index = st->index;
119
    st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
120
    st->codec->codec_id = AV_CODEC_ID_DSICINVIDEO;
121 122 123 124 125
    st->codec->codec_tag = 0;  /* no fourcc */
    st->codec->width = hdr->video_frame_width;
    st->codec->height = hdr->video_frame_height;

    /* initialize the audio decoder stream */
126
    st = avformat_new_stream(s, NULL);
127
    if (!st)
128
        return AVERROR(ENOMEM);
129

130
    avpriv_set_pts_info(st, 32, 1, 22050);
131
    cin->audio_stream_index = st->index;
132
    st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
133
    st->codec->codec_id = AV_CODEC_ID_DSICINAUDIO;
134 135
    st->codec->codec_tag = 0;  /* no tag */
    st->codec->channels = 1;
136
    st->codec->channel_layout = AV_CH_LAYOUT_MONO;
137
    st->codec->sample_rate = 22050;
138
    st->codec->bits_per_coded_sample = 8;
139
    st->codec->bit_rate = st->codec->sample_rate * st->codec->bits_per_coded_sample * st->codec->channels;
140 141 142 143

    return 0;
}

144
static int cin_read_frame_header(CinDemuxContext *cin, AVIOContext *pb) {
145 146
    CinFrameHeader *hdr = &cin->frame_header;

147 148 149 150 151
    hdr->video_frame_type = avio_r8(pb);
    hdr->audio_frame_type = avio_r8(pb);
    hdr->pal_colors_count = avio_rl16(pb);
    hdr->video_frame_size = avio_rl32(pb);
    hdr->audio_frame_size = avio_rl32(pb);
152

153
    if (avio_feof(pb) || pb->error)
154
        return AVERROR(EIO);
155

156
    if (avio_rl32(pb) != 0xAA55AA55)
157
        return AVERROR_INVALIDDATA;
158 159
    if (hdr->video_frame_size < 0 || hdr->audio_frame_size < 0)
        return AVERROR_INVALIDDATA;
160 161 162 163 164 165

    return 0;
}

static int cin_read_packet(AVFormatContext *s, AVPacket *pkt)
{
166
    CinDemuxContext *cin = s->priv_data;
167
    AVIOContext *pb = s->pb;
168 169
    CinFrameHeader *hdr = &cin->frame_header;
    int rc, palette_type, pkt_size;
170
    int ret;
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186

    if (cin->audio_buffer_size == 0) {
        rc = cin_read_frame_header(cin, pb);
        if (rc)
            return rc;

        if ((int16_t)hdr->pal_colors_count < 0) {
            hdr->pal_colors_count = -(int16_t)hdr->pal_colors_count;
            palette_type = 1;
        } else {
            palette_type = 0;
        }

        /* palette and video packet */
        pkt_size = (palette_type + 3) * hdr->pal_colors_count + hdr->video_frame_size;

187 188
        pkt_size = ffio_limit(pb, pkt_size);

189 190 191
        ret = av_new_packet(pkt, 4 + pkt_size);
        if (ret < 0)
            return ret;
192 193 194 195 196 197 198 199 200

        pkt->stream_index = cin->video_stream_index;
        pkt->pts = cin->video_stream_pts++;

        pkt->data[0] = palette_type;
        pkt->data[1] = hdr->pal_colors_count & 0xFF;
        pkt->data[2] = hdr->pal_colors_count >> 8;
        pkt->data[3] = hdr->video_frame_type;

201
        ret = avio_read(pb, &pkt->data[4], pkt_size);
202 203 204 205 206 207
        if (ret < 0) {
            av_free_packet(pkt);
            return ret;
        }
        if (ret < pkt_size)
            av_shrink_packet(pkt, 4 + ret);
208 209 210 211 212 213 214

        /* sound buffer will be processed on next read_packet() call */
        cin->audio_buffer_size = hdr->audio_frame_size;
        return 0;
    }

    /* audio packet */
215 216 217
    ret = av_get_packet(pb, pkt, cin->audio_buffer_size);
    if (ret < 0)
        return ret;
218 219 220

    pkt->stream_index = cin->audio_stream_index;
    pkt->pts = cin->audio_stream_pts;
221 222
    pkt->duration = cin->audio_buffer_size - (pkt->pts == 0);
    cin->audio_stream_pts += pkt->duration;
223 224 225 226
    cin->audio_buffer_size = 0;
    return 0;
}

227
AVInputFormat ff_dsicin_demuxer = {
228
    .name           = "dsicin",
229
    .long_name      = NULL_IF_CONFIG_SMALL("Delphine Software International CIN"),
230 231 232 233
    .priv_data_size = sizeof(CinDemuxContext),
    .read_probe     = cin_probe,
    .read_header    = cin_read_header,
    .read_packet    = cin_read_packet,
234
};