Lines Matching defs:currVop

128         video->currVop = IMEM_currVop;
129 if (video->currVop == NULL) status = PV_FALSE;
130 else oscl_memset(video->currVop, 0, sizeof(Vop));
138 video->currVop = (Vop *) oscl_malloc(sizeof(Vop));
139 if (video->currVop == NULL) status = PV_FALSE;
140 else oscl_memset(video->currVop, 0, sizeof(Vop));
338 video->currVop->yChan = IMEM_currVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/
339 if (video->currVop->yChan == NULL) status = PV_FALSE;
340 video->currVop->uChan = video->currVop->yChan + size;
341 video->currVop->vChan = video->currVop->uChan + (size >> 2);
351 video->currVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/
352 if (video->currVop->yChan == NULL) status = PV_FALSE;
354 video->currVop->uChan = video->currVop->yChan + size;
355 video->currVop->vChan = video->currVop->uChan + (size >> 2);
557 oscl_memset(video->currVop->yChan, 0, sizeof(uint8)*size*3 / 2);
640 if (video->currVop)
642 video->currVop->uChan = NULL;
643 video->currVop->vChan = NULL;
644 if (video->currVop->yChan)
645 video->currVop->yChan = NULL;
646 video->currVop = NULL;
708 if (video->currVop)
712 video->currVop->uChan = NULL;
713 video->currVop->vChan = NULL;
714 if (video->currVop->yChan)
715 oscl_free(video->currVop->yChan);
717 oscl_free(video->currVop);
1088 Vop *currVop = video->currVop;
1263 vopHeader[target_layer]->yChan = currVop->yChan;
1264 vopHeader[target_layer]->uChan = currVop->uChan;
1265 vopHeader[target_layer]->vChan = currVop->vChan;
1267 oscl_memcpy(currVop, vopHeader[target_layer], sizeof(Vop));
1275 header_info->frameType = (MP4FrameType)currVop->predictionType;
1277 header_info->quantizer = currVop->quantizer;
1300 Vop *currVop = video->currVop;
1307 if (currVop->vopCoded == 0) /* 07/03/2001 */
1345 oscl_memcpy(currVop->yChan, video->prevVop->yChan, (decCtrl->size*3) / 2);
1349 video->concealFrame = currVop->yChan; /* 07/07/2001 */
1351 video->vop_coding_type = currVop->predictionType; /* 07/09/01 */
1353 decCtrl->outputFrame = currVop->yChan;
1359 video->prevEnhcVop = video->currVop;
1360 video->currVop = tempVopPtr;
1365 video->prevVop = video->currVop;
1366 video->currVop = tempVopPtr;
1371 video->prevEnhcVop->timeStamp = currVop->timeStamp;
1375 video->prevVop->timeStamp = currVop->timeStamp;
1378 video->vop_coding_type = currVop->predictionType; /* 07/09/01 */
1381 if (currVop->predictionType == I_VOP)
1396 if (currVop->predictionType == I_VOP)
1400 else if (currVop->predictionType == P_VOP)
1402 switch (currVop->refSelectCode)
1437 video->prevTimestamp[idx] = currVop->timeStamp;
1440 // if (currVop->refSelectCode == 0) video->prevVop = prevVop;
1484 video->concealFrame = video->currVop->yChan; /* 07/07/2001 */
1486 video->vop_coding_type = video->currVop->predictionType; /* 07/09/01 */
1488 decCtrl->outputFrame = video->currVop->yChan;
1494 video->prevEnhcVop = video->currVop;
1495 video->currVop = tempVopPtr;
1500 video->prevVop = video->currVop;
1501 video->currVop = tempVopPtr;
1615 outputBuffer = video->currVop->yChan;