Searched refs:yChan (Results 1 – 19 of 19) sorted by relevance
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | pvdec_api.cpp | 336 video->currVop->yChan = IMEM_currVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/ in PVAllocVideoData() 337 if (video->currVop->yChan == NULL) status = PV_FALSE; in PVAllocVideoData() 338 video->currVop->uChan = video->currVop->yChan + size; in PVAllocVideoData() 341 video->prevVop->yChan = IMEM_prevVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/ in PVAllocVideoData() 342 if (video->prevVop->yChan == NULL) status = PV_FALSE; in PVAllocVideoData() 343 video->prevVop->uChan = video->prevVop->yChan + size; in PVAllocVideoData() 349 …video->currVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/… in PVAllocVideoData() 350 if (video->currVop->yChan == NULL) status = PV_FALSE; in PVAllocVideoData() 352 video->currVop->uChan = video->currVop->yChan + size; in PVAllocVideoData() 354 …video->prevVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/… in PVAllocVideoData() [all …]
|
D | mb_motion_comp.cpp | 238 c_prev = prev->yChan; in MBMotionComp() 253 c_comp = video->currVop->yChan + offset; in MBMotionComp() 577 c_prev = prev->yChan + offset; in SkippedMBMotionComp() 585 c_comp = comp->yChan + offset; in SkippedMBMotionComp()
|
D | mp4lib_int.h | 58 PIXEL *yChan; /* The Y component */ member
|
D | conceal.cpp | 159 y1 = curr->yChan + lumstart; in CopyVopMB()
|
D | vop.cpp | 1439 video->currVop->uChan = video->currVop->yChan + size; in DecodeShortHeader() 1441 video->prevVop->uChan = video->prevVop->yChan + size; in DecodeShortHeader() 1591 …H263_Deblock(video->currVop->yChan, video->width, video->height, video->QPMB, video->headerInfo.Mo… in PV_DecodeVop()
|
D | mp4dec_lib.h | 266 void Copy_MB_into_Vop(uint8 *comp, int yChan[][NCOEFF_BLOCK], int width);
|
D | block_idct.cpp | 237 c_comp = currVop->yChan + offset; in MBlockIDCT()
|
D | combined_decode.cpp | 666 c_comp = video->currVop->yChan + offset;
|
D | datapart_decode.cpp | 716 c_comp = video->currVop->yChan + offset; in GetMBData_DataPart()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | mp4enc_api.cpp | 776 …video->currVop->yChan = (PIXEL *)M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory fo… in PVInitVideoEncoder() 777 if (video->currVop->yChan == NULL) goto CLEAN_UP; in PVInitVideoEncoder() 778 video->currVop->uChan = video->currVop->yChan + size;/* Memory for currVop U */ in PVInitVideoEncoder() 784 video->currVop->yChan += offset; /* offset to the origin.*/ in PVInitVideoEncoder() 794 …video->prevBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memo… in PVInitVideoEncoder() 795 if (video->prevBaseVop->yChan == NULL) goto CLEAN_UP; in PVInitVideoEncoder() 796 video->prevBaseVop->uChan = video->prevBaseVop->yChan + size; /* Memory for prevBaseVop U */ in PVInitVideoEncoder() 801 video->prevBaseVop->yChan += offset; /* offset to the origin.*/ in PVInitVideoEncoder() 811 …video->nextBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memo… in PVInitVideoEncoder() 812 if (video->nextBaseVop->yChan == NULL) goto CLEAN_UP; in PVInitVideoEncoder() [all …]
|
D | fastcodemb.cpp | 129 rec = currVop->yChan + offset; in CodeMB_H263() 130 input = inputFrame->yChan + offset; in CodeMB_H263() 356 rec = currVop->yChan + offset; in CodeMB_MPEG() 357 input = inputFrame->yChan + offset; in CodeMB_MPEG()
|
D | motion_comp.cpp | 40 void Copy_MB_from_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int width); 42 void Copy_MB_into_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int width); 136 c_prev = prevVop->yChan; in getMotionCompensatedMB() 163 c_prev = prevVop->yChan; in getMotionCompensatedMB() 1717 void Copy_MB_from_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int pitch) in Copy_MB_from_Vop() 1726 src1 = yChan[i]; in Copy_MB_from_Vop() 1727 src2 = yChan[i+1]; in Copy_MB_from_Vop() 1795 void Copy_MB_into_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int pitch) in Copy_MB_into_Vop() 1806 src1 = yChan[i]; in Copy_MB_into_Vop() 1807 src2 = yChan[i+1]; in Copy_MB_into_Vop()
|
D | me_utils.cpp | 230 src = refVop->yChan; in PaddingEdge()
|
D | motion_est.cpp | 187 cur = currFrame->yChan; in MotionEstimation() 274 cur = currFrame->yChan + offset; in MotionEstimation() 475 cur = currFrame->yChan; in MotionEstimation() 801 ref = video->forwardRefVop->yChan; /* origin of actual frame */ in MBMotionSearch()
|
D | mp4lib_int.h | 42 PIXEL *yChan; /* The Y component */ member
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/test/ |
D | m4v_h263_enc_test.cpp | 217 vin.yChan = inputBuf; in main() 218 vin.uChan = vin.yChan + vin.height * vin.pitch; in main()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/ |
D | SoftMPEG4Encoder.cpp | 477 vin.yChan = (uint8_t *)inputData; in onQueueFilled() 478 vin.uChan = vin.yChan + vin.height * vin.pitch; in onQueueFilled()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/ |
D | mp4dec_api.h | 122 uint8 *yChan; /* The Y component frame the user can copy a new reference to */ member
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/include/ |
D | mp4enc_api.h | 118 UChar *yChan; /* pointer to Y */ member
|