mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1073003 - Fix warnings about macro redefinitions by renaming macros. r=ehsan
--HG-- extra : rebase_source : 7d4247178a992af245af111efeeada305f805ef2
This commit is contained in:
parent
703c1570cc
commit
647d2e1050
@ -37,12 +37,12 @@ using namespace android;
|
||||
#define START_DEQUEUE_BUFFER_TIMEOUT_US (10 * DEQUEUE_BUFFER_TIMEOUT_US) // 1s.
|
||||
#define DRAIN_THREAD_TIMEOUT_US (1000 * 1000ll) // 1s.
|
||||
|
||||
#define LOG_TAG "WebrtcOMXH264VideoCodec"
|
||||
#define CODEC_LOGV(...) CSFLogInfo(LOG_TAG, __VA_ARGS__)
|
||||
#define CODEC_LOGD(...) CSFLogDebug(LOG_TAG, __VA_ARGS__)
|
||||
#define CODEC_LOGI(...) CSFLogInfo(LOG_TAG, __VA_ARGS__)
|
||||
#define CODEC_LOGW(...) CSFLogWarn(LOG_TAG, __VA_ARGS__)
|
||||
#define CODEC_LOGE(...) CSFLogError(LOG_TAG, __VA_ARGS__)
|
||||
#define WOHVC_LOG_TAG "WebrtcOMXH264VideoCodec"
|
||||
#define CODEC_LOGV(...) CSFLogInfo(WOHVC_LOG_TAG, __VA_ARGS__)
|
||||
#define CODEC_LOGD(...) CSFLogDebug(WOHVC_LOG_TAG, __VA_ARGS__)
|
||||
#define CODEC_LOGI(...) CSFLogInfo(WOHVC_LOG_TAG, __VA_ARGS__)
|
||||
#define CODEC_LOGW(...) CSFLogWarn(WOHVC_LOG_TAG, __VA_ARGS__)
|
||||
#define CODEC_LOGE(...) CSFLogError(WOHVC_LOG_TAG, __VA_ARGS__)
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user