media_module: vdec [1/1]

PD#OTT-1699

Problem:
	not support multi-vdec user data read

Solution:
	Add getting available user data vdec interface

Verify:
	Verified U212

Change-Id: I9ec65367935ac42a83808db23f2fb08f694e1483
Signed-off-by: Rong Zhang <rong.zhang@amlogic.com>
This commit is contained in:
Rong Zhang
2019-01-23 20:04:29 +08:00
committed by Luan Yuan
parent 5b2512bb6c
commit 50316b9780

View File

@@ -141,13 +141,16 @@
#define AMSTREAM_IOC_UD_POC _IOR((_A_M), 0x55, int)
#define AMSTREAM_IOC_UD_FLUSH_USERDATA _IOR((_A_M), 0x56, int)
#define AMSTREAM_IOC_UD_BUF_READ _IOR((_A_M), 0x57, struct userdata_param_t)
#define AMSTREAM_IOC_UD_BUF_READ _IOR((_A_M), 0x57, int)
#define AMSTREAM_IOC_GET_SCREEN_MODE _IOR((_A_M), 0x58, int)
#define AMSTREAM_IOC_SET_SCREEN_MODE _IOW((_A_M), 0x59, int)
#define AMSTREAM_IOC_GET_VIDEO_DISCONTINUE_REPORT _IOR((_A_M), 0x5a, int)
#define AMSTREAM_IOC_SET_VIDEO_DISCONTINUE_REPORT _IOW((_A_M), 0x5b, int)
#define AMSTREAM_IOC_UD_AVAILABLE_VDEC _IOR((_A_M), 0x5c, unsigned int)
#define AMSTREAM_IOC_GET_VDEC_ID _IOR((_A_M), 0x5d, int)
/*
* #define AMSTREAM_IOC_UD_BUF_STATUS _IOR((_A_M),
* 0x5c, struct userdata_buf_state_t)
@@ -491,7 +494,7 @@ struct userdata_param_t {
uint32_t instance_id; /*input, 0~9*/
uint32_t buf_len; /*input*/
uint32_t data_size; /*output*/
unsigned long long pbuf_addr; /*input*/
void *pbuf_addr; /*input*/
struct userdata_meta_info_t meta_info; /*output*/
};