Home
last modified time | relevance | path

Searched refs:bandwidth_code (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dac3enc.h206 int bandwidth_code; ///< bandwidth code (0 to 60) (chbwcod) member
Dac3enc.c331 block->end_freq[ch] = s->bandwidth_code * 3 + 73; in ff_ac3_compute_coupling_strategy()
1112 max_end_freq = s->bandwidth_code * 3 + 73; in count_mantissa_bits()
1545 put_bits(&s->pb, 6, s->bandwidth_code); in output_audio_block()
2358 s->bandwidth_code = av_clip((fbw_coeffs - 73) / 3, 0, 60); in set_bandwidth()
2361 …s->bandwidth_code = ac3_bandwidth_tab[s->fbw_channels-1][s->bit_alloc.sr_code][s->frame_size_code/… in set_bandwidth()
2368 s->blocks[blk].end_freq[ch] = s->bandwidth_code * 3 + 73; in set_bandwidth()
2395 cpl_end_band = s->bandwidth_code / 4 + 3; in set_bandwidth()
Dac3dec.c1196 int bandwidth_code = get_bits(gbc, 6); in decode_audio_block() local
1197 if (bandwidth_code > 60) { in decode_audio_block()
1198 av_log(s->avctx, AV_LOG_ERROR, "bandwidth code = %d > 60\n", bandwidth_code); in decode_audio_block()
1201 s->end_freq[ch] = bandwidth_code * 3 + 73; in decode_audio_block()