summaryrefslogtreecommitdiff
path: root/amvdec/amvdec_priv.h (plain)
blob: 11760ebbfd50fb25d083099353780d15d4cc670a
1/*
2 * Copyright (c) 2014 Amlogic, Inc. All rights reserved.
3 *
4 * This source code is subject to the terms and conditions defined in the
5 * file 'LICENSE' which is part of this source code package.
6 *
7 * Description:
8 */
9
10
11#ifndef AMVDEC_PRIV_HEADER__
12#define AMVDEC_PRIV_HEADER__
13
14#include <stdio.h>
15#include <stdarg.h>
16#include <unistd.h>
17#include <string.h>
18#include <linux/videodev2.h>
19#include <android/log.h>
20
21#define TAG "amvdec"
22#define XLOG(V,T,...) __android_log_print(V,T,__VA_ARGS__)
23#define LOGI(...) XLOG(ANDROID_LOG_INFO,TAG,__VA_ARGS__)
24#define LOGE(...) XLOG(ANDROID_LOG_ERROR,TAG,__VA_ARGS__)
25
26
27#endif
28