]> git.sesse.net Git - ffmpeg/blob - libavformat/oggparsecelt.c
ffmpeg: preserve avg_frame_rate on stream copy.
[ffmpeg] / libavformat / oggparsecelt.c
1 /*
2  * Xiph CELT parser for Ogg
3  * Copyright (c) 2011 Nicolas George
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include <string.h>
23
24 #include "libavutil/intreadwrite.h"
25 #include "avformat.h"
26 #include "oggdec.h"
27
28 struct oggcelt_private {
29     int extra_headers_left;
30 };
31
32 static int celt_header(AVFormatContext *s, int idx)
33 {
34     struct ogg *ogg = s->priv_data;
35     struct ogg_stream *os = ogg->streams + idx;
36     AVStream *st = s->streams[idx];
37     struct oggcelt_private *priv = os->private;
38     uint8_t *p = os->buf + os->pstart;
39
40     if (os->psize == 60 &&
41         !memcmp(p, ff_celt_codec.magic, ff_celt_codec.magicsize)) {
42         /* Main header */
43
44         uint32_t version, sample_rate, nb_channels, frame_size;
45         uint32_t overlap, extra_headers;
46         uint8_t *extradata;
47
48         extradata = av_malloc(2 * sizeof(uint32_t) +
49                               FF_INPUT_BUFFER_PADDING_SIZE);
50         priv = av_malloc(sizeof(struct oggcelt_private));
51         if (!extradata || !priv) {
52             av_free(extradata);
53             av_free(priv);
54             return AVERROR(ENOMEM);
55         }
56         version          = AV_RL32(p + 28);
57         /* unused header size field skipped */
58         sample_rate      = AV_RL32(p + 36);
59         nb_channels      = AV_RL32(p + 40);
60         frame_size       = AV_RL32(p + 44);
61         overlap          = AV_RL32(p + 48);
62         /* unused bytes per packet field skipped */
63         extra_headers    = AV_RL32(p + 56);
64         st->codec->codec_type     = AVMEDIA_TYPE_AUDIO;
65         st->codec->codec_id       = CODEC_ID_CELT;
66         st->codec->sample_rate    = sample_rate;
67         st->codec->channels       = nb_channels;
68         st->codec->frame_size     = frame_size;
69         av_free(st->codec->extradata);
70         st->codec->extradata      = extradata;
71         st->codec->extradata_size = 2 * sizeof(uint32_t);
72         if (sample_rate)
73             av_set_pts_info(st, 64, 1, sample_rate);
74         priv->extra_headers_left  = 1 + extra_headers;
75         av_free(os->private);
76         os->private = priv;
77         AV_WL32(extradata + 0, overlap);
78         AV_WL32(extradata + 4, version);
79         return 1;
80     } else if (priv && priv->extra_headers_left) {
81         /* Extra headers (vorbiscomment) */
82
83         ff_vorbis_comment(s, &st->metadata, p, os->psize);
84         priv->extra_headers_left--;
85         return 1;
86     } else {
87         return 0;
88     }
89 }
90
91 const struct ogg_codec ff_celt_codec = {
92     .magic     = "CELT    ",
93     .magicsize = 8,
94     .header    = celt_header,
95 };