From ed57cc13684a3269b6188583aac543cf286d4b75 Mon Sep 17 00:00:00 2001 From: Boram Park Date: Tue, 20 Mar 2018 10:53:30 +0900 Subject: [PATCH] common: add description for pp, capture capability Change-Id: I3e11cb35c4a4f752282756e339e07e4f939437c0 --- include/tdm_common.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/tdm_common.h b/include/tdm_common.h index e97170b..35d5c91 100644 --- a/include/tdm_common.h +++ b/include/tdm_common.h @@ -148,6 +148,9 @@ typedef enum { /** * @brief The pp capability enumeration + * @details The scale, transform and CSC functionalities seem the default functions of PP. + * If hardware device doesn't support one of them, we'd better let a developer know + * what a backend doesn't support like TDM_PP_CAPABILITY_NO_CSC. */ typedef enum { TDM_PP_CAPABILITY_SYNC = (1 << 0), /**< The pp device supports synchronous operation */ @@ -158,6 +161,9 @@ typedef enum { /** * @brief The capture capability enumeration + * @details The scale, transform and CSC functionalities seem the default functions of capture. + * If hardware device doesn't support one of them, we'd better let a developer know + * what a backend doesn't support like TDM_PP_CAPABILITY_NO_CSC. */ typedef enum { TDM_CAPTURE_CAPABILITY_OUTPUT = (1 << 0), /**< The capture device supports to dump a output */ -- 2.7.4