2 * Copyright (c) 2012 Andrew D'Addesio
3 * Copyright (c) 2013-2014 Mozilla Corporation
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 * Opus decoder/parser shared code
29 #include "libavutil/error.h"
30 #include "libavutil/ffmath.h"
32 #include "opus_celt.h"
37 static const uint16_t opus_frame_duration[32] = {
50 * Read a 1- or 2-byte frame length
52 static inline int xiph_lacing_16bit(const uint8_t **ptr, const uint8_t *end)
57 return AVERROR_INVALIDDATA;
61 return AVERROR_INVALIDDATA;
68 * Read a multi-byte length (used for code 3 packet padding size)
70 static inline int xiph_lacing_full(const uint8_t **ptr, const uint8_t *end)
76 if (*ptr >= end || val > INT_MAX - 254)
77 return AVERROR_INVALIDDATA;
89 * Parse Opus packet info from raw packet data
91 int ff_opus_parse_packet(OpusPacket *pkt, const uint8_t *buf, int buf_size,
94 const uint8_t *ptr = buf;
95 const uint8_t *end = buf + buf_size;
104 pkt->code = (i ) & 0x3;
105 pkt->stereo = (i >> 2) & 0x1;
106 pkt->config = (i >> 3) & 0x1F;
108 /* code 2 and code 3 packets have at least 1 byte after the TOC */
109 if (pkt->code >= 2 && buf_size < 2)
115 pkt->frame_count = 1;
118 if (self_delimiting) {
119 int len = xiph_lacing_16bit(&ptr, end);
120 if (len < 0 || len > end - ptr)
123 buf_size = end - buf;
126 frame_bytes = end - ptr;
127 if (frame_bytes > MAX_FRAME_SIZE)
129 pkt->frame_offset[0] = ptr - buf;
130 pkt->frame_size[0] = frame_bytes;
133 /* 2 frames, equal size */
134 pkt->frame_count = 2;
137 if (self_delimiting) {
138 int len = xiph_lacing_16bit(&ptr, end);
139 if (len < 0 || 2 * len > end - ptr)
142 buf_size = end - buf;
145 frame_bytes = end - ptr;
146 if (frame_bytes & 1 || frame_bytes >> 1 > MAX_FRAME_SIZE)
148 pkt->frame_offset[0] = ptr - buf;
149 pkt->frame_size[0] = frame_bytes >> 1;
150 pkt->frame_offset[1] = pkt->frame_offset[0] + pkt->frame_size[0];
151 pkt->frame_size[1] = frame_bytes >> 1;
154 /* 2 frames, different sizes */
155 pkt->frame_count = 2;
158 /* read 1st frame size */
159 frame_bytes = xiph_lacing_16bit(&ptr, end);
163 if (self_delimiting) {
164 int len = xiph_lacing_16bit(&ptr, end);
165 if (len < 0 || len + frame_bytes > end - ptr)
167 end = ptr + frame_bytes + len;
168 buf_size = end - buf;
171 pkt->frame_offset[0] = ptr - buf;
172 pkt->frame_size[0] = frame_bytes;
174 /* calculate 2nd frame size */
175 frame_bytes = end - ptr - pkt->frame_size[0];
176 if (frame_bytes < 0 || frame_bytes > MAX_FRAME_SIZE)
178 pkt->frame_offset[1] = pkt->frame_offset[0] + pkt->frame_size[0];
179 pkt->frame_size[1] = frame_bytes;
182 /* 1 to 48 frames, can be different sizes */
184 pkt->frame_count = (i ) & 0x3F;
185 padding = (i >> 6) & 0x01;
186 pkt->vbr = (i >> 7) & 0x01;
188 if (pkt->frame_count == 0 || pkt->frame_count > MAX_FRAMES)
191 /* read padding size */
193 padding = xiph_lacing_full(&ptr, end);
198 /* read frame sizes */
200 /* for VBR, all frames except the final one have their size coded
201 in the bitstream. the last frame size is implicit. */
203 for (i = 0; i < pkt->frame_count - 1; i++) {
204 frame_bytes = xiph_lacing_16bit(&ptr, end);
207 pkt->frame_size[i] = frame_bytes;
208 total_bytes += frame_bytes;
211 if (self_delimiting) {
212 int len = xiph_lacing_16bit(&ptr, end);
213 if (len < 0 || len + total_bytes + padding > end - ptr)
215 end = ptr + total_bytes + len + padding;
216 buf_size = end - buf;
219 frame_bytes = end - ptr - padding;
220 if (total_bytes > frame_bytes)
222 pkt->frame_offset[0] = ptr - buf;
223 for (i = 1; i < pkt->frame_count; i++)
224 pkt->frame_offset[i] = pkt->frame_offset[i-1] + pkt->frame_size[i-1];
225 pkt->frame_size[pkt->frame_count-1] = frame_bytes - total_bytes;
227 /* for CBR, the remaining packet bytes are divided evenly between
229 if (self_delimiting) {
230 frame_bytes = xiph_lacing_16bit(&ptr, end);
231 if (frame_bytes < 0 || pkt->frame_count * frame_bytes + padding > end - ptr)
233 end = ptr + pkt->frame_count * frame_bytes + padding;
234 buf_size = end - buf;
236 frame_bytes = end - ptr - padding;
237 if (frame_bytes % pkt->frame_count ||
238 frame_bytes / pkt->frame_count > MAX_FRAME_SIZE)
240 frame_bytes /= pkt->frame_count;
243 pkt->frame_offset[0] = ptr - buf;
244 pkt->frame_size[0] = frame_bytes;
245 for (i = 1; i < pkt->frame_count; i++) {
246 pkt->frame_offset[i] = pkt->frame_offset[i-1] + pkt->frame_size[i-1];
247 pkt->frame_size[i] = frame_bytes;
252 pkt->packet_size = buf_size;
253 pkt->data_size = pkt->packet_size - padding;
255 /* total packet duration cannot be larger than 120ms */
256 pkt->frame_duration = opus_frame_duration[pkt->config];
257 if (pkt->frame_duration * pkt->frame_count > MAX_PACKET_DUR)
260 /* set mode and bandwidth */
261 if (pkt->config < 12) {
262 pkt->mode = OPUS_MODE_SILK;
263 pkt->bandwidth = pkt->config >> 2;
264 } else if (pkt->config < 16) {
265 pkt->mode = OPUS_MODE_HYBRID;
266 pkt->bandwidth = OPUS_BANDWIDTH_SUPERWIDEBAND + (pkt->config >= 14);
268 pkt->mode = OPUS_MODE_CELT;
269 pkt->bandwidth = (pkt->config - 16) >> 2;
270 /* skip medium band */
278 memset(pkt, 0, sizeof(*pkt));
279 return AVERROR_INVALIDDATA;
282 static int channel_reorder_vorbis(int nb_channels, int channel_idx)
284 return ff_vorbis_channel_layout_offsets[nb_channels - 1][channel_idx];
287 static int channel_reorder_unknown(int nb_channels, int channel_idx)
292 av_cold int ff_opus_parse_extradata(AVCodecContext *avctx,
295 static const uint8_t default_channel_map[2] = { 0, 1 };
297 int (*channel_reorder)(int, int) = channel_reorder_unknown;
299 const uint8_t *extradata, *channel_map;
301 int version, channels, map_type, streams, stereo_streams, i, j;
304 if (!avctx->extradata) {
305 if (avctx->channels > 2) {
306 av_log(avctx, AV_LOG_ERROR,
307 "Multichannel configuration without extradata.\n");
308 return AVERROR(EINVAL);
310 extradata = opus_default_extradata;
311 extradata_size = sizeof(opus_default_extradata);
313 extradata = avctx->extradata;
314 extradata_size = avctx->extradata_size;
317 if (extradata_size < 19) {
318 av_log(avctx, AV_LOG_ERROR, "Invalid extradata size: %d\n",
320 return AVERROR_INVALIDDATA;
323 version = extradata[8];
325 avpriv_request_sample(avctx, "Extradata version %d", version);
326 return AVERROR_PATCHWELCOME;
329 avctx->delay = AV_RL16(extradata + 10);
331 avctx->internal->skip_samples = avctx->delay;
333 channels = avctx->extradata ? extradata[9] : (avctx->channels == 1) ? 1 : 2;
335 av_log(avctx, AV_LOG_ERROR, "Zero channel count specified in the extradata\n");
336 return AVERROR_INVALIDDATA;
339 s->gain_i = AV_RL16(extradata + 16);
341 s->gain = ff_exp10(s->gain_i / (20.0 * 256));
343 map_type = extradata[18];
346 av_log(avctx, AV_LOG_ERROR,
347 "Channel mapping 0 is only specified for up to 2 channels\n");
348 return AVERROR_INVALIDDATA;
350 layout = (channels == 1) ? AV_CH_LAYOUT_MONO : AV_CH_LAYOUT_STEREO;
352 stereo_streams = channels - 1;
353 channel_map = default_channel_map;
354 } else if (map_type == 1 || map_type == 2 || map_type == 255) {
355 if (extradata_size < 21 + channels) {
356 av_log(avctx, AV_LOG_ERROR, "Invalid extradata size: %d\n",
358 return AVERROR_INVALIDDATA;
361 streams = extradata[19];
362 stereo_streams = extradata[20];
363 if (!streams || stereo_streams > streams ||
364 streams + stereo_streams > 255) {
365 av_log(avctx, AV_LOG_ERROR,
366 "Invalid stream/stereo stream count: %d/%d\n", streams, stereo_streams);
367 return AVERROR_INVALIDDATA;
372 av_log(avctx, AV_LOG_ERROR,
373 "Channel mapping 1 is only specified for up to 8 channels\n");
374 return AVERROR_INVALIDDATA;
376 layout = ff_vorbis_channel_layouts[channels - 1];
377 channel_reorder = channel_reorder_vorbis;
378 } else if (map_type == 2) {
379 int ambisonic_order = ff_sqrt(channels) - 1;
380 if (channels != ((ambisonic_order + 1) * (ambisonic_order + 1)) &&
381 channels != ((ambisonic_order + 1) * (ambisonic_order + 1) + 2)) {
382 av_log(avctx, AV_LOG_ERROR,
383 "Channel mapping 2 is only specified for channel counts"
384 " which can be written as (n + 1)^2 or (n + 1)^2 + 2"
385 " for nonnegative integer n\n");
386 return AVERROR_INVALIDDATA;
388 if (channels > 227) {
389 av_log(avctx, AV_LOG_ERROR, "Too many channels\n");
390 return AVERROR_INVALIDDATA;
396 channel_map = extradata + 21;
398 avpriv_request_sample(avctx, "Mapping type %d", map_type);
399 return AVERROR_PATCHWELCOME;
402 s->channel_maps = av_mallocz_array(channels, sizeof(*s->channel_maps));
403 if (!s->channel_maps)
404 return AVERROR(ENOMEM);
406 for (i = 0; i < channels; i++) {
407 ChannelMap *map = &s->channel_maps[i];
408 uint8_t idx = channel_map[channel_reorder(channels, i)];
413 } else if (idx >= streams + stereo_streams) {
414 av_log(avctx, AV_LOG_ERROR,
415 "Invalid channel map for output channel %d: %d\n", i, idx);
416 av_freep(&s->channel_maps);
417 return AVERROR_INVALIDDATA;
420 /* check that we did not see this index yet */
422 for (j = 0; j < i; j++)
423 if (channel_map[channel_reorder(channels, j)] == idx) {
429 if (idx < 2 * stereo_streams) {
430 map->stream_idx = idx / 2;
431 map->channel_idx = idx & 1;
433 map->stream_idx = idx - stereo_streams;
434 map->channel_idx = 0;
438 avctx->channels = channels;
439 avctx->channel_layout = layout;
440 s->nb_streams = streams;
441 s->nb_stereo_streams = stereo_streams;
446 void ff_celt_quant_bands(CeltFrame *f, OpusRangeCoder *rc)
448 float lowband_scratch[8 * 22];
449 float norm1[2 * 8 * 100];
450 float *norm2 = norm1 + 8 * 100;
452 int totalbits = (f->framebits << 3) - f->anticollapse_needed;
454 int update_lowband = 1;
455 int lowband_offset = 0;
459 for (i = f->start_band; i < f->end_band; i++) {
460 uint32_t cm[2] = { (1 << f->blocks) - 1, (1 << f->blocks) - 1 };
461 int band_offset = ff_celt_freq_bands[i] << f->size;
462 int band_size = ff_celt_freq_range[i] << f->size;
463 float *X = f->block[0].coeffs + band_offset;
464 float *Y = (f->channels == 2) ? f->block[1].coeffs + band_offset : NULL;
465 float *norm_loc1, *norm_loc2;
467 int consumed = opus_rc_tell_frac(rc);
468 int effective_lowband = -1;
471 /* Compute how many bits we want to allocate to this band */
472 if (i != f->start_band)
473 f->remaining -= consumed;
474 f->remaining2 = totalbits - consumed - 1;
475 if (i <= f->coded_bands - 1) {
476 int curr_balance = f->remaining / FFMIN(3, f->coded_bands-i);
477 b = av_clip_uintp2(FFMIN(f->remaining2 + 1, f->pulses[i] + curr_balance), 14);
480 if ((ff_celt_freq_bands[i] - ff_celt_freq_range[i] >= ff_celt_freq_bands[f->start_band] ||
481 i == f->start_band + 1) && (update_lowband || lowband_offset == 0))
484 if (i == f->start_band + 1) {
485 /* Special Hybrid Folding (RFC 8251 section 9). Copy the first band into
486 the second to ensure the second band never has to use the LCG. */
487 int count = (ff_celt_freq_range[i] - ff_celt_freq_range[i-1]) << f->size;
489 memcpy(&norm1[band_offset], &norm1[band_offset - count], count * sizeof(float));
491 if (f->channels == 2)
492 memcpy(&norm2[band_offset], &norm2[band_offset - count], count * sizeof(float));
495 /* Get a conservative estimate of the collapse_mask's for the bands we're
496 going to be folding from. */
497 if (lowband_offset != 0 && (f->spread != CELT_SPREAD_AGGRESSIVE ||
498 f->blocks > 1 || f->tf_change[i] < 0)) {
499 int foldstart, foldend;
501 /* This ensures we never repeat spectral content within one band */
502 effective_lowband = FFMAX(ff_celt_freq_bands[f->start_band],
503 ff_celt_freq_bands[lowband_offset] - ff_celt_freq_range[i]);
504 foldstart = lowband_offset;
505 while (ff_celt_freq_bands[--foldstart] > effective_lowband);
506 foldend = lowband_offset - 1;
507 while (++foldend < i && ff_celt_freq_bands[foldend] < effective_lowband + ff_celt_freq_range[i]);
510 for (j = foldstart; j < foldend; j++) {
511 cm[0] |= f->block[0].collapse_masks[j];
512 cm[1] |= f->block[f->channels - 1].collapse_masks[j];
516 if (f->dual_stereo && i == f->intensity_stereo) {
517 /* Switch off dual stereo to do intensity */
519 for (j = ff_celt_freq_bands[f->start_band] << f->size; j < band_offset; j++)
520 norm1[j] = (norm1[j] + norm2[j]) / 2;
523 norm_loc1 = effective_lowband != -1 ? norm1 + (effective_lowband << f->size) : NULL;
524 norm_loc2 = effective_lowband != -1 ? norm2 + (effective_lowband << f->size) : NULL;
526 if (f->dual_stereo) {
527 cm[0] = f->pvq->quant_band(f->pvq, f, rc, i, X, NULL, band_size, b >> 1,
528 f->blocks, norm_loc1, f->size,
529 norm1 + band_offset, 0, 1.0f,
530 lowband_scratch, cm[0]);
532 cm[1] = f->pvq->quant_band(f->pvq, f, rc, i, Y, NULL, band_size, b >> 1,
533 f->blocks, norm_loc2, f->size,
534 norm2 + band_offset, 0, 1.0f,
535 lowband_scratch, cm[1]);
537 cm[0] = f->pvq->quant_band(f->pvq, f, rc, i, X, Y, band_size, b >> 0,
538 f->blocks, norm_loc1, f->size,
539 norm1 + band_offset, 0, 1.0f,
540 lowband_scratch, cm[0] | cm[1]);
544 f->block[0].collapse_masks[i] = (uint8_t)cm[0];
545 f->block[f->channels - 1].collapse_masks[i] = (uint8_t)cm[1];
546 f->remaining += f->pulses[i] + consumed;
548 /* Update the folding position only as long as we have 1 bit/sample depth */
549 update_lowband = (b > band_size << 3);
553 #define NORMC(bits) ((bits) << (f->channels - 1) << f->size >> 2)
555 void ff_celt_bitalloc(CeltFrame *f, OpusRangeCoder *rc, int encode)
557 int i, j, low, high, total, done, bandbits, remaining, tbits_8ths;
558 int skip_startband = f->start_band;
560 int intensitystereo_bit = 0;
561 int dualstereo_bit = 0;
565 int boost[CELT_MAX_BANDS] = { 0 };
566 int trim_offset[CELT_MAX_BANDS];
567 int threshold[CELT_MAX_BANDS];
568 int bits1[CELT_MAX_BANDS];
569 int bits2[CELT_MAX_BANDS];
572 if (opus_rc_tell(rc) + 4 <= f->framebits) {
574 ff_opus_rc_enc_cdf(rc, f->spread, ff_celt_model_spread);
576 f->spread = ff_opus_rc_dec_cdf(rc, ff_celt_model_spread);
578 f->spread = CELT_SPREAD_NORMAL;
581 /* Initialize static allocation caps */
582 for (i = 0; i < CELT_MAX_BANDS; i++)
583 f->caps[i] = NORMC((ff_celt_static_caps[f->size][f->channels - 1][i] + 64) * ff_celt_freq_range[i]);
586 tbits_8ths = f->framebits << 3;
587 for (i = f->start_band; i < f->end_band; i++) {
588 int quanta = ff_celt_freq_range[i] << (f->channels - 1) << f->size;
589 int b_dynalloc = dynalloc;
590 int boost_amount = f->alloc_boost[i];
591 quanta = FFMIN(quanta << 3, FFMAX(6 << 3, quanta));
593 while (opus_rc_tell_frac(rc) + (b_dynalloc << 3) < tbits_8ths && boost[i] < f->caps[i]) {
596 is_boost = boost_amount--;
597 ff_opus_rc_enc_log(rc, is_boost, b_dynalloc);
599 is_boost = ff_opus_rc_dec_log(rc, b_dynalloc);
606 tbits_8ths -= quanta;
612 dynalloc = FFMAX(dynalloc - 1, 2);
615 /* Allocation trim */
618 if (opus_rc_tell_frac(rc) + (6 << 3) <= tbits_8ths)
620 ff_opus_rc_enc_cdf(rc, f->alloc_trim, ff_celt_model_alloc_trim);
622 f->alloc_trim = ff_opus_rc_dec_cdf(rc, ff_celt_model_alloc_trim);
624 /* Anti-collapse bit reservation */
625 tbits_8ths = (f->framebits << 3) - opus_rc_tell_frac(rc) - 1;
626 f->anticollapse_needed = 0;
627 if (f->transient && f->size >= 2 && tbits_8ths >= ((f->size + 2) << 3))
628 f->anticollapse_needed = 1 << 3;
629 tbits_8ths -= f->anticollapse_needed;
631 /* Band skip bit reservation */
632 if (tbits_8ths >= 1 << 3)
634 tbits_8ths -= skip_bit;
636 /* Intensity/dual stereo bit reservation */
637 if (f->channels == 2) {
638 intensitystereo_bit = ff_celt_log2_frac[f->end_band - f->start_band];
639 if (intensitystereo_bit <= tbits_8ths) {
640 tbits_8ths -= intensitystereo_bit;
641 if (tbits_8ths >= 1 << 3) {
642 dualstereo_bit = 1 << 3;
643 tbits_8ths -= 1 << 3;
646 intensitystereo_bit = 0;
651 for (i = f->start_band; i < f->end_band; i++) {
652 int trim = f->alloc_trim - 5 - f->size;
653 int band = ff_celt_freq_range[i] * (f->end_band - i - 1);
654 int duration = f->size + 3;
655 int scale = duration + f->channels - 1;
657 /* PVQ minimum allocation threshold, below this value the band is
659 threshold[i] = FFMAX(3 * ff_celt_freq_range[i] << duration >> 4,
662 trim_offset[i] = trim * (band << scale) >> 6;
664 if (ff_celt_freq_range[i] << f->size == 1)
665 trim_offset[i] -= f->channels << 3;
670 high = CELT_VECTORS - 1;
671 while (low <= high) {
672 int center = (low + high) >> 1;
675 for (i = f->end_band - 1; i >= f->start_band; i--) {
676 bandbits = NORMC(ff_celt_freq_range[i] * ff_celt_static_alloc[center][i]);
679 bandbits = FFMAX(bandbits + trim_offset[i], 0);
680 bandbits += boost[i];
682 if (bandbits >= threshold[i] || done) {
684 total += FFMIN(bandbits, f->caps[i]);
685 } else if (bandbits >= f->channels << 3) {
686 total += f->channels << 3;
690 if (total > tbits_8ths)
698 for (i = f->start_band; i < f->end_band; i++) {
699 bits1[i] = NORMC(ff_celt_freq_range[i] * ff_celt_static_alloc[low][i]);
700 bits2[i] = high >= CELT_VECTORS ? f->caps[i] :
701 NORMC(ff_celt_freq_range[i] * ff_celt_static_alloc[high][i]);
704 bits1[i] = FFMAX(bits1[i] + trim_offset[i], 0);
706 bits2[i] = FFMAX(bits2[i] + trim_offset[i], 0);
709 bits1[i] += boost[i];
710 bits2[i] += boost[i];
714 bits2[i] = FFMAX(bits2[i] - bits1[i], 0);
719 high = 1 << CELT_ALLOC_STEPS;
720 for (i = 0; i < CELT_ALLOC_STEPS; i++) {
721 int center = (low + high) >> 1;
724 for (j = f->end_band - 1; j >= f->start_band; j--) {
725 bandbits = bits1[j] + (center * bits2[j] >> CELT_ALLOC_STEPS);
727 if (bandbits >= threshold[j] || done) {
729 total += FFMIN(bandbits, f->caps[j]);
730 } else if (bandbits >= f->channels << 3)
731 total += f->channels << 3;
733 if (total > tbits_8ths)
741 for (i = f->end_band - 1; i >= f->start_band; i--) {
742 bandbits = bits1[i] + (low * bits2[i] >> CELT_ALLOC_STEPS);
744 if (bandbits >= threshold[i] || done)
747 bandbits = (bandbits >= f->channels << 3) ?
748 f->channels << 3 : 0;
750 bandbits = FFMIN(bandbits, f->caps[i]);
751 f->pulses[i] = bandbits;
756 for (f->coded_bands = f->end_band; ; f->coded_bands--) {
758 j = f->coded_bands - 1;
760 if (j == skip_startband) {
761 /* all remaining bands are not skipped */
762 tbits_8ths += skip_bit;
766 /* determine the number of bits available for coding "do not skip" markers */
767 remaining = tbits_8ths - total;
768 bandbits = remaining / (ff_celt_freq_bands[j+1] - ff_celt_freq_bands[f->start_band]);
769 remaining -= bandbits * (ff_celt_freq_bands[j+1] - ff_celt_freq_bands[f->start_band]);
770 allocation = f->pulses[j] + bandbits * ff_celt_freq_range[j];
771 allocation += FFMAX(remaining - (ff_celt_freq_bands[j] - ff_celt_freq_bands[f->start_band]), 0);
773 /* a "do not skip" marker is only coded if the allocation is
774 * above the chosen threshold */
775 if (allocation >= FFMAX(threshold[j], (f->channels + 1) << 3)) {
778 do_not_skip = f->coded_bands <= f->skip_band_floor;
779 ff_opus_rc_enc_log(rc, do_not_skip, 1);
781 do_not_skip = ff_opus_rc_dec_log(rc, 1);
788 allocation -= 1 << 3;
791 /* the band is skipped, so reclaim its bits */
792 total -= f->pulses[j];
793 if (intensitystereo_bit) {
794 total -= intensitystereo_bit;
795 intensitystereo_bit = ff_celt_log2_frac[j - f->start_band];
796 total += intensitystereo_bit;
799 total += f->pulses[j] = (allocation >= f->channels << 3) ? f->channels << 3 : 0;
804 if (intensitystereo_bit) {
805 f->intensity_stereo = FFMIN(f->intensity_stereo, f->coded_bands);
806 ff_opus_rc_enc_uint(rc, f->intensity_stereo, f->coded_bands + 1 - f->start_band);
809 f->intensity_stereo = f->dual_stereo = 0;
810 if (intensitystereo_bit)
811 f->intensity_stereo = f->start_band + ff_opus_rc_dec_uint(rc, f->coded_bands + 1 - f->start_band);
815 if (f->intensity_stereo <= f->start_band)
816 tbits_8ths += dualstereo_bit; /* no intensity stereo means no dual stereo */
817 else if (dualstereo_bit)
819 ff_opus_rc_enc_log(rc, f->dual_stereo, 1);
821 f->dual_stereo = ff_opus_rc_dec_log(rc, 1);
823 /* Supply the remaining bits in this frame to lower bands */
824 remaining = tbits_8ths - total;
825 bandbits = remaining / (ff_celt_freq_bands[f->coded_bands] - ff_celt_freq_bands[f->start_band]);
826 remaining -= bandbits * (ff_celt_freq_bands[f->coded_bands] - ff_celt_freq_bands[f->start_band]);
827 for (i = f->start_band; i < f->coded_bands; i++) {
828 const int bits = FFMIN(remaining, ff_celt_freq_range[i]);
829 f->pulses[i] += bits + bandbits * ff_celt_freq_range[i];
833 /* Finally determine the allocation */
834 for (i = f->start_band; i < f->coded_bands; i++) {
835 int N = ff_celt_freq_range[i] << f->size;
836 int prev_extra = extrabits;
837 f->pulses[i] += extrabits;
840 int dof; /* degrees of freedom */
841 int temp; /* dof * channels * log(dof) */
844 int offset; /* fine energy quantization offset, i.e.
845 * extra bits assigned over the standard
848 extrabits = FFMAX(f->pulses[i] - f->caps[i], 0);
849 f->pulses[i] -= extrabits;
851 /* intensity stereo makes use of an extra degree of freedom */
852 dof = N * f->channels + (f->channels == 2 && N > 2 && !f->dual_stereo && i < f->intensity_stereo);
853 temp = dof * (ff_celt_log_freq_range[i] + (f->size << 3));
854 offset = (temp >> 1) - dof * CELT_FINE_OFFSET;
855 if (N == 2) /* dof=2 is the only case that doesn't fit the model */
858 /* grant an additional bias for the first and second pulses */
859 if (f->pulses[i] + offset < 2 * (dof << 3))
861 else if (f->pulses[i] + offset < 3 * (dof << 3))
864 fine_bits = (f->pulses[i] + offset + (dof << 2)) / (dof << 3);
865 max_bits = FFMIN((f->pulses[i] >> 3) >> (f->channels - 1), CELT_MAX_FINE_BITS);
866 max_bits = FFMAX(max_bits, 0);
867 f->fine_bits[i] = av_clip(fine_bits, 0, max_bits);
869 /* If fine_bits was rounded down or capped,
870 * give priority for the final fine energy pass */
871 f->fine_priority[i] = (f->fine_bits[i] * (dof << 3) >= f->pulses[i] + offset);
873 /* the remaining bits are assigned to PVQ */
874 f->pulses[i] -= f->fine_bits[i] << (f->channels - 1) << 3;
876 /* all bits go to fine energy except for the sign bit */
877 extrabits = FFMAX(f->pulses[i] - (f->channels << 3), 0);
878 f->pulses[i] -= extrabits;
880 f->fine_priority[i] = 1;
883 /* hand back a limited number of extra fine energy bits to this band */
885 int fineextra = FFMIN(extrabits >> (f->channels + 2),
886 CELT_MAX_FINE_BITS - f->fine_bits[i]);
887 f->fine_bits[i] += fineextra;
889 fineextra <<= f->channels + 2;
890 f->fine_priority[i] = (fineextra >= extrabits - prev_extra);
891 extrabits -= fineextra;
894 f->remaining = extrabits;
896 /* skipped bands dedicate all of their bits for fine energy */
897 for (; i < f->end_band; i++) {
898 f->fine_bits[i] = f->pulses[i] >> (f->channels - 1) >> 3;
900 f->fine_priority[i] = f->fine_bits[i] < 1;