Merge "libeffects: Corrected the Copy_Float in LVM_Process.c to handle MC" into qt-dev am: 6a3e785a3e

am: 3a7ea707b9

Change-Id: Id6e14294ff2a1a1c581a607b8d5c5f413a0a6c27
gugelfrei
Andy Hung 5 years ago committed by android-build-merger
commit 835fdfdd4b

@ -230,9 +230,15 @@ LVM_ReturnStatus_en LVM_Process(LVM_Handle_t hInstance,
*/
if (pToProcess != pProcessed)
{
#ifdef SUPPORT_MC
Copy_Float(pToProcess, /* Source */
pProcessed, /* Destination */
(LVM_INT16)(NrChannels * NrFrames)); /* Copy all samples */
#else
Copy_Float(pToProcess, /* Source */
pProcessed, /* Destination */
(LVM_INT16)(2 * SampleCount)); /* Left and right */
#endif
}
/*

Loading…
Cancel
Save