Searched refs:MODE_CELT_ONLY (Results 1 – 5 of 5) sorted by relevance
/external/libopus/src/ |
D | opus_demo.c | 139 {MODE_CELT_ONLY, OPUS_BANDWIDTH_FULLBAND, 960, 1}, 140 {MODE_CELT_ONLY, OPUS_BANDWIDTH_SUPERWIDEBAND, 960, 1}, 141 {MODE_CELT_ONLY, OPUS_BANDWIDTH_WIDEBAND, 960, 1}, 142 {MODE_CELT_ONLY, OPUS_BANDWIDTH_NARROWBAND, 960, 1}, 144 {MODE_CELT_ONLY, OPUS_BANDWIDTH_FULLBAND, 480, 1}, 145 {MODE_CELT_ONLY, OPUS_BANDWIDTH_SUPERWIDEBAND, 480, 1}, 146 {MODE_CELT_ONLY, OPUS_BANDWIDTH_WIDEBAND, 480, 1}, 147 {MODE_CELT_ONLY, OPUS_BANDWIDTH_NARROWBAND, 480, 1}, 149 {MODE_CELT_ONLY, OPUS_BANDWIDTH_FULLBAND, 240, 1}, 150 {MODE_CELT_ONLY, OPUS_BANDWIDTH_SUPERWIDEBAND, 240, 1}, [all …]
|
D | opus_decoder.c | 190 mode = MODE_CELT_ONLY; in opus_packet_get_mode() 298 celt_accum = (mode != MODE_CELT_ONLY) && (frame_size >= F10); in opus_decode_frame() 306 (mode == MODE_CELT_ONLY && st->prev_mode != MODE_CELT_ONLY && !st->prev_redundancy) in opus_decode_frame() 307 || (mode != MODE_CELT_ONLY && st->prev_mode == MODE_CELT_ONLY) ) in opus_decode_frame() 312 if (mode == MODE_CELT_ONLY) in opus_decode_frame() 318 if (transition && mode == MODE_CELT_ONLY) in opus_decode_frame() 333 …pcm_silk_size = (mode != MODE_CELT_ONLY && !celt_accum) ? IMAX(F10, frame_size)*st->channels : ALL… in opus_decode_frame() 337 if (mode != MODE_CELT_ONLY) in opus_decode_frame() 348 if (st->prev_mode==MODE_CELT_ONLY) in opus_decode_frame() 398 if (!decode_fec && mode != MODE_CELT_ONLY && data != NULL in opus_decode_frame() [all …]
|
D | opus_encoder.c | 268 } else if (mode == MODE_CELT_ONLY) in gen_toc() 1071 tocmode = MODE_CELT_ONLY; in opus_encode_native() 1076 else if (tocmode==MODE_CELT_ONLY&&bw==OPUS_BANDWIDTH_MEDIUMBAND) in opus_encode_native() 1140 st->mode = MODE_CELT_ONLY; in opus_encode_native() 1148 st->mode = MODE_CELT_ONLY; in opus_encode_native() 1152 if (st->prev_mode==MODE_CELT_ONLY) in opus_encode_native() 1153 st->mode = MODE_CELT_ONLY; in opus_encode_native() 1174 if (st->prev_mode == MODE_CELT_ONLY) in opus_encode_native() 1179 st->mode = (equiv_rate >= threshold) ? MODE_CELT_ONLY: MODE_SILK_ONLY; in opus_encode_native() 1193 if (st->mode != MODE_CELT_ONLY && frame_size < st->Fs/100) in opus_encode_native() [all …]
|
D | opus_private.h | 62 #define MODE_CELT_ONLY 1002 macro
|
D | opus_multistream_encoder.c | 951 opus_encoder_ctl(enc, OPUS_SET_FORCE_MODE(MODE_CELT_ONLY)); in opus_multistream_encode_native() 957 opus_encoder_ctl(enc, OPUS_SET_FORCE_MODE(MODE_CELT_ONLY)); in opus_multistream_encode_native()
|