1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| //
| // Created by lilin on 2018-10-26.
| //
|
| #ifndef TESTFFMPEG_ANDROIDLOG_H
| #define TESTFFMPEG_ANDROIDLOG_H
|
| #endif //TESTFFMPEG_ANDROIDLOG_H
|
| #include <android/log.h>
| #define LOG_TAG "System.out.lilin"
| #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__)
| #define LOGE(...) __android_log_print(ANDROID_LOG_ERROR,LOG_TAG,__VA_ARGS__)
| #define LOG_DEBUG true
|
|
|