OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nSamplesIn
(Results
1 - 6
of
6
) sorted by null
/external/libopus/silk/
resampler_down2_3.c
46
opus_int32
nSamplesIn
, counter, res_Q6;
58
nSamplesIn
= silk_min( inLen, RESAMPLER_MAX_BATCH_SIZE_IN );
62
silk_Resampler_2_3_COEFS_LQ,
nSamplesIn
);
66
counter =
nSamplesIn
;
89
in +=
nSamplesIn
;
90
inLen -=
nSamplesIn
;
94
silk_memcpy( buf, &buf[
nSamplesIn
], ORDER_FIR * sizeof( opus_int32 ) );
101
silk_memcpy( S, &buf[
nSamplesIn
], ORDER_FIR * sizeof( opus_int32 ) );
resampler_private_IIR_FIR.c
73
opus_int32
nSamplesIn
;
86
nSamplesIn
= silk_min( inLen, S->batchSize );
89
silk_resampler_private_up2_HQ( S->sIIR, &buf[ RESAMPLER_ORDER_FIR_12 ], in,
nSamplesIn
);
91
max_index_Q16 = silk_LSHIFT32(
nSamplesIn
, 16 + 1 ); /* + 1 because 2x upsampling */
93
in +=
nSamplesIn
;
94
inLen -=
nSamplesIn
;
98
silk_memcpy( buf, &buf[
nSamplesIn
<< 1 ], RESAMPLER_ORDER_FIR_12 * sizeof( opus_int16 ) );
105
silk_memcpy( S->sFIR.i16, &buf[
nSamplesIn
<< 1 ], RESAMPLER_ORDER_FIR_12 * sizeof( opus_int16 ) );
resampler_private_down_FIR.c
153
opus_int32
nSamplesIn
;
169
nSamplesIn
= silk_min( inLen, S->batchSize );
172
silk_resampler_private_AR2( S->sIIR, &buf[ S->FIR_Order ], in, S->Coefs,
nSamplesIn
);
174
max_index_Q16 = silk_LSHIFT32(
nSamplesIn
, 16 );
180
in +=
nSamplesIn
;
181
inLen -=
nSamplesIn
;
185
silk_memcpy( buf, &buf[
nSamplesIn
], S->FIR_Order * sizeof( opus_int32 ) );
192
silk_memcpy( S->sFIR.i32, &buf[
nSamplesIn
], S->FIR_Order * sizeof( opus_int32 ) );
API.h
80
opus_int
nSamplesIn
, /* I Number of samples in input vector */
enc_API.c
144
opus_int
nSamplesIn
, /* I Number of samples in input vector */
198
nBlocksOf10ms = silk_DIV32( 100 *
nSamplesIn
, encControl->API_sampleRate );
223
if( nBlocksOf10ms * encControl->API_sampleRate != 100 *
nSamplesIn
||
nSamplesIn
< 0 ) {
229
if( 1000 * (opus_int32)
nSamplesIn
> encControl->payloadSize_ms * encControl->API_sampleRate ) {
318
nSamplesIn
-= nSamplesFromInput;
536
if(
nSamplesIn
== 0 ) {
/external/webrtc/webrtc/modules/audio_device/test/
func_test_manager.cc
367
const size_t
nSamplesIn
= packet->nSamples;
391
2 *
nSamplesIn
, (int16_t*) audioSamples,
397
2 *
nSamplesIn
, tmpBuf_96kHz, 2 * nSamples,
430
(const int16_t*) packet->dataBuffer,
nSamplesIn
,
435
(const int16_t*) packet->dataBuffer,
nSamplesIn
,
[
all
...]
Completed in 102 milliseconds