FFmpeg
Loading...
Searching...
No Matches
oggparseopus.c
Go to the documentation of this file.
1/*
2 * Opus parser for Ogg
3 * Copyright (c) 2012 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
25#include "libavutil/mem.h"
26#include "avformat.h"
27#include "internal.h"
28#include "oggdec.h"
29
35
36#define OPUS_SEEK_PREROLL_MS 80
37#define OPUS_HEAD_SIZE 19
38
39static int parse_opus_header(AVFormatContext *avf, AVStream *st, struct ogg_stream *os,
40 struct oggopus_private *priv, uint8_t *packet,
41 size_t psize)
42{
43 int channels;
44 int ret;
45
46 if (psize < OPUS_HEAD_SIZE || (AV_RL8(packet + 8) & 0xF0) != 0)
48
51
52 channels = AV_RL8(packet + 9);
55 av_log(avf, AV_LOG_ERROR, "Channel change is not supported\n");
57 }
58
60
61 priv->pre_skip = AV_RL16(packet + 10);
63 os->start_trimming = priv->pre_skip;
64 /*orig_sample_rate = AV_RL32(packet + 12);*/
65 /*gain = AV_RL16(packet + 16);*/
66 /*channel_map = AV_RL8 (packet + 18);*/
67
68 ret = ff_alloc_extradata(st->codecpar, os->psize);
69 if (ret < 0)
70 return ret;
71
72 memcpy(st->codecpar->extradata, packet, os->psize);
73
74 st->codecpar->sample_rate = 48000;
76 st->codecpar->sample_rate, 1000);
77 avpriv_set_pts_info(st, 64, 1, 48000);
78
79 priv->need_comments = 1;
80
81 return 1;
82}
83
84static int opus_header(AVFormatContext *avf, int idx)
85{
86 struct ogg *ogg = avf->priv_data;
87 struct ogg_stream *os = &ogg->streams[idx];
88 AVStream *st = avf->streams[idx];
89 struct oggopus_private *priv = os->private;
90 uint8_t *packet = os->buf + os->pstart;
91
92 if (!priv) {
93 priv = os->private = av_mallocz(sizeof(*priv));
94 if (!priv)
95 return AVERROR(ENOMEM);
96 }
97
98 if (os->flags & OGG_FLAG_BOS)
99 return parse_opus_header(avf, st, os, priv, packet, os->psize);
100
101 if (priv->need_comments) {
102 if (os->psize < 8 || memcmp(packet, "OpusTags", 8))
103 return AVERROR_INVALIDDATA;
104 ff_vorbis_stream_comment(avf, st, packet + 8, os->psize - 8);
105 priv->need_comments--;
106 return 1;
107 }
108
109 return 0;
110}
111
112static int opus_duration(uint8_t *src, int size)
113{
114 unsigned nb_frames = 1;
115 unsigned toc = src[0];
116 unsigned toc_config = toc >> 3;
117 unsigned toc_count = toc & 3;
118 unsigned frame_size = toc_config < 12 ? FFMAX(480, 960 * (toc_config & 3)) :
119 toc_config < 16 ? 480 << (toc_config & 1) :
120 120 << (toc_config & 3);
121 if (toc_count == 3) {
122 if (size<2)
123 return AVERROR_INVALIDDATA;
124 nb_frames = src[1] & 0x3F;
125 } else if (toc_count) {
126 nb_frames = 2;
127 }
128
129 return frame_size * nb_frames;
130}
131
132static int opus_packet(AVFormatContext *avf, int idx)
133{
134 struct ogg *ogg = avf->priv_data;
135 struct ogg_stream *os = &ogg->streams[idx];
136 AVStream *st = avf->streams[idx];
137 struct oggopus_private *priv = os->private;
138 uint8_t *packet = os->buf + os->pstart;
139 int ret;
140
141 if (!os->psize)
142 return AVERROR_INVALIDDATA;
143 if (os->granule > (1LL << 62)) {
144 av_log(avf, AV_LOG_ERROR, "Unsupported huge granule pos %"PRId64 "\n", os->granule);
145 return AVERROR_INVALIDDATA;
146 }
147
148 if (os->psize > 8 && !memcmp(packet, "OpusHead", 8)) {
149 ret = parse_opus_header(avf, st, os, priv, packet, os->psize);
150 if (ret < 0)
151 return ret;
152
153 return 1;
154 }
155
156 if (os->psize > 8 && !memcmp(packet, "OpusTags", 8)) {
157 ret = ff_vorbis_update_metadata(avf, st, os->buf + os->pstart + 8,
158 os->psize - 8);
159 if (ret < 0)
160 return ret;
161
162 priv->need_comments = 0;
163 return 1;
164 }
165
166 if ((!os->lastpts || os->lastpts == AV_NOPTS_VALUE) && !(os->flags & OGG_FLAG_EOS)) {
167 int seg, d;
168 int duration;
169 uint8_t *last_pkt = os->buf + os->pstart;
170 uint8_t *next_pkt = last_pkt;
171
172 duration = 0;
173 seg = os->segp;
174 d = opus_duration(last_pkt, os->psize);
175 if (d < 0) {
177 return 0;
178 }
179 duration += d;
180 last_pkt = next_pkt = next_pkt + os->psize;
181 for (; seg < os->nsegs; seg++) {
182 next_pkt += os->segments[seg];
183 if (os->segments[seg] < 255 && next_pkt != last_pkt) {
184 d = opus_duration(last_pkt, next_pkt - last_pkt);
185 if (d > 0)
186 duration += d;
187 last_pkt = next_pkt;
188 }
189 }
190 os->lastpts =
191 os->lastdts = os->granule - duration;
192 }
193
194 if ((ret = opus_duration(packet, os->psize)) < 0)
195 return ret;
196
197 os->pduration = ret;
198 if (os->lastpts != AV_NOPTS_VALUE) {
199 if (st->start_time == AV_NOPTS_VALUE)
200 st->start_time = os->lastpts;
201 priv->cur_dts = os->lastdts = os->lastpts -= priv->pre_skip;
202 }
203
204 priv->cur_dts += os->pduration;
205 if ((os->flags & OGG_FLAG_EOS)) {
206 int64_t skip = priv->cur_dts - os->granule + priv->pre_skip;
207 skip = FFMIN(skip, os->pduration);
208 if (skip > 0) {
209 os->pduration = skip < os->pduration ? os->pduration - skip : 1;
210 os->end_trimming = skip;
211 av_log(avf, AV_LOG_DEBUG,
212 "Last packet was truncated to %d due to end trimming.\n",
213 os->pduration);
214 }
215 }
216
217 return 0;
218}
219
220const struct ogg_codec ff_opus_codec = {
221 .name = "Opus",
222 .magic = "OpusHead",
223 .magicsize = 8,
224 .header = opus_header,
225 .packet = opus_packet,
226 .nb_header = 1,
227};
channels
Definition aptx.h:31
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
Main libavformat public API header.
static void BS_FUNC skip(BSCTX *bc, unsigned int n)
Skip n bits in the buffer.
long long int64_t
Definition coverity.c:34
static int64_t duration
Definition ffplay.c:330
static const uint8_t frame_size[4]
Definition g723_1.h:222
@ AV_CODEC_ID_OPUS
Definition codec_id.h:513
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
Definition packet.h:651
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition error.h:64
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition log.h:231
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
#define AV_RL8(x)
#define AV_RL16(p)
int ff_alloc_extradata(AVCodecParameters *par, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0.
Definition utils.c:237
#define OPUS_HEAD_SIZE
Definition libopusdec.c:50
#define FFMIN(a, b)
Definition macros.h:49
#define FFMAX(a, b)
Definition macros.h:47
Memory handling functions.
int ff_vorbis_update_metadata(AVFormatContext *s, AVStream *st, const uint8_t *buf, int size)
Parse Vorbis comments, add metadata to an AVStream.
int ff_vorbis_stream_comment(AVFormatContext *as, AVStream *st, const uint8_t *buf, int size)
Parse Vorbis comments and add metadata to an AVStream.
const struct ogg_codec ff_opus_codec
#define OGG_FLAG_BOS
Definition oggdec.h:122
#define OGG_FLAG_EOS
Definition oggdec.h:123
static int parse_opus_header(AVFormatContext *avf, AVStream *st, struct ogg_stream *os, struct oggopus_private *priv, uint8_t *packet, size_t psize)
static int opus_packet(AVFormatContext *avf, int idx)
static int opus_duration(uint8_t *src, int size)
#define OPUS_SEEK_PREROLL_MS
static int opus_header(AVFormatContext *avf, int idx)
int nb_channels
Number of channels in this layout.
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
int seek_preroll
Number of audio samples to skip after a discontinuity.
Definition codec_par.h:256
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition codec_par.h:71
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
int initial_padding
Number of padding audio samples at the start.
Definition codec_par.h:239
Format I/O context.
Definition avformat.h:1333
void * priv_data
Format private data.
Definition avformat.h:1361
AVStream ** streams
A list of all streams in the file.
Definition avformat.h:1401
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
Definition avformat.h:815
Copyright (C) 2005 Michael Ahlberg, Måns Rullgård.
Definition oggdec.h:30
unsigned int pduration
Definition oggdec.h:74
int end_trimming
set the number of packets to drop from the end
Definition oggdec.h:95
unsigned int pflags
Definition oggdec.h:73
int nsegs
Definition oggdec.h:85
int start_trimming
set the number of packets to drop from the start
Definition oggdec.h:94
uint8_t segments[255]
Definition oggdec.h:86
uint64_t granule
Definition oggdec.h:76
int64_t lastdts
Definition oggdec.h:79
unsigned int pstart
Definition oggdec.h:71
unsigned int psize
Definition oggdec.h:72
void * private
Definition oggdec.h:101
uint8_t * buf
Definition oggdec.h:68
int64_t lastpts
Definition oggdec.h:78
int segp
Definition oggdec.h:85
int flags
Definition oggdec.h:82
Definition oggdec.h:112
struct ogg_stream * streams
Definition oggdec.h:113
unsigned pre_skip
#define av_mallocz(s)
#define av_log(a,...)
#define src
Definition vp8dsp.c:248
int size