Searched refs:yChan (Results 1 - 18 of 18) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpvdec_api.cpp308 video->currVop->yChan = IMEM_currVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/
309 if (video->currVop->yChan == NULL) status = PV_FALSE;
310 video->currVop->uChan = video->currVop->yChan + size;
313 video->prevVop->yChan = IMEM_prevVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/
314 if (video->prevVop->yChan == NULL) status = PV_FALSE;
315 video->prevVop->uChan = video->prevVop->yChan + size;
318 video->currVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/
319 if (video->currVop->yChan == NULL) status = PV_FALSE;
321 video->currVop->uChan = video->currVop->yChan + size;
323 video->prevVop->yChan
[all...]
H A Dmb_motion_comp.cpp35 video->currVop->yChan contents are the newly calculated luminance
238 c_prev = prev->yChan;
253 c_comp = video->currVop->yChan + offset;
577 c_prev = prev->yChan + offset;
585 c_comp = comp->yChan + offset;
H A Dconceal.cpp154 y1 = curr->yChan + lumstart;
H A Dmp4lib_int.h58 PIXEL *yChan; /* The Y component */ member in struct:tagVop
H A Dmp4dec_lib.h266 void Copy_MB_into_Vop(uint8 *comp, int yChan[][NCOEFF_BLOCK], int width);
H A Dvop.cpp1435 video->currVop->uChan = video->currVop->yChan + size;
1437 video->prevVop->uChan = video->prevVop->yChan + size;
1587 H263_Deblock(video->currVop->yChan, video->width, video->height, video->QPMB, video->headerInfo.Mode, 0, 0);
H A Dblock_idct.cpp237 c_comp = currVop->yChan + offset;
H A Dcombined_decode.cpp666 c_comp = video->currVop->yChan + offset;
H A Ddatapart_decode.cpp716 c_comp = video->currVop->yChan + offset;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4enc_api.cpp183 /* Modified : 5/21/01, allocate only yChan and assign uChan & vChan */
746 video->currVop->yChan = (PIXEL *)M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for currVop Y */
747 if (video->currVop->yChan == NULL) goto CLEAN_UP;
748 video->currVop->uChan = video->currVop->yChan + size;/* Memory for currVop U */
754 video->currVop->yChan += offset; /* offset to the origin.*/
764 video->prevBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for prevBaseVop Y */
765 if (video->prevBaseVop->yChan == NULL) goto CLEAN_UP;
766 video->prevBaseVop->uChan = video->prevBaseVop->yChan + size; /* Memory for prevBaseVop U */
771 video->prevBaseVop->yChan += offset; /* offset to the origin.*/
781 video->nextBaseVop->yChan
[all...]
H A Dfastcodemb.cpp37 /* currVop->yChan,uChan,vChan Reconstructed pixels */
129 rec = currVop->yChan + offset;
130 input = inputFrame->yChan + offset;
266 /* currVop->yChan,uChan,vChan Reconstructed pixels */
356 rec = currVop->yChan + offset;
357 input = inputFrame->yChan + offset;
H A 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;
163 c_prev = prevVop->yChan;
1717 void Copy_MB_from_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int pitch) argument
1726 src1 = yChan[i];
1727 src2 = yChan[i+1];
1795 void Copy_MB_into_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int pitch) argument
1806 src1 = yChan[i];
1807 src2 = yChan[
[all...]
H A Dme_utils.cpp230 src = refVop->yChan;
H A Dmp4lib_int.h42 PIXEL *yChan; /* The Y component */ member in struct:tagVOP
H A Dmotion_est.cpp187 cur = currFrame->yChan;
274 cur = currFrame->yChan + offset;
475 cur = currFrame->yChan;
801 ref = video->forwardRefVop->yChan; /* origin of actual frame */
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
H A Dmp4dec_api.h122 uint8 *yChan; /* The Y component frame the user can copy a new reference to */ member in struct:tagVideoRefCopyInfoPtr
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/include/
H A Dmp4enc_api.h118 UChar *yChan; /* pointer to Y */ member in struct:tagvideoEncFrameIO
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.cpp718 vin.yChan = inputData;
719 vin.uChan = vin.yChan + vin.height * vin.pitch;

Completed in 82 milliseconds