Searched refs:MODE_CELT_ONLY (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/opus/src/src/ |
D | opus_demo.c | 148 {MODE_CELT_ONLY, OPUS_BANDWIDTH_FULLBAND, 960, 1}, 149 {MODE_CELT_ONLY, OPUS_BANDWIDTH_SUPERWIDEBAND, 960, 1}, 150 {MODE_CELT_ONLY, OPUS_BANDWIDTH_WIDEBAND, 960, 1}, 151 {MODE_CELT_ONLY, OPUS_BANDWIDTH_NARROWBAND, 960, 1}, 153 {MODE_CELT_ONLY, OPUS_BANDWIDTH_FULLBAND, 480, 1}, 154 {MODE_CELT_ONLY, OPUS_BANDWIDTH_SUPERWIDEBAND, 480, 1}, 155 {MODE_CELT_ONLY, OPUS_BANDWIDTH_WIDEBAND, 480, 1}, 156 {MODE_CELT_ONLY, OPUS_BANDWIDTH_NARROWBAND, 480, 1}, 158 {MODE_CELT_ONLY, OPUS_BANDWIDTH_FULLBAND, 240, 1}, 159 {MODE_CELT_ONLY, OPUS_BANDWIDTH_SUPERWIDEBAND, 240, 1}, [all …]
|
D | opus_decoder.c | 192 mode = MODE_CELT_ONLY; in opus_packet_get_mode() 281 (mode == MODE_CELT_ONLY && st->prev_mode != MODE_CELT_ONLY && !st->prev_redundancy) in opus_decode_frame() 282 || (mode != MODE_CELT_ONLY && st->prev_mode == MODE_CELT_ONLY) ) in opus_decode_frame() 287 if (mode == MODE_CELT_ONLY) in opus_decode_frame() 293 if (transition && mode == MODE_CELT_ONLY) in opus_decode_frame() 308 pcm_silk_size = (mode != MODE_CELT_ONLY) ? IMAX(F10, frame_size)*st->channels : 0; in opus_decode_frame() 312 if (mode != MODE_CELT_ONLY) in opus_decode_frame() 317 if (st->prev_mode==MODE_CELT_ONLY) in opus_decode_frame() 367 if (!decode_fec && mode != MODE_CELT_ONLY && data != NULL in opus_decode_frame() 396 if (mode != MODE_CELT_ONLY) in opus_decode_frame() [all …]
|
D | opus_encoder.c | 299 } else if (mode == MODE_CELT_ONLY) in gen_toc() 1075 tocmode = MODE_CELT_ONLY; in opus_encode_native() 1080 else if (tocmode==MODE_CELT_ONLY&&bw==OPUS_BANDWIDTH_MEDIUMBAND) in opus_encode_native() 1143 st->mode = MODE_CELT_ONLY; in opus_encode_native() 1151 st->mode = MODE_CELT_ONLY; in opus_encode_native() 1155 if (st->prev_mode==MODE_CELT_ONLY) in opus_encode_native() 1156 st->mode = MODE_CELT_ONLY; in opus_encode_native() 1177 if (st->prev_mode == MODE_CELT_ONLY) in opus_encode_native() 1182 st->mode = (equiv_rate >= threshold) ? MODE_CELT_ONLY: MODE_SILK_ONLY; in opus_encode_native() 1196 if (st->mode != MODE_CELT_ONLY && frame_size < st->Fs/100) in opus_encode_native() [all …]
|
D | opus_private.h | 60 #define MODE_CELT_ONLY 1002 macro
|
D | opus_multistream_encoder.c | 781 opus_encoder_ctl(enc, OPUS_SET_FORCE_MODE(MODE_CELT_ONLY)); in opus_multistream_encode_native()
|