libavformat/oggparsecelt.c
e61b83d2
 /*
cf88cf17
  * Xiph CELT parser for Ogg
e61b83d2
  * 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>
4ca59d19
 
 #include "libavutil/intreadwrite.h"
e61b83d2
 #include "avformat.h"
c3f9ebf7
 #include "internal.h"
e61b83d2
 #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 */
 
b8604a97
         uint32_t version, sample_rate, nb_channels;
4ca59d19
         uint32_t overlap, extra_headers;
e61b83d2
 
         priv = av_malloc(sizeof(struct oggcelt_private));
b294a4be
         if (!priv)
             return AVERROR(ENOMEM);
6f69f7a8
         if (ff_alloc_extradata(st->codecpar, 2 * sizeof(uint32_t)) < 0) {
9b1d7d4f
             av_free(priv);
e61b83d2
             return AVERROR(ENOMEM);
9b1d7d4f
         }
e61b83d2
         version          = AV_RL32(p + 28);
4ca59d19
         /* unused header size field skipped */
e61b83d2
         sample_rate      = AV_RL32(p + 36);
         nb_channels      = AV_RL32(p + 40);
         overlap          = AV_RL32(p + 48);
4ca59d19
         /* unused bytes per packet field skipped */
e61b83d2
         extra_headers    = AV_RL32(p + 56);
9200514a
         st->codecpar->codec_type     = AVMEDIA_TYPE_AUDIO;
         st->codecpar->codec_id       = AV_CODEC_ID_CELT;
         st->codecpar->sample_rate    = sample_rate;
         st->codecpar->channels       = nb_channels;
4ca59d19
         if (sample_rate)
c3f9ebf7
             avpriv_set_pts_info(st, 64, 1, sample_rate);
71407614
 
         if (os->private) {
             av_free(priv);
             priv = os->private;
         }
e61b83d2
         os->private = priv;
71407614
         priv->extra_headers_left  = 1 + extra_headers;
 
6f69f7a8
         AV_WL32(st->codecpar->extradata + 0, overlap);
         AV_WL32(st->codecpar->extradata + 4, version);
e61b83d2
         return 1;
4ca59d19
     } else if (priv && priv->extra_headers_left) {
e61b83d2
         /* Extra headers (vorbiscomment) */
 
db68ef89
         ff_vorbis_stream_comment(s, st, p, os->psize);
e61b83d2
         priv->extra_headers_left--;
         return 1;
     } else {
         return 0;
     }
 }
 
 const struct ogg_codec ff_celt_codec = {
     .magic     = "CELT    ",
     .magicsize = 8,
     .header    = celt_header,
7751e469
     .nb_header = 2,
e61b83d2
 };