23 #include <opus_multistream.h> 37 #define OPUS_HEAD_SIZE 19 42 int ret, channel_map = 0, gain_db = 0, nb_streams, nb_coupled;
43 uint8_t mapping_arr[8] = { 0, 1 }, *mapping;
58 if (nb_streams + nb_coupled != avc->
channels)
62 if (avc->
channels > 2 || channel_map) {
64 "No channel mapping for %d channels.\n", avc->
channels);
69 mapping = mapping_arr;
77 for (ch = 0; ch < avc->
channels; ch++)
78 mapping_arr[ch] = mapping[vorbis_offset[ch]];
79 mapping = mapping_arr;
83 nb_streams, nb_coupled,
91 ret = opus_multistream_decoder_ctl(opus->
dec, OPUS_SET_GAIN(gain_db));
105 opus_multistream_decoder_destroy(opus->
dec);
109 #define MAX_FRAME_SIZE (960 * 6) 126 nb_samples = opus_multistream_decode(opus->
dec, pkt->
data, pkt->
size,
127 (opus_int16 *)frame->
data[0],
130 nb_samples = opus_multistream_decode_float(opus->
dec, pkt->
data, pkt->
size,
131 (
float *)frame->
data[0],
134 if (nb_samples < 0) {
136 opus_strerror(nb_samples));
150 opus_multistream_decoder_ctl(opus->
dec, OPUS_RESET_STATE);
static int libopus_decode(AVCodecContext *avc, void *data, int *got_frame_ptr, AVPacket *pkt)
This structure describes decoded (raw) audio or video data.
#define AV_LOG_WARNING
Something somehow does not look correct.
AVCodec ff_libopus_decoder
int ff_opus_error_to_averror(int err)
enum AVSampleFormat sample_fmt
audio sample format
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
enum AVSampleFormat request_sample_fmt
Used to request a sample format from the decoder.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
simple assert() macros that are a bit more flexible than ISO C assert().
void av_log(void *avcl, int level, const char *fmt,...)
const char * name
Name of the codec implementation.
uint64_t channel_layout
Audio channel layout.
static av_cold int libopus_decode_init(AVCodecContext *avc)
Libavcodec external API header.
AVSampleFormat
Audio Sample Formats.
int sample_rate
samples per second
main external API structure.
const uint64_t ff_vorbis_channel_layouts[9]
static void libopus_flush(AVCodecContext *avc)
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
static av_const int sign_extend(int val, unsigned bits)
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
common internal api header.
int channels
number of audio channels
static av_cold int libopus_decode_close(AVCodecContext *avc)
const uint8_t ff_vorbis_channel_layout_offsets[8][8]
This structure stores compressed data.
int nb_samples
number of audio samples (per channel) described by this frame