1#ifndef TRACE_CONF_H
2#define TRACE_CONF_H
3
4#include <android/log.h>
5
6#define LOG_TAG "libvpx"
7#define LOGD(fmt_str, ...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, "[%s:%d] "fmt_str, __FUNCTION__, __LINE__, ##__VA_ARGS__)
8
9#endif
10