summaryrefslogtreecommitdiff
path: root/amvdec/ionvdec_priv.h (plain)
blob: 7bd2a15f3084e5c2175590f0d8b0d08f1d55474e
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 IONVDEC_PRIV_HEADER__
12#define IONVDEC_PRIV_HEADER__
13
14#include <stdio.h>
15#include <stdlib.h>
16#include <unistd.h>
17#include <stdarg.h>
18#include <string.h>
19#include <videodev2.h>
20#include <android/log.h>
21
22#define TAG "ionvdec"
23#define XLOG(V,T,...) __android_log_print(V,T,__VA_ARGS__)
24#define LOGI(...) XLOG(ANDROID_LOG_INFO,TAG,__VA_ARGS__)
25#define LOGE(...) XLOG(ANDROID_LOG_ERROR,TAG,__VA_ARGS__)
26
27#endif
28