1
0
mirror of https://github.com/mstorsjo/fdk-aac.git synced 2025-02-07 23:28:39 +01:00

Merge "Linux compilation fix"

This commit is contained in:
Treehugger Robot 2017-02-21 20:48:22 +00:00 committed by Gerrit Code Review
commit b82c85d0b1

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;
} }