oggparsecelt.c 2.98 KB
Newer Older
1
/*
2
 * Xiph CELT parser for Ogg
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * Copyright (c) 2011 Nicolas George
 *
 * 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 <string.h>
23 24

#include "libavutil/intreadwrite.h"
25
#include "avformat.h"
26
#include "internal.h"
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
#include "oggdec.h"

struct oggcelt_private {
    int extra_headers_left;
};

static int celt_header(AVFormatContext *s, int idx)
{
    struct ogg *ogg = s->priv_data;
    struct ogg_stream *os = ogg->streams + idx;
    AVStream *st = s->streams[idx];
    struct oggcelt_private *priv = os->private;
    uint8_t *p = os->buf + os->pstart;

    if (os->psize == 60 &&
        !memcmp(p, ff_celt_codec.magic, ff_celt_codec.magicsize)) {
        /* Main header */

45 46
        uint32_t version, sample_rate, nb_channels, frame_size;
        uint32_t overlap, extra_headers;
47 48

        priv = av_malloc(sizeof(struct oggcelt_private));
49 50 51
        if (!priv)
            return AVERROR(ENOMEM);
        if (ff_alloc_extradata(st->codec, 2 * sizeof(uint32_t)) < 0)
52 53
            return AVERROR(ENOMEM);
        version          = AV_RL32(p + 28);
54
        /* unused header size field skipped */
55 56 57 58
        sample_rate      = AV_RL32(p + 36);
        nb_channels      = AV_RL32(p + 40);
        frame_size       = AV_RL32(p + 44);
        overlap          = AV_RL32(p + 48);
59
        /* unused bytes per packet field skipped */
60 61
        extra_headers    = AV_RL32(p + 56);
        st->codec->codec_type     = AVMEDIA_TYPE_AUDIO;
62
        st->codec->codec_id       = AV_CODEC_ID_CELT;
63 64 65
        st->codec->sample_rate    = sample_rate;
        st->codec->channels       = nb_channels;
        st->codec->frame_size     = frame_size;
66
        if (sample_rate)
67
            avpriv_set_pts_info(st, 64, 1, sample_rate);
68
        priv->extra_headers_left  = 1 + extra_headers;
69
        av_free(os->private);
70
        os->private = priv;
71 72
        AV_WL32(st->codec->extradata + 0, overlap);
        AV_WL32(st->codec->extradata + 4, version);
73
        return 1;
74
    } else if (priv && priv->extra_headers_left) {
75 76 77 78 79 80 81 82 83 84 85 86 87 88
        /* Extra headers (vorbiscomment) */

        ff_vorbis_comment(s, &st->metadata, p, os->psize);
        priv->extra_headers_left--;
        return 1;
    } else {
        return 0;
    }
}

const struct ogg_codec ff_celt_codec = {
    .magic     = "CELT    ",
    .magicsize = 8,
    .header    = celt_header,
89
    .nb_header = 2,
90
};