OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MIN_INTERNAL_BLOCKSIZE
(Results
1 - 3
of
3
) sorted by null
/frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Private.h
74
#define
MIN_INTERNAL_BLOCKSIZE
16 /* Minimum internal block size */
146
LVM_INT16 InDelayBuffer[6*
MIN_INTERNAL_BLOCKSIZE
]; /* Input buffer delay line, left and right */
149
LVM_INT16 OutDelayBuffer[2*
MIN_INTERNAL_BLOCKSIZE
]; /* Output buffer delay line */
LVM_Init.c
145
InternalBlockSize = (LVM_UINT16)((pInstParams->MaxBlockSize) & MIN_INTERNAL_BLOCKMASK); /* Force to a multiple of
MIN_INTERNAL_BLOCKSIZE
*/
147
if (InternalBlockSize <
MIN_INTERNAL_BLOCKSIZE
)
149
InternalBlockSize =
MIN_INTERNAL_BLOCKSIZE
;
171
BundleScratchSize = 6 * (
MIN_INTERNAL_BLOCKSIZE
+ InternalBlockSize) * sizeof(LVM_INT16);
517
InternalBlockSize = (LVM_UINT16)((pInstParams->MaxBlockSize) & MIN_INTERNAL_BLOCKMASK); /* Force to a multiple of
MIN_INTERNAL_BLOCKSIZE
*/
518
if (InternalBlockSize <
MIN_INTERNAL_BLOCKSIZE
)
520
InternalBlockSize =
MIN_INTERNAL_BLOCKSIZE
;
542
BundleScratchSize = (LVM_INT32)(6 * (
MIN_INTERNAL_BLOCKSIZE
+ InternalBlockSize) * sizeof(LVM_INT16));
548
(LVM_INT16)(2 *
MIN_INTERNAL_BLOCKSIZE
));
549
pInstance->pBufferManagement->InDelaySamples =
MIN_INTERNAL_BLOCKSIZE
; /* Set the number of delay samples *
[
all
...]
LVM_Buffers.c
366
if (pBuffer->SamplesToOutput >=
MIN_INTERNAL_BLOCKSIZE
)
[
all
...]
Completed in 51 milliseconds