vqf.c 8.26 KB
Newer Older
Vitor Sessak's avatar
Vitor Sessak committed
1 2 3 4
/*
 * VQF demuxer
 * Copyright (c) 2009 Vitor Sessak
 *
5
 * This file is part of Libav.
Vitor Sessak's avatar
Vitor Sessak committed
6
 *
7
 * Libav is free software; you can redistribute it and/or
Vitor Sessak's avatar
Vitor Sessak committed
8 9 10 11
 * 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.
 *
12
 * Libav is distributed in the hope that it will be useful,
Vitor Sessak's avatar
Vitor Sessak committed
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 Libav; if not, write to the Free Software
Vitor Sessak's avatar
Vitor Sessak committed
19 20 21 22
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include "avformat.h"
23
#include "internal.h"
Vitor Sessak's avatar
Vitor Sessak committed
24
#include "libavutil/intreadwrite.h"
25
#include "libavutil/dict.h"
26
#include "libavutil/mathematics.h"
27
#include "riff.h"
Vitor Sessak's avatar
Vitor Sessak committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45

typedef struct VqfContext {
    int frame_bit_len;
    uint8_t last_frame_bits;
    int remaining_bits;
} VqfContext;

static int vqf_probe(AVProbeData *probe_packet)
{
    if (AV_RL32(probe_packet->buf) != MKTAG('T','W','I','N'))
        return 0;

    if (!memcmp(probe_packet->buf + 4, "97012000", 8))
        return AVPROBE_SCORE_MAX;

    if (!memcmp(probe_packet->buf + 4, "00052200", 8))
        return AVPROBE_SCORE_MAX;

46
    return AVPROBE_SCORE_EXTENSION;
Vitor Sessak's avatar
Vitor Sessak committed
47 48
}

49
static void add_metadata(AVFormatContext *s, uint32_t tag,
Vitor Sessak's avatar
Vitor Sessak committed
50 51
                         unsigned int tag_len, unsigned int remaining)
{
52
    int len = FFMIN(tag_len, remaining);
53
    char *buf, key[5] = {0};
Vitor Sessak's avatar
Vitor Sessak committed
54

55 56
    if (len == UINT_MAX)
        return;
Vitor Sessak's avatar
Vitor Sessak committed
57

58 59 60
    buf = av_malloc(len+1);
    if (!buf)
        return;
61
    avio_read(s->pb, buf, len);
Vitor Sessak's avatar
Vitor Sessak committed
62
    buf[len] = 0;
63 64
    AV_WL32(key, tag);
    av_dict_set(&s->metadata, key, buf, AV_DICT_DONT_STRDUP_VAL);
Vitor Sessak's avatar
Vitor Sessak committed
65 66
}

67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
static const AVMetadataConv vqf_metadata_conv[] = {
    { "(c) ", "copyright" },
    { "ARNG", "arranger"  },
    { "AUTH", "author"    },
    { "BAND", "band"      },
    { "CDCT", "conductor" },
    { "COMT", "comment"   },
    { "FILE", "filename"  },
    { "GENR", "genre"     },
    { "LABL", "publisher" },
    { "MUSC", "composer"  },
    { "NAME", "title"     },
    { "NOTE", "note"      },
    { "PROD", "producer"  },
    { "PRSN", "personnel" },
    { "REMX", "remixer"   },
    { "SING", "singer"    },
    { "TRCK", "track"     },
    { "WORD", "words"     },
    { 0 },
};

89
static int vqf_read_header(AVFormatContext *s)
Vitor Sessak's avatar
Vitor Sessak committed
90 91
{
    VqfContext *c = s->priv_data;
92
    AVStream *st  = avformat_new_stream(s, NULL);
Vitor Sessak's avatar
Vitor Sessak committed
93 94 95 96 97
    int chunk_tag;
    int rate_flag = -1;
    int header_size;
    int read_bitrate = 0;
    int size;
98
    uint8_t comm_chunk[12];
Vitor Sessak's avatar
Vitor Sessak committed
99 100 101 102

    if (!st)
        return AVERROR(ENOMEM);

103
    avio_skip(s->pb, 12);
Vitor Sessak's avatar
Vitor Sessak committed
104

105
    header_size = avio_rb32(s->pb);
Vitor Sessak's avatar
Vitor Sessak committed
106

107
    st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
108
    st->codec->codec_id   = AV_CODEC_ID_TWINVQ;
Vitor Sessak's avatar
Vitor Sessak committed
109 110 111 112
    st->start_time = 0;

    do {
        int len;
113
        chunk_tag = avio_rl32(s->pb);
Vitor Sessak's avatar
Vitor Sessak committed
114 115 116 117

        if (chunk_tag == MKTAG('D','A','T','A'))
            break;

118
        len = avio_rb32(s->pb);
Vitor Sessak's avatar
Vitor Sessak committed
119 120 121 122 123 124 125 126 127 128

        if ((unsigned) len > INT_MAX/2) {
            av_log(s, AV_LOG_ERROR, "Malformed header\n");
            return -1;
        }

        header_size -= 8;

        switch(chunk_tag){
        case MKTAG('C','O','M','M'):
129 130 131 132
            avio_read(s->pb, comm_chunk, 12);
            st->codec->channels = AV_RB32(comm_chunk    ) + 1;
            read_bitrate        = AV_RB32(comm_chunk + 4);
            rate_flag           = AV_RB32(comm_chunk + 8);
133
            avio_skip(s->pb, len-12);
Vitor Sessak's avatar
Vitor Sessak committed
134 135 136

            st->codec->bit_rate              = read_bitrate*1000;
            break;
137 138 139 140 141 142 143 144
        case MKTAG('D','S','I','Z'): // size of compressed data
        {
            char buf[8] = {0};
            int size = avio_rb32(s->pb);

            snprintf(buf, sizeof(buf), "%d", size);
            av_dict_set(&s->metadata, "size", buf, 0);
        }
Vitor Sessak's avatar
Vitor Sessak committed
145
            break;
146 147 148 149 150 151 152
        case MKTAG('Y','E','A','R'): // recording date
        case MKTAG('E','N','C','D'): // compression date
        case MKTAG('E','X','T','R'): // reserved
        case MKTAG('_','Y','M','H'): // reserved
        case MKTAG('_','N','T','T'): // reserved
        case MKTAG('_','I','D','3'): // reserved for ID3 tags
            avio_skip(s->pb, FFMIN(len, header_size));
Vitor Sessak's avatar
Vitor Sessak committed
153 154
            break;
        default:
155
            add_metadata(s, chunk_tag, len, header_size);
Vitor Sessak's avatar
Vitor Sessak committed
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
            break;
        }

        header_size -= len;

    } while (header_size >= 0);

    switch (rate_flag) {
    case -1:
        av_log(s, AV_LOG_ERROR, "COMM tag not found!\n");
        return -1;
    case 44:
        st->codec->sample_rate = 44100;
        break;
    case 22:
        st->codec->sample_rate = 22050;
        break;
    case 11:
        st->codec->sample_rate = 11025;
        break;
    default:
177 178 179 180
        if (rate_flag < 8 || rate_flag > 44) {
            av_log(s, AV_LOG_ERROR, "Invalid rate flag %d\n", rate_flag);
            return AVERROR_INVALIDDATA;
        }
Vitor Sessak's avatar
Vitor Sessak committed
181 182 183 184
        st->codec->sample_rate = rate_flag*1000;
        break;
    }

185 186 187 188 189 190 191
    if (read_bitrate / st->codec->channels <  8 ||
        read_bitrate / st->codec->channels > 48) {
        av_log(s, AV_LOG_ERROR, "Invalid bitrate per channel %d\n",
               read_bitrate / st->codec->channels);
        return AVERROR_INVALIDDATA;
    }

Vitor Sessak's avatar
Vitor Sessak committed
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
    switch (((st->codec->sample_rate/1000) << 8) +
            read_bitrate/st->codec->channels) {
    case (11<<8) + 8 :
    case (8 <<8) + 8 :
    case (11<<8) + 10:
    case (22<<8) + 32:
        size = 512;
        break;
    case (16<<8) + 16:
    case (22<<8) + 20:
    case (22<<8) + 24:
        size = 1024;
        break;
    case (44<<8) + 40:
    case (44<<8) + 48:
        size = 2048;
        break;
    default:
        av_log(s, AV_LOG_ERROR, "Mode not suported: %d Hz, %d kb/s.\n",
               st->codec->sample_rate, st->codec->bit_rate);
        return -1;
    }
    c->frame_bit_len = st->codec->bit_rate*size/st->codec->sample_rate;
215
    avpriv_set_pts_info(st, 64, size, st->codec->sample_rate);
Vitor Sessak's avatar
Vitor Sessak committed
216

217
    /* put first 12 bytes of COMM chunk in extradata */
218
    if (!(st->codec->extradata = av_malloc(12 + AV_INPUT_BUFFER_PADDING_SIZE)))
219 220 221 222
        return AVERROR(ENOMEM);
    st->codec->extradata_size = 12;
    memcpy(st->codec->extradata, comm_chunk, 12);

223 224
    ff_metadata_conv_ctx(s, NULL, vqf_metadata_conv);

Vitor Sessak's avatar
Vitor Sessak committed
225 226 227 228 229 230 231 232 233 234 235 236
    return 0;
}

static int vqf_read_packet(AVFormatContext *s, AVPacket *pkt)
{
    VqfContext *c = s->priv_data;
    int ret;
    int size = (c->frame_bit_len - c->remaining_bits + 7)>>3;

    if (av_new_packet(pkt, size+2) < 0)
        return AVERROR(EIO);

237 238
    pkt->pos          = avio_tell(s->pb);
    pkt->stream_index = 0;
239
    pkt->duration     = 1;
240

Vitor Sessak's avatar
Vitor Sessak committed
241 242
    pkt->data[0] = 8 - c->remaining_bits; // Number of bits to skip
    pkt->data[1] = c->last_frame_bits;
243
    ret = avio_read(s->pb, pkt->data+2, size);
Vitor Sessak's avatar
Vitor Sessak committed
244 245

    if (ret<=0) {
246
        av_packet_unref(pkt);
Vitor Sessak's avatar
Vitor Sessak committed
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
        return AVERROR(EIO);
    }

    c->last_frame_bits = pkt->data[size+1];
    c->remaining_bits  = (size << 3) - c->frame_bit_len + c->remaining_bits;

    return size+2;
}

static int vqf_read_seek(AVFormatContext *s,
                         int stream_index, int64_t timestamp, int flags)
{
    VqfContext *c = s->priv_data;
    AVStream *st;
    int ret;
    int64_t pos;

    st = s->streams[stream_index];
    pos = av_rescale_rnd(timestamp * st->codec->bit_rate,
                         st->time_base.num,
                         st->time_base.den * (int64_t)c->frame_bit_len,
                         (flags & AVSEEK_FLAG_BACKWARD) ?
                                                   AV_ROUND_DOWN : AV_ROUND_UP);
    pos *= c->frame_bit_len;

    st->cur_dts = av_rescale(pos, st->time_base.den,
                             st->codec->bit_rate * (int64_t)st->time_base.num);

275
    if ((ret = avio_seek(s->pb, ((pos-7) >> 3) + s->internal->data_offset, SEEK_SET)) < 0)
Vitor Sessak's avatar
Vitor Sessak committed
276 277 278 279 280 281
        return ret;

    c->remaining_bits = -7 - ((pos-7)&7);
    return 0;
}

282
AVInputFormat ff_vqf_demuxer = {
283 284 285 286 287 288 289
    .name           = "vqf",
    .long_name      = NULL_IF_CONFIG_SMALL("Nippon Telegraph and Telephone Corporation (NTT) TwinVQ"),
    .priv_data_size = sizeof(VqfContext),
    .read_probe     = vqf_probe,
    .read_header    = vqf_read_header,
    .read_packet    = vqf_read_packet,
    .read_seek      = vqf_read_seek,
290
    .extensions     = "vqf,vql,vqe",
Vitor Sessak's avatar
Vitor Sessak committed
291
};