FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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 
33 
34 #include "avcodec.h"
35 #include "opus_rc.h"
36 
37 #define MAX_FRAME_SIZE 1275
38 #define MAX_FRAMES 48
39 #define MAX_PACKET_DUR 5760
40 
41 #define CELT_SHORT_BLOCKSIZE 120
42 #define CELT_OVERLAP CELT_SHORT_BLOCKSIZE
43 #define CELT_MAX_LOG_BLOCKS 3
44 #define CELT_MAX_FRAME_SIZE (CELT_SHORT_BLOCKSIZE * (1 << CELT_MAX_LOG_BLOCKS))
45 #define CELT_MAX_BANDS 21
46 
47 #define SILK_HISTORY 322
48 #define SILK_MAX_LPC 16
49 
50 #define ROUND_MULL(a,b,s) (((MUL64(a, b) >> ((s) - 1)) + 1) >> 1)
51 #define ROUND_MUL16(a,b) ((MUL16(a, b) + 16384) >> 15)
52 
53 #define OPUS_TS_HEADER 0x7FE0 // 0x3ff (11 bits)
54 #define OPUS_TS_MASK 0xFFE0 // top 11 bits
55 
56 static const uint8_t opus_default_extradata[30] = {
57  'O', 'p', 'u', 's', 'H', 'e', 'a', 'd',
58  1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
59  0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
60 };
61 
62 enum OpusMode {
66 
68 };
69 
76 
78 };
79 
80 typedef struct SilkContext SilkContext;
81 
82 typedef struct CeltFrame CeltFrame;
83 
84 typedef struct OpusPacket {
85  int packet_size; /**< packet size */
86  int data_size; /**< size of the useful data -- packet size - padding */
87  int code; /**< packet code: specifies the frame layout */
88  int stereo; /**< whether this packet is mono or stereo */
89  int vbr; /**< vbr flag */
90  int config; /**< configuration: tells the audio mode,
91  ** bandwidth, and frame duration */
92  int frame_count; /**< frame count */
93  int frame_offset[MAX_FRAMES]; /**< frame offsets */
94  int frame_size[MAX_FRAMES]; /**< frame sizes */
95  int frame_duration; /**< frame duration, in samples @ 48kHz */
96  enum OpusMode mode; /**< mode */
97  enum OpusBandwidth bandwidth; /**< bandwidth */
98 } OpusPacket;
99 
100 typedef struct OpusStreamContext {
103 
109 
110  float silk_buf[2][960];
111  float *silk_output[2];
112  DECLARE_ALIGNED(32, float, celt_buf)[2][960];
113  float *celt_output[2];
114 
115  float redundancy_buf[2][960];
116  float *redundancy_output[2];
117 
118  /* data buffers for the final output data */
119  float *out[2];
120  int out_size;
121 
122  float *out_dummy;
124 
128  /* number of samples we still want to get from the resampler */
130 
132 
135 
136 // a mapping between an opus stream and an output channel
137 typedef struct ChannelMap {
140 
141  // when a single decoded channel is mapped to multiple output channels, we
142  // write to the first output directly and copy from it to the others
143  // this field is set to 1 for those copied output channels
144  int copy;
145  // this is the index of the output channel to copy from
146  int copy_idx;
147 
148  // this channel is silent
149  int silence;
150 } ChannelMap;
151 
152 typedef struct OpusContext {
154 
155  /* current output buffers for each streams */
156  float **out;
157  int *out_size;
158  /* Buffers for synchronizing the streams when they have different
159  * resampling delays */
161  /* number of decoded samples for each stream */
163 
166 
168  int16_t gain_i;
169  float gain;
170 
172 } OpusContext;
173 
174 int ff_opus_parse_packet(OpusPacket *pkt, const uint8_t *buf, int buf_size,
175  int self_delimited);
176 
178 
179 int ff_silk_init(AVCodecContext *avctx, SilkContext **ps, int output_channels);
180 void ff_silk_free(SilkContext **ps);
182 
183 /**
184  * Decode the LP layer of one Opus frame (which may correspond to several SILK
185  * frames).
186  */
188  float *output[2],
189  enum OpusBandwidth bandwidth, int coded_channels,
190  int duration_ms);
191 
192 #endif /* AVCODEC_OPUS_H */
const char * s
Definition: avisynth_c.h:768
AVAudioFifo ** sync_buffers
Definition: opus.h:160
int frame_count
frame count
Definition: opus.h:92
int nb_stereo_streams
Definition: opus.h:165
float redundancy_buf[2][960]
Definition: opus.h:115
int output_channels
Definition: opus.h:102
int delayed_samples
Definition: opus.h:129
float gain
Definition: opus.h:169
static AVPacket pkt
int vbr
vbr flag
Definition: opus.h:89
int16_t gain_i
Definition: opus.h:168
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:89
int * decoded_samples
Definition: opus.h:162
uint8_t
int copy
Definition: opus.h:144
SilkContext * silk
Definition: opus.h:106
#define DECLARE_ALIGNED(n, t, v)
Declare a variable that is aligned in memory.
Definition: mem.h:104
float * silk_output[2]
Definition: opus.h:111
AVFloatDSPContext * fdsp
Definition: opus.h:108
ChannelMap * channel_maps
Definition: opus.h:171
libswresample public header
int nb_streams
Definition: opus.h:164
static const uint8_t opus_default_extradata[30]
Definition: opus.h:56
int ff_opus_parse_extradata(AVCodecContext *avctx, OpusContext *s)
Definition: opus.c:290
The libswresample context.
AVFloatDSPContext * fdsp
Definition: opus.h:167
reference-counted frame API
Context for an Audio FIFO Buffer.
Definition: audio_fifo.c:34
float * out[2]
Definition: opus.h:119
int frame_size[MAX_FRAMES]
frame sizes
Definition: opus.h:94
int frame_duration
frame duration, in samples @ 48kHz
Definition: opus.h:95
float celt_buf[2][960]
Definition: opus.h:112
SwrContext * swr
Definition: opus.h:125
int out_dummy_allocated_size
Definition: opus.h:123
float silk_buf[2][960]
Definition: opus.h:110
int silence
Definition: opus.h:149
CeltFrame * celt
Definition: opus.h:107
float * out_dummy
Definition: opus.h:122
Libavcodec external API header.
OpusPacket packet
Definition: opus.h:131
void ff_silk_flush(SilkContext *s)
Definition: opus_silk.c:843
main external API structure.
Definition: avcodec.h:1761
int ff_silk_init(AVCodecContext *avctx, SilkContext **ps, int output_channels)
Definition: opus_silk.c:851
void * buf
Definition: avisynth_c.h:690
int config
configuration: tells the audio mode, bandwidth, and frame duration
Definition: opus.h:90
void ff_silk_free(SilkContext **ps)
Definition: opus_silk.c:838
enum OpusMode mode
mode
Definition: opus.h:96
int copy_idx
Definition: opus.h:146
int stereo
whether this packet is mono or stereo
Definition: opus.h:88
AVCodecContext * avctx
Definition: opus.h:101
float ** out
Definition: opus.h:156
int data_size
size of the useful data – packet size - padding
Definition: opus.h:86
int channel_idx
Definition: opus.h:139
int redundancy_idx
Definition: opus.h:133
float * celt_output[2]
Definition: opus.h:113
OpusRangeCoder rc
Definition: opus.h:104
int stream_idx
Definition: opus.h:138
int * out_size
Definition: opus.h:157
OpusBandwidth
Definition: opus.h:70
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:774
OpusStreamContext * streams
Definition: opus.h:153
int packet_size
packet size
Definition: opus.h:85
OpusRangeCoder redundancy_rc
Definition: opus.h:105
Audio FIFO Buffer.
OpusMode
Definition: opus.h:62
int frame_offset[MAX_FRAMES]
frame offsets
Definition: opus.h:93
enum OpusBandwidth bandwidth
bandwidth
Definition: opus.h:97
float * redundancy_output[2]
Definition: opus.h:116
AVAudioFifo * celt_delay
Definition: opus.h:126
int silk_samplerate
Definition: opus.h:127
int code
packet code: specifies the frame layout
Definition: opus.h:87
#define MAX_FRAMES
Definition: opus.h:38