redspark.c 4.46 KB
Newer Older
James Almer's avatar
James Almer committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * RedSpark demuxer
 * Copyright (c) 2013 James Almer
 *
 * 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
 */

#include "libavcodec/bytestream.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "avio.h"
#include "internal.h"

#define HEADER_SIZE 4096
29
#define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
James Almer's avatar
James Almer committed
30 31 32 33 34 35 36 37 38 39 40 41

typedef struct RedSparkContext {
    int         samples_count;
} RedSparkContext;

static int redspark_probe(AVProbeData *p)
{
    uint32_t key, data;
    uint8_t header[8];

    /* Decrypt first 8 bytes of the header */
    data = AV_RB32(p->buf);
42 43
    key  = data ^ 0x52656453;
    data ^= key;
James Almer's avatar
James Almer committed
44
    AV_WB32(header, data);
45
    key = rol(key, 11);
James Almer's avatar
James Almer committed
46

47 48
    key += rol(key, 3);
    data = AV_RB32(p->buf + 4) ^ key;
James Almer's avatar
James Almer committed
49 50 51 52 53 54 55 56 57 58 59 60
    AV_WB32(header + 4, data);

    if (AV_RB64(header) == AV_RB64("RedSpark"))
        return AVPROBE_SCORE_MAX;

    return 0;
}

static int redspark_read_header(AVFormatContext *s)
{
    AVIOContext *pb = s->pb;
    RedSparkContext *redspark = s->priv_data;
61
    AVCodecParameters *par;
James Almer's avatar
James Almer committed
62
    GetByteContext gbc;
63
    int i, coef_off, ret = 0;
James Almer's avatar
James Almer committed
64
    uint32_t key, data;
65
    uint8_t header[HEADER_SIZE];
James Almer's avatar
James Almer committed
66 67 68 69 70
    AVStream *st;

    st = avformat_new_stream(s, NULL);
    if (!st)
        return AVERROR(ENOMEM);
71
    par = st->codecpar;
James Almer's avatar
James Almer committed
72 73 74

    /* Decrypt header */
    data = avio_rb32(pb);
75 76
    key  = data ^ 0x52656453;
    data ^= key;
77
    AV_WB32(header, data);
78
    key = rol(key, 11);
James Almer's avatar
James Almer committed
79 80

    for (i = 4; i < HEADER_SIZE; i += 4) {
81 82
        key += rol(key, 3);
        data = avio_rb32(pb) ^ key;
83
        AV_WB32(header + i, data);
James Almer's avatar
James Almer committed
84 85
    }

86 87
    par->codec_id    = AV_CODEC_ID_ADPCM_THP;
    par->codec_type  = AVMEDIA_TYPE_AUDIO;
James Almer's avatar
James Almer committed
88 89 90

    bytestream2_init(&gbc, header, HEADER_SIZE);
    bytestream2_seek(&gbc, 0x3c, SEEK_SET);
91 92 93
    par->sample_rate = bytestream2_get_be32u(&gbc);
    if (par->sample_rate <= 0 || par->sample_rate > 96000) {
        av_log(s, AV_LOG_ERROR, "Invalid sample rate: %d\n", par->sample_rate);
94
        return AVERROR_INVALIDDATA;
James Almer's avatar
James Almer committed
95 96 97 98 99
    }

    st->duration = bytestream2_get_be32u(&gbc) * 14;
    redspark->samples_count = 0;
    bytestream2_skipu(&gbc, 10);
100 101
    par->channels = bytestream2_get_byteu(&gbc);
    if (!par->channels) {
102
        return AVERROR_INVALIDDATA;
103
    }
James Almer's avatar
James Almer committed
104

105
    coef_off = 0x54 + par->channels * 8;
James Almer's avatar
James Almer committed
106 107 108
    if (bytestream2_get_byteu(&gbc)) // Loop flag
        coef_off += 16;

109
    if (coef_off + par->channels * (32 + 14) > HEADER_SIZE) {
110
        return AVERROR_INVALIDDATA;
111 112
    }

113
    if (ff_alloc_extradata(par, 32 * par->channels)) {
114
        return AVERROR_INVALIDDATA;
115
    }
James Almer's avatar
James Almer committed
116 117 118

    /* Get the ADPCM table */
    bytestream2_seek(&gbc, coef_off, SEEK_SET);
119 120
    for (i = 0; i < par->channels; i++) {
        if (bytestream2_get_bufferu(&gbc, par->extradata + i * 32, 32) != 32) {
121
            return AVERROR_INVALIDDATA;
122
        }
James Almer's avatar
James Almer committed
123 124 125
        bytestream2_skipu(&gbc, 14);
    }

126
    avpriv_set_pts_info(st, 64, 1, par->sample_rate);
James Almer's avatar
James Almer committed
127

128
    return ret;
James Almer's avatar
James Almer committed
129 130 131 132
}

static int redspark_read_packet(AVFormatContext *s, AVPacket *pkt)
{
133
    AVCodecParameters *par = s->streams[0]->codecpar;
James Almer's avatar
James Almer committed
134
    RedSparkContext *redspark = s->priv_data;
135
    uint32_t size = 8 * par->channels;
James Almer's avatar
James Almer committed
136 137
    int ret;

138
    if (avio_feof(s->pb) || redspark->samples_count == s->streams[0]->duration)
James Almer's avatar
James Almer committed
139 140 141 142
        return AVERROR_EOF;

    ret = av_get_packet(s->pb, pkt, size);
    if (ret != size) {
143
        av_packet_unref(pkt);
James Almer's avatar
James Almer committed
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
        return AVERROR(EIO);
    }

    pkt->duration = 14;
    redspark->samples_count += pkt->duration;
    pkt->stream_index = 0;

    return ret;
}

AVInputFormat ff_redspark_demuxer = {
    .name           =   "redspark",
    .long_name      =   NULL_IF_CONFIG_SMALL("RedSpark"),
    .priv_data_size =   sizeof(RedSparkContext),
    .read_probe     =   redspark_probe,
    .read_header    =   redspark_read_header,
    .read_packet    =   redspark_read_packet,
    .extensions     =   "rsd",
};