[PATCH 2/6] media: mediatek: vcodec: add the definition of decoder status

From: Yunfei Dong
Date: Mon Apr 17 2023 - 01:49:01 EST


Adding the status used to separate different decoder period for
core hardware.

Signed-off-by: Yunfei Dong <yunfei.dong@xxxxxxxxxxxx>
---
drivers/media/platform/mediatek/vcodec/vdec_msg_queue.h | 7 +++++++
1 file changed, 7 insertions(+)

diff --git a/drivers/media/platform/mediatek/vcodec/vdec_msg_queue.h b/drivers/media/platform/mediatek/vcodec/vdec_msg_queue.h
index a5d44bc97c16..19508be08566 100644
--- a/drivers/media/platform/mediatek/vcodec/vdec_msg_queue.h
+++ b/drivers/media/platform/mediatek/vcodec/vdec_msg_queue.h
@@ -21,6 +21,13 @@ struct mtk_vcodec_ctx;
struct mtk_vcodec_dev;
typedef int (*core_decode_cb_t)(struct vdec_lat_buf *lat_buf);

+/* current context isn't work */
+#define CONTEXT_LIST_EMPTY (0)
+/* queued to the core work list */
+#define CONTEXT_LIST_QUEUED (1)
+/* context decode done */
+#define CONTEXT_LIST_DEC_DONE (2)
+
/**
* struct vdec_msg_queue_ctx - represents a queue for buffers ready to be processed
* @ready_to_use: ready used queue used to signalize when get a job queue
--
2.18.0