Source
42
42
* possibly we should define a special ioctl and msg to handle this case.
43
43
*/
44
44
45
45
46
46
#define MAX_NAME_LENGTH 32
47
47
#define MAX_INPUT_BUF 2 // Need to confirm for interlaced YUVs for Encoders
48
48
#define MAX_OUTPUT_BUF 2
49
49
#define MAX_OUTPUT_BUFPTRS 2//To take care bufs and bufSizes in viddec2 case
50
50
#define MAX_TOTAL_BUF (MAX_INPUT_BUF + MAX_OUTPUT_BUF + MAX_OUTPUT_BUFPTRS)
51
51
52
-
#define MAX_INSTANCES 4
52
+
#define MAX_INSTANCES 6 // aligned with IPUMM definitions for MAX instances i.e.,5, + 1 for persistent system
53
53
/* Message-Ids:
54
54
*/
55
55
//#define DCE_RPC_CONNECT (0x80000000 | 00) Connect not needed anymore.
56
56
typedef enum dce_rpc_call {
57
57
DCE_RPC_ENGINE_OPEN = 0,
58
58
DCE_RPC_ENGINE_CLOSE,
59
59
DCE_RPC_CODEC_CREATE,
60
60
DCE_RPC_CODEC_CONTROL,
61
61
DCE_RPC_CODEC_GET_VERSION,
62
62
DCE_RPC_CODEC_PROCESS,