You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.1 KiB
69 lines
2.1 KiB
/* |
|
* Copyright 2015 The Android Open Source Project |
|
* |
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
* you may not use this file except in compliance with the License. |
|
* You may obtain a copy of the License at |
|
* |
|
* http://www.apache.org/licenses/LICENSE-2.0 |
|
* |
|
* Unless required by applicable law or agreed to in writing, software |
|
* distributed under the License is distributed on an "AS IS" BASIS, |
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
* See the License for the specific language governing permissions and |
|
* limitations under the License. |
|
*/ |
|
|
|
#ifndef V4L2_CAMERA_HAL_COMMON_H_ |
|
#define V4L2_CAMERA_HAL_COMMON_H_ |
|
|
|
// #define LOG_NDEBUG 0 |
|
#include <cutils/log.h> |
|
|
|
#define LOG_TAG "V4L2CameraHAL" |
|
|
|
// Helpers of logging (showing function name and line number). |
|
#define HAL_LOGE(fmt, args...) do { \ |
|
ALOGE("%s:%d: " fmt, __func__, __LINE__, ##args); \ |
|
} while(0) |
|
|
|
#define HAL_LOGE_IF(cond, fmt, args...) do { \ |
|
ALOGE_IF(cond, "%s:%d: " fmt, __func__, __LINE__, ##args); \ |
|
} while(0) |
|
|
|
#define HAL_LOGW(fmt, args...) do { \ |
|
ALOGW("%s:%d: " fmt, __func__, __LINE__, ##args); \ |
|
} while(0) |
|
|
|
#define HAL_LOGW_IF(cond, fmt, args...) do { \ |
|
ALOGW_IF(cond, "%s:%d: " fmt, __func__, __LINE__, ##args); \ |
|
} while(0) |
|
|
|
#define HAL_LOGI(fmt, args...) do { \ |
|
ALOGI("%s:%d: " fmt, __func__, __LINE__, ##args); \ |
|
} while(0) |
|
|
|
#define HAL_LOGI_IF(cond, fmt, args...) do { \ |
|
ALOGI_IF(cond, "%s:%d: " fmt, __func__, __LINE__, ##args); \ |
|
} while(0) |
|
|
|
#define HAL_LOGD(fmt, args...) do { \ |
|
ALOGD("%s:%d: " fmt, __func__, __LINE__, ##args); \ |
|
} while(0) |
|
|
|
#define HAL_LOGV(fmt, args...) do { \ |
|
ALOGV("%s:%d: " fmt, __func__, __LINE__, ##args); \ |
|
} while(0) |
|
|
|
// Log enter/exit of methods. |
|
#define HAL_LOG_ENTER() HAL_LOGV("enter") |
|
#define HAL_LOG_EXIT() HAL_LOGV("exit") |
|
|
|
// Fix confliction in case it's defined elsewhere. |
|
#ifndef DISALLOW_COPY_AND_ASSIGN |
|
#define DISALLOW_COPY_AND_ASSIGN(TypeName) \ |
|
TypeName(const TypeName&); \ |
|
void operator=(const TypeName&); |
|
#endif |
|
|
|
#endif // V4L2_CAMERA_HAL_COMMON_H_
|
|
|