OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:API_fs_Hz
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/opus/src/silk/
control_audio_bandwidth.c
48
fs_Hz = silk_min( psEncC->desiredInternal_fs_Hz, psEncC->
API_fs_Hz
);
50
} else if( fs_Hz > psEncC->
API_fs_Hz
|| fs_Hz > psEncC->maxInternal_fs_Hz || fs_Hz < psEncC->minInternal_fs_Hz ) {
52
fs_Hz = psEncC->
API_fs_Hz
;
control_codec.c
78
psEnc->sCmn.
API_fs_Hz
= encControl->API_sampleRate;
89
if( psEnc->sCmn.
API_fs_Hz
!= psEnc->sCmn.prev_API_fs_Hz && psEnc->sCmn.fs_kHz > 0 ) {
143
if( psEnc->sCmn.fs_kHz != fs_kHz || psEnc->sCmn.prev_API_fs_Hz != psEnc->sCmn.
API_fs_Hz
)
146
/* Initialize the resampler for enc_API.c preparing resampling from
API_fs_Hz
to fs_kHz */
147
ret += silk_resampler_init( &psEnc->sCmn.resampler_state, psEnc->sCmn.
API_fs_Hz
, fs_kHz * 1000, 1 );
171
/* Initialize resampler for temporary resampling of x_buf data to
API_fs_Hz
*/
173
ret += silk_resampler_init( temp_resampler_state, silk_SMULBB( psEnc->sCmn.fs_kHz, 1000 ), psEnc->sCmn.
API_fs_Hz
, 0 );
176
api_buf_samples = buf_length_ms * silk_DIV32_16( psEnc->sCmn.
API_fs_Hz
, 1000 );
178
/* Temporary resampling of x_buf data to
API_fs_Hz
*/
182
/* Initialize the resampler for enc_API.c preparing resampling from
API_fs_Hz
to fs_kHz *
[
all
...]
structs.h
147
opus_int32
API_fs_Hz
; /* API sampling frequency (Hz) */
enc_API.c
115
encStatus->API_sampleRate = state_Fxx[ 0 ].sCmn.
API_fs_Hz
;
254
psEnc->state_Fxx[ 0 ].sCmn.
API_fs_Hz
,
260
nSamplesFromInput = silk_DIV32_16( nSamplesToBuffer * psEnc->state_Fxx[ 0 ].sCmn.
API_fs_Hz
, psEnc->state_Fxx[ 0 ].sCmn.fs_kHz * 1000 );
Completed in 28 milliseconds