Home
last modified time | relevance | path

Searched refs:yChan (Results 1 – 19 of 19) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dpvdec_api.cpp336 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 …]
Dmb_motion_comp.cpp238 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()
Dmp4lib_int.h58 PIXEL *yChan; /* The Y component */ member
Dconceal.cpp159 y1 = curr->yChan + lumstart; in CopyVopMB()
Dvop.cpp1439 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()
Dmp4dec_lib.h266 void Copy_MB_into_Vop(uint8 *comp, int yChan[][NCOEFF_BLOCK], int width);
Dblock_idct.cpp237 c_comp = currVop->yChan + offset; in MBlockIDCT()
Dcombined_decode.cpp666 c_comp = video->currVop->yChan + offset;
Ddatapart_decode.cpp716 c_comp = video->currVop->yChan + offset; in GetMBData_DataPart()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dmp4enc_api.cpp776 …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 …]
Dfastcodemb.cpp129 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()
Dmotion_comp.cpp40 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()
Dme_utils.cpp230 src = refVop->yChan; in PaddingEdge()
Dmotion_est.cpp187 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()
Dmp4lib_int.h42 PIXEL *yChan; /* The Y component */ member
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/test/
Dm4v_h263_enc_test.cpp217 vin.yChan = inputBuf; in main()
218 vin.uChan = vin.yChan + vin.height * vin.pitch; in main()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
DSoftMPEG4Encoder.cpp477 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/
Dmp4dec_api.h122 uint8 *yChan; /* The Y component frame the user can copy a new reference to */ member
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/include/
Dmp4enc_api.h118 UChar *yChan; /* pointer to Y */ member