From cf472a90c05c90ce4fbadaab169d073026245827 Mon Sep 17 00:00:00 2001 From: Jeonghee Kim Date: Fri, 26 Jan 2018 15:31:32 +0900 Subject: [PATCH] include: video: add videonode.h Change-Id: I51deba2920cb44ba9a45f7aa4874351720df1e2d Signed-off-by: Jeonghee Kim --- include/video/videonode.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 include/video/videonode.h diff --git a/include/video/videonode.h b/include/video/videonode.h new file mode 100644 index 000000000000..1ffe5b453634 --- /dev/null +++ b/include/video/videonode.h @@ -0,0 +1,29 @@ +/* include/video/videonode.h + * + * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * http://www.samsung.com + * + * Video node definitions for EXYNOS + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#ifndef __VIDEO_VIDEONODE_H +#define __VIDEO_VIDEONODE_H __FILE__ + +#define EXYNOS_VIDEONODE_MFC_DEC 6 +#define EXYNOS_VIDEONODE_MFC_ENC 7 +#define EXYNOS_VIDEONODE_MFC_DEC_DRM 8 +#define EXYNOS_VIDEONODE_MFC_ENC_DRM 9 +#define EXYNOS_VIDEONODE_MFC_ENC_OTF 10 +#define EXYNOS_VIDEONODE_MFC_ENC_OTF_DRM 11 + + +#define EXYNOS_VIDEONODE_SCALER(x) (50 + x) + +/* 100 ~ 149 is used by FIMC-IS */ +#define EXYNOS_VIDEONODE_FIMC_IS (100) + +#endif /* __VIDEO_VIDEONODE_H */ -- 2.20.1