Home
last modified time | relevance | path

Searched refs:InternalBlockSize (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/libeffects/lvm/lib/Bundle/src/
DLVM_Init.c72 LVM_UINT16 InternalBlockSize; in LVM_GetMemoryTable() local
145InternalBlockSize = (LVM_UINT16)((pInstParams->MaxBlockSize) & MIN_INTERNAL_BLOCKMASK); /* Force t… in LVM_GetMemoryTable()
147 if (InternalBlockSize < MIN_INTERNAL_BLOCKSIZE) in LVM_GetMemoryTable()
149 InternalBlockSize = MIN_INTERNAL_BLOCKSIZE; in LVM_GetMemoryTable()
153 if(InternalBlockSize > MAX_INTERNAL_BLOCKSIZE) in LVM_GetMemoryTable()
155 InternalBlockSize = MAX_INTERNAL_BLOCKSIZE; in LVM_GetMemoryTable()
171 BundleScratchSize = 6 * (MIN_INTERNAL_BLOCKSIZE + InternalBlockSize) * sizeof(LVM_INT16); in LVM_GetMemoryTable()
204 CS_Capabilities.MaxBlockSize = InternalBlockSize; in LVM_GetMemoryTable()
237 DBE_Capabilities.MaxBlockSize = InternalBlockSize; in LVM_GetMemoryTable()
270 EQNB_Capabilities.MaxBlockSize = InternalBlockSize; in LVM_GetMemoryTable()
[all …]
DLVM_Buffers.c95 if (pInstance->SamplesToProcess > pInstance->InternalBlockSize) in LVM_BufferManagedIn()
100 SampleCount = pInstance->InternalBlockSize; in LVM_BufferManagedIn()
101 NumSamples = pInstance->InternalBlockSize; in LVM_BufferManagedIn()
239 if (pInstance->SamplesToProcess > pInstance->InternalBlockSize) in LVM_BufferUnmanagedIn()
241 *pNumSamples = (LVM_UINT16)pInstance->InternalBlockSize; in LVM_BufferUnmanagedIn()
340 if (NumSamples >= pInstance->InternalBlockSize) in LVM_BufferOptimisedIn()
342 NumSamples = pInstance->InternalBlockSize; in LVM_BufferOptimisedIn()
374 if (NumSamples >= pInstance->InternalBlockSize) in LVM_BufferOptimisedIn()
376 NumSamples = pInstance->InternalBlockSize; in LVM_BufferOptimisedIn()
714 if (pInstance->SamplesToProcess > pInstance->InternalBlockSize) in LVM_BufferUnmanagedOut()
[all …]
DLVM_Private.h181 LVM_INT16 InternalBlockSize; /* Maximum internal block size */ member