mstorsjo / fdk-aac

A standalone library of the Fraunhofer FDK AAC code from Android.

Home Page:https://sourceforge.net/projects/opencore-amr/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NDK

sg0771 opened this issue · comments

commented
NDK
commented

NDK buidl error

libSBRdec/src/lpp_tran.cpp:122:21: fatal error: log/log.h: No such file or directory
#include "log/log.h"

commented

same problem

commented

fdk-aac/libSBRdec/include/log/log.h

#pragma once

#ifdef __ANDROID__
#include <android/log.h>

#define android_errorWriteLog(tag, y, ...) __android_log_write(ANDROID_LOG_ERROR, #tag, y, ##__VA_ARGS__)
#endif