1
0
mirror of https://github.com/mstorsjo/fdk-aac.git synced 2025-02-17 19:50:35 +01:00

Linux compilation fix

Test: manual
Change-Id: Ie374e47b93e8fa3a44c731cb73f7e151d265c74c
This commit is contained in:
Jakub Pawlowski 2017-02-21 10:29:53 -08:00
parent 8334e4b410
commit 2cd9fe3964

View File

@ -88,7 +88,9 @@ amm-info@iis.fraunhofer.de
expansion in the PCM time domain. expansion in the PCM time domain.
*******************************************************************************/ *******************************************************************************/
#ifndef __linux__
#include <log/log.h> #include <log/log.h>
#endif
#include "pcmutils_lib.h" #include "pcmutils_lib.h"
#include "genericStds.h" #include "genericStds.h"
@ -2079,7 +2081,9 @@ PCMDMX_ERROR pcmDmx_ApplyFrame (
} }
} }
if (ch != numInChannels) { if (ch != numInChannels) {
#ifndef __linux__
ALOGE("b/23876444"); ALOGE("b/23876444");
#endif
return PCMDMX_INVALID_ARGUMENT; return PCMDMX_INVALID_ARGUMENT;
} }