Source
1025
1025
VIDDEC3_Handle codec = NULL;
1026
1026
MmRpc_Params args;
1027
1027
dce_error_status eError = DCE_EOK;
1028
1028
int id;
1029
1029
1030
1030
/*Acquire permission to use IPC*/
1031
1031
pthread_mutex_lock(&ipc_mutex);
1032
1032
1033
1033
id = get_callback(0);
1034
1034
if (id < 0) {
1035
-
/* This is depended on the MAX_INSTANCE, by default it handles only 4 instances of codec instance (full frame or low latency) */
1035
+
/* This is depended on the MAX_INSTANCE, by default it handles only 5 instances of codec instance (full frame or low latency) */
1036
1036
ERROR("Failed because too many codec clients, Max is %d. MAX_INSTANCES default needs to be changed if required.", MAX_INSTANCES);
1037
1037
goto EXIT;
1038
1038
} else { /* Found empty array to be populated */
1039
1039
if( params->outputDataMode == IVIDEO_NUMROWS ) {
1040
1040
(callbackmsg[id]).row_mode = 1;
1041
1041
(callbackmsg[id]).first_control = TRUE;
1042
1042
(callbackmsg[id]).total_numBlocks = params->maxHeight / 16;
1043
1043
DEBUG("callbackmsg[%d]->total_numBlocks %d", id, (callbackmsg[id]).total_numBlocks);
1044
1044
1045
1045
(callbackmsg[id]).local_dataSyncDesc = memplugin_alloc(sizeof(XDM_DataSyncDesc), 1, DEFAULT_REGION, 0, IPU);
1247
1247
VIDENC2_Handle codec = NULL;
1248
1248
MmRpc_Params args;
1249
1249
dce_error_status eError = DCE_EOK;
1250
1250
int id;
1251
1251
1252
1252
/*Acquire permission to use IPC*/
1253
1253
pthread_mutex_lock(&ipc_mutex);
1254
1254
1255
1255
id = get_callback(0);
1256
1256
if( id < 0 ) {
1257
-
/* This is depended on the MAX_INSTANCE, by default it handles only 4 instances of codec instance (full frame or low latency) */
1257
+
/* This is depended on the MAX_INSTANCE, by default it handles only 5 instances of codec instance (full frame or low latency) */
1258
1258
ERROR("Failed because too many codec clients, Max is %d. MAX_INSTANCES default needs to be changed if required.", MAX_INSTANCES);
1259
1259
goto EXIT;
1260
1260
} else { /* Found empty array to be populated */
1261
1261
if( params->inputDataMode == IVIDEO_NUMROWS ) {
1262
1262
(callbackmsg[id]).row_mode = 1;
1263
1263
(callbackmsg[id]).first_control = TRUE;
1264
1264
(callbackmsg[id]).total_numBlocks = params->maxHeight / 16;
1265
1265
DEBUG("callbackmsg[%d]->total_numBlocks %d", id, (callbackmsg[id]).total_numBlocks);
1266
1266
1267
1267
/* Create sem_dec_row_mode */