3 * Copyright (c) 2012 Nicolas George
5 * This file is part of FFmpeg.
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.
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.
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
24 #include "libavutil/intreadwrite.h"
29 struct oggopus_private {
35 #define OPUS_SEEK_PREROLL_MS 80
36 #define OPUS_HEAD_SIZE 19
38 static int opus_header(AVFormatContext *avf, int idx)
40 struct ogg *ogg = avf->priv_data;
41 struct ogg_stream *os = &ogg->streams[idx];
42 AVStream *st = avf->streams[idx];
43 struct oggopus_private *priv = os->private;
44 uint8_t *packet = os->buf + os->pstart;
47 priv = os->private = av_mallocz(sizeof(*priv));
49 return AVERROR(ENOMEM);
52 if (os->flags & OGG_FLAG_BOS) {
53 if (os->psize < OPUS_HEAD_SIZE || (AV_RL8(packet + 8) & 0xF0) != 0)
54 return AVERROR_INVALIDDATA;
55 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
56 st->codecpar->codec_id = AV_CODEC_ID_OPUS;
57 st->codecpar->channels = AV_RL8(packet + 9);
59 priv->pre_skip = AV_RL16(packet + 10);
60 st->codecpar->initial_padding = priv->pre_skip;
61 /*orig_sample_rate = AV_RL32(packet + 12);*/
62 /*gain = AV_RL16(packet + 16);*/
63 /*channel_map = AV_RL8 (packet + 18);*/
65 av_freep(&st->codecpar->extradata);
66 if (ff_alloc_extradata(st->codecpar, os->psize))
67 return AVERROR(ENOMEM);
69 memcpy(st->codecpar->extradata, packet, os->psize);
71 st->codecpar->sample_rate = 48000;
72 st->codecpar->seek_preroll = av_rescale(OPUS_SEEK_PREROLL_MS,
73 st->codecpar->sample_rate, 1000);
74 avpriv_set_pts_info(st, 64, 1, 48000);
75 priv->need_comments = 1;
79 if (priv->need_comments) {
80 if (os->psize < 8 || memcmp(packet, "OpusTags", 8))
81 return AVERROR_INVALIDDATA;
82 ff_vorbis_stream_comment(avf, st, packet + 8, os->psize - 8);
83 priv->need_comments--;
90 static int opus_duration(uint8_t *src, int size)
92 unsigned nb_frames = 1;
93 unsigned toc = src[0];
94 unsigned toc_config = toc >> 3;
95 unsigned toc_count = toc & 3;
96 unsigned frame_size = toc_config < 12 ? FFMAX(480, 960 * (toc_config & 3)) :
97 toc_config < 16 ? 480 << (toc_config & 1) :
98 120 << (toc_config & 3);
101 return AVERROR_INVALIDDATA;
102 nb_frames = src[1] & 0x3F;
103 } else if (toc_count) {
107 return frame_size * nb_frames;
110 static int opus_packet(AVFormatContext *avf, int idx)
112 struct ogg *ogg = avf->priv_data;
113 struct ogg_stream *os = &ogg->streams[idx];
114 AVStream *st = avf->streams[idx];
115 struct oggopus_private *priv = os->private;
116 uint8_t *packet = os->buf + os->pstart;
120 return AVERROR_INVALIDDATA;
121 if (os->granule > (1LL << 62)) {
122 av_log(avf, AV_LOG_ERROR, "Unsupported huge granule pos %"PRId64 "\n", os->granule);
123 return AVERROR_INVALIDDATA;
126 if ((!os->lastpts || os->lastpts == AV_NOPTS_VALUE) && !(os->flags & OGG_FLAG_EOS)) {
129 uint8_t *last_pkt = os->buf + os->pstart;
130 uint8_t *next_pkt = last_pkt;
134 d = opus_duration(last_pkt, os->psize);
136 os->pflags |= AV_PKT_FLAG_CORRUPT;
140 last_pkt = next_pkt = next_pkt + os->psize;
141 for (; seg < os->nsegs; seg++) {
142 next_pkt += os->segments[seg];
143 if (os->segments[seg] < 255 && next_pkt != last_pkt) {
144 int d = opus_duration(last_pkt, next_pkt - last_pkt);
151 os->lastdts = os->granule - duration;
154 if ((ret = opus_duration(packet, os->psize)) < 0)
158 if (os->lastpts != AV_NOPTS_VALUE) {
159 if (st->start_time == AV_NOPTS_VALUE)
160 st->start_time = os->lastpts;
161 priv->cur_dts = os->lastdts = os->lastpts -= priv->pre_skip;
164 priv->cur_dts += os->pduration;
165 if ((os->flags & OGG_FLAG_EOS)) {
166 int64_t skip = priv->cur_dts - os->granule + priv->pre_skip;
167 skip = FFMIN(skip, os->pduration);
169 os->pduration = skip < os->pduration ? os->pduration - skip : 1;
170 os->end_trimming = skip;
171 av_log(avf, AV_LOG_DEBUG,
172 "Last packet was truncated to %d due to end trimming.\n",
180 const struct ogg_codec ff_opus_codec = {
184 .header = opus_header,
185 .packet = opus_packet,