FFmpeg
opus.h
Go to the documentation of this file.
1 /*
2  * Opus decoder/demuxer common functions
3  * Copyright (c) 2012 Andrew D'Addesio
4  * Copyright (c) 2013-2014 Mozilla Corporation
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #ifndef AVCODEC_OPUS_H
24 #define AVCODEC_OPUS_H
25 
26 #include <stdint.h>
27 
28 #include "libavutil/audio_fifo.h"
29 #include "libavutil/float_dsp.h"
30 #include "libavutil/frame.h"
31 #include "libavutil/mem_internal.h"
32 
34 
35 #include "avcodec.h"
36 #include "opus_rc.h"
37 
38 #define MAX_FRAME_SIZE 1275
39 #define MAX_FRAMES 48
40 #define MAX_PACKET_DUR 5760
41 
42 #define CELT_SHORT_BLOCKSIZE 120
43 #define CELT_OVERLAP CELT_SHORT_BLOCKSIZE
44 #define CELT_MAX_LOG_BLOCKS 3
45 #define CELT_MAX_FRAME_SIZE (CELT_SHORT_BLOCKSIZE * (1 << CELT_MAX_LOG_BLOCKS))
46 #define CELT_MAX_BANDS 21
47 
48 #define SILK_HISTORY 322
49 #define SILK_MAX_LPC 16
50 
51 #define ROUND_MULL(a,b,s) (((MUL64(a, b) >> ((s) - 1)) + 1) >> 1)
52 #define ROUND_MUL16(a,b) ((MUL16(a, b) + 16384) >> 15)
53 
54 #define OPUS_TS_HEADER 0x7FE0 // 0x3ff (11 bits)
55 #define OPUS_TS_MASK 0xFFE0 // top 11 bits
56 
57 static const uint8_t opus_default_extradata[30] = {
58  'O', 'p', 'u', 's', 'H', 'e', 'a', 'd',
59  1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
60  0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
61 };
62 
63 enum OpusMode {
67 
69 };
70 
77 
79 };
80 
81 typedef struct SilkContext SilkContext;
82 
83 typedef struct CeltFrame CeltFrame;
84 
85 typedef struct OpusPacket {
86  int packet_size; /**< packet size */
87  int data_size; /**< size of the useful data -- packet size - padding */
88  int code; /**< packet code: specifies the frame layout */
89  int stereo; /**< whether this packet is mono or stereo */
90  int vbr; /**< vbr flag */
91  int config; /**< configuration: tells the audio mode,
92  ** bandwidth, and frame duration */
93  int frame_count; /**< frame count */
94  int frame_offset[MAX_FRAMES]; /**< frame offsets */
95  int frame_size[MAX_FRAMES]; /**< frame sizes */
96  int frame_duration; /**< frame duration, in samples @ 48kHz */
97  enum OpusMode mode; /**< mode */
98  enum OpusBandwidth bandwidth; /**< bandwidth */
99 } OpusPacket;
100 
101 typedef struct OpusStreamContext {
104 
105  /* number of decoded samples for this stream */
107  /* current output buffers for this stream */
108  float *out[2];
109  int out_size;
110  /* Buffer with samples from this stream for synchronizing
111  * the streams when they have different resampling delays */
113 
119 
120  float silk_buf[2][960];
121  float *silk_output[2];
122  DECLARE_ALIGNED(32, float, celt_buf)[2][960];
123  float *celt_output[2];
124 
125  DECLARE_ALIGNED(32, float, redundancy_buf)[2][960];
126  float *redundancy_output[2];
127 
128  /* buffers for the next samples to be decoded */
129  float *cur_out[2];
131 
132  float *out_dummy;
134 
138  /* number of samples we still want to get from the resampler */
140 
142 
145 
146 // a mapping between an opus stream and an output channel
147 typedef struct ChannelMap {
150 
151  // when a single decoded channel is mapped to multiple output channels, we
152  // write to the first output directly and copy from it to the others
153  // this field is set to 1 for those copied output channels
154  int copy;
155  // this is the index of the output channel to copy from
156  int copy_idx;
157 
158  // this channel is silent
159  int silence;
160 } ChannelMap;
161 
162 typedef struct OpusContext {
166 
169 
171  int16_t gain_i;
172  float gain;
173 
175 } OpusContext;
176 
177 int ff_opus_parse_packet(OpusPacket *pkt, const uint8_t *buf, int buf_size,
178  int self_delimited);
179 
181 
182 int ff_silk_init(AVCodecContext *avctx, SilkContext **ps, int output_channels);
183 void ff_silk_free(SilkContext **ps);
185 
186 /**
187  * Decode the LP layer of one Opus frame (which may correspond to several SILK
188  * frames).
189  */
191  float *output[2],
192  enum OpusBandwidth bandwidth, int coded_channels,
193  int duration_ms);
194 
195 /* Encode or decode CELT bands */
197 
198 /* Encode or decode CELT bitallocation */
200 
201 #endif /* AVCODEC_OPUS_H */
OpusStreamContext::decoded_samples
int decoded_samples
Definition: opus.h:106
OpusPacket::bandwidth
enum OpusBandwidth bandwidth
bandwidth
Definition: opus.h:98
OpusStreamContext::avctx
AVCodecContext * avctx
Definition: opus.h:102
mem_internal.h
ff_celt_quant_bands
void ff_celt_quant_bands(CeltFrame *f, OpusRangeCoder *rc)
Definition: opus.c:446
OPUS_BANDWIDTH_NARROWBAND
@ OPUS_BANDWIDTH_NARROWBAND
Definition: opus.h:72
OpusStreamContext::delayed_samples
int delayed_samples
Definition: opus.h:139
opus_default_extradata
static const uint8_t opus_default_extradata[30]
Definition: opus.h:57
OpusPacket::code
int code
packet code: specifies the frame layout
Definition: opus.h:88
output
filter_frame For filters that do not use the this method is called when a frame is pushed to the filter s input It can be called at any time except in a reentrant way If the input frame is enough to produce output
Definition: filter_design.txt:225
OpusMode
OpusMode
Definition: opus.h:63
OPUS_BANDWIDTH_FULLBAND
@ OPUS_BANDWIDTH_FULLBAND
Definition: opus.h:76
OpusStreamContext::rc
OpusRangeCoder rc
Definition: opus.h:114
ff_celt_bitalloc
void ff_celt_bitalloc(CeltFrame *f, OpusRangeCoder *rc, int encode)
Definition: opus.c:555
OpusPacket::vbr
int vbr
vbr flag
Definition: opus.h:90
ChannelMap::copy
int copy
Definition: opus.h:154
OpusStreamContext::celt_delay
AVAudioFifo * celt_delay
Definition: opus.h:136
OpusStreamContext::swr
SwrContext * swr
Definition: opus.h:135
AVAudioFifo
Context for an Audio FIFO Buffer.
Definition: audio_fifo.c:34
OpusStreamContext::out_size
int out_size
Definition: opus.h:109
OpusContext::gain
float gain
Definition: opus.h:172
OpusStreamContext::celt
CeltFrame * celt
Definition: opus.h:117
OpusStreamContext::redundancy_buf
float redundancy_buf[2][960]
Definition: opus.h:125
OpusStreamContext::celt_output
float * celt_output[2]
Definition: opus.h:123
OpusStreamContext::out
float * out[2]
Definition: opus.h:108
pkt
AVPacket * pkt
Definition: movenc.c:59
OpusStreamContext::silk_output
float * silk_output[2]
Definition: opus.h:121
OpusStreamContext
Definition: opus.h:101
OpusContext::apply_phase_inv
int apply_phase_inv
Definition: opus.h:165
OpusStreamContext::remaining_out_size
int remaining_out_size
Definition: opus.h:130
s
#define s(width, name)
Definition: cbs_vp9.c:257
OpusStreamContext::fdsp
AVFloatDSPContext * fdsp
Definition: opus.h:118
OpusStreamContext::redundancy_idx
int redundancy_idx
Definition: opus.h:143
ff_silk_init
int ff_silk_init(AVCodecContext *avctx, SilkContext **ps, int output_channels)
Definition: opus_silk.c:875
OpusPacket::frame_duration
int frame_duration
frame duration, in samples @ 48kHz
Definition: opus.h:96
OpusContext::av_class
AVClass * av_class
Definition: opus.h:163
OpusStreamContext::sync_buffer
AVAudioFifo * sync_buffer
Definition: opus.h:112
ff_silk_flush
void ff_silk_flush(SilkContext *s)
Definition: opus_silk.c:867
SwrContext
The libswresample context.
Definition: swresample_internal.h:95
f
#define f(width, name)
Definition: cbs_vp9.c:255
SilkContext
Definition: opus_silk.c:45
OpusContext::nb_stereo_streams
int nb_stereo_streams
Definition: opus.h:168
OPUS_BANDWIDTH_WIDEBAND
@ OPUS_BANDWIDTH_WIDEBAND
Definition: opus.h:74
OPUS_MODE_NB
@ OPUS_MODE_NB
Definition: opus.h:68
OPUS_MODE_CELT
@ OPUS_MODE_CELT
Definition: opus.h:66
ff_silk_decode_superframe
int ff_silk_decode_superframe(SilkContext *s, OpusRangeCoder *rc, float *output[2], enum OpusBandwidth bandwidth, int coded_channels, int duration_ms)
Decode the LP layer of one Opus frame (which may correspond to several SILK frames).
Definition: opus_silk.c:786
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
ff_opus_parse_packet
int ff_opus_parse_packet(OpusPacket *pkt, const uint8_t *buf, int buf_size, int self_delimited)
Parse Opus packet info from raw packet data.
Definition: opus.c:91
OPUS_BANDWITH_NB
@ OPUS_BANDWITH_NB
Definition: opus.h:78
OpusStreamContext::silk_samplerate
int silk_samplerate
Definition: opus.h:137
OpusStreamContext::packet
OpusPacket packet
Definition: opus.h:141
OpusContext::streams
OpusStreamContext * streams
Definition: opus.h:164
OpusStreamContext::out_dummy_allocated_size
int out_dummy_allocated_size
Definition: opus.h:133
OpusContext::gain_i
int16_t gain_i
Definition: opus.h:171
OpusStreamContext::redundancy_rc
OpusRangeCoder redundancy_rc
Definition: opus.h:115
OpusContext::fdsp
AVFloatDSPContext * fdsp
Definition: opus.h:170
OPUS_BANDWIDTH_SUPERWIDEBAND
@ OPUS_BANDWIDTH_SUPERWIDEBAND
Definition: opus.h:75
swresample.h
float_dsp.h
ff_opus_parse_extradata
int ff_opus_parse_extradata(AVCodecContext *avctx, OpusContext *s)
Definition: opus.c:292
OpusRangeCoder
Definition: opus_rc.h:40
OpusStreamContext::silk
SilkContext * silk
Definition: opus.h:116
AVFloatDSPContext
Definition: float_dsp.h:24
frame.h
OpusPacket::data_size
int data_size
size of the useful data – packet size - padding
Definition: opus.h:87
encode
static void encode(AVCodecContext *ctx, AVFrame *frame, AVPacket *pkt, FILE *output)
Definition: encode_audio.c:95
OpusContext::channel_maps
ChannelMap * channel_maps
Definition: opus.h:174
DECLARE_ALIGNED
#define DECLARE_ALIGNED(n, t, v)
Definition: mem.h:117
ChannelMap::silence
int silence
Definition: opus.h:159
OpusContext::nb_streams
int nb_streams
Definition: opus.h:167
OpusPacket::frame_size
int frame_size[MAX_FRAMES]
frame sizes
Definition: opus.h:95
MAX_FRAMES
#define MAX_FRAMES
Definition: opus.h:39
OPUS_MODE_HYBRID
@ OPUS_MODE_HYBRID
Definition: opus.h:65
uint8_t
uint8_t
Definition: audio_convert.c:194
audio_fifo.h
avcodec.h
OpusPacket::mode
enum OpusMode mode
mode
Definition: opus.h:97
AVCodecContext
main external API structure.
Definition: avcodec.h:536
OpusPacket::frame_offset
int frame_offset[MAX_FRAMES]
frame offsets
Definition: opus.h:94
OpusStreamContext::silk_buf
float silk_buf[2][960]
Definition: opus.h:120
OpusPacket::config
int config
configuration: tells the audio mode, bandwidth, and frame duration
Definition: opus.h:91
OPUS_MODE_SILK
@ OPUS_MODE_SILK
Definition: opus.h:64
OpusPacket
Definition: opus.h:85
ChannelMap
Definition: opus.h:147
ChannelMap::stream_idx
int stream_idx
Definition: opus.h:148
ChannelMap::copy_idx
int copy_idx
Definition: opus.h:156
OpusStreamContext::out_dummy
float * out_dummy
Definition: opus.h:132
OPUS_BANDWIDTH_MEDIUMBAND
@ OPUS_BANDWIDTH_MEDIUMBAND
Definition: opus.h:73
ChannelMap::channel_idx
int channel_idx
Definition: opus.h:149
OpusPacket::stereo
int stereo
whether this packet is mono or stereo
Definition: opus.h:89
OpusStreamContext::celt_buf
float celt_buf[2][960]
Definition: opus.h:122
OpusStreamContext::cur_out
float * cur_out[2]
Definition: opus.h:129
OpusPacket::packet_size
int packet_size
packet size
Definition: opus.h:86
opus_rc.h
ff_silk_free
void ff_silk_free(SilkContext **ps)
Definition: opus_silk.c:862
OpusStreamContext::output_channels
int output_channels
Definition: opus.h:103
OpusStreamContext::redundancy_output
float * redundancy_output[2]
Definition: opus.h:126
OpusBandwidth
OpusBandwidth
Definition: opus.h:71
OpusPacket::frame_count
int frame_count
frame count
Definition: opus.h:93
CeltFrame
Definition: opus_celt.h:93
OpusContext
Definition: opus.h:162