Lines Matching refs:currVop

126         video->currVop = IMEM_currVop;
127 if (video->currVop == NULL) status = PV_FALSE;
128 else oscl_memset(video->currVop, 0, sizeof(Vop));
136 video->currVop = (Vop *) oscl_malloc(sizeof(Vop));
137 if (video->currVop == NULL) status = PV_FALSE;
138 else oscl_memset(video->currVop, 0, sizeof(Vop));
336 video->currVop->yChan = IMEM_currVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/
337 if (video->currVop->yChan == NULL) status = PV_FALSE;
338 video->currVop->uChan = video->currVop->yChan + size;
339 video->currVop->vChan = video->currVop->uChan + (size >> 2);
349 video->currVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/
350 if (video->currVop->yChan == NULL) status = PV_FALSE;
352 video->currVop->uChan = video->currVop->yChan + size;
353 video->currVop->vChan = video->currVop->uChan + (size >> 2);
555 oscl_memset(video->currVop->yChan, 0, sizeof(uint8)*size*3 / 2);
638 if (video->currVop)
640 video->currVop->uChan = NULL;
641 video->currVop->vChan = NULL;
642 if (video->currVop->yChan)
643 video->currVop->yChan = NULL;
644 video->currVop = NULL;
706 if (video->currVop)
710 video->currVop->uChan = NULL;
711 video->currVop->vChan = NULL;
712 if (video->currVop->yChan)
713 oscl_free(video->currVop->yChan);
715 oscl_free(video->currVop);
1086 Vop *currVop = video->currVop;
1261 vopHeader[target_layer]->yChan = currVop->yChan;
1262 vopHeader[target_layer]->uChan = currVop->uChan;
1263 vopHeader[target_layer]->vChan = currVop->vChan;
1265 oscl_memcpy(currVop, vopHeader[target_layer], sizeof(Vop));
1273 header_info->frameType = (MP4FrameType)currVop->predictionType;
1275 header_info->quantizer = currVop->quantizer;
1298 Vop *currVop = video->currVop;
1305 if (currVop->vopCoded == 0) /* 07/03/2001 */
1338 oscl_memcpy(currVop->yChan, video->prevVop->yChan, (decCtrl->size*3) / 2);
1342 video->concealFrame = currVop->yChan; /* 07/07/2001 */
1344 video->vop_coding_type = currVop->predictionType; /* 07/09/01 */
1346 decCtrl->outputFrame = currVop->yChan;
1352 video->prevEnhcVop = video->currVop;
1353 video->currVop = tempVopPtr;
1358 video->prevVop = video->currVop;
1359 video->currVop = tempVopPtr;
1364 video->prevEnhcVop->timeStamp = currVop->timeStamp;
1368 video->prevVop->timeStamp = currVop->timeStamp;
1371 video->vop_coding_type = currVop->predictionType; /* 07/09/01 */
1374 if (currVop->predictionType == I_VOP)
1389 if (currVop->predictionType == I_VOP)
1393 else if (currVop->predictionType == P_VOP)
1395 switch (currVop->refSelectCode)
1430 video->prevTimestamp[idx] = currVop->timeStamp;
1433 // if (currVop->refSelectCode == 0) video->prevVop = prevVop;
1477 video->concealFrame = video->currVop->yChan; /* 07/07/2001 */
1479 video->vop_coding_type = video->currVop->predictionType; /* 07/09/01 */
1481 decCtrl->outputFrame = video->currVop->yChan;
1487 video->prevEnhcVop = video->currVop;
1488 video->currVop = tempVopPtr;
1493 video->prevVop = video->currVop;
1494 video->currVop = tempVopPtr;
1608 outputBuffer = video->currVop->yChan;