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

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpvdec_api.cpp338 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;
343 video->prevVop->yChan = IMEM_prevVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/
344 if (video->prevVop->yChan == NULL) status = PV_FALSE;
345 video->prevVop->uChan = video->prevVop->yChan + size;
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;
356 video->prevVop->yChan
[all...]
H A Dmb_motion_comp.cpp39 video->currVop->yChan contents are the newly calculated luminance
242 c_prev = prev->yChan;
262 c_comp = video->currVop->yChan + offset;
586 c_prev = prev->yChan;
601 c_comp = comp->yChan + offset;
H A Dmp4lib_int.h58 PIXEL *yChan; /* The Y component */ member in struct:tagVop
H A Dconceal.cpp163 y1 = curr->yChan + lumstart;
H A Dmp4dec_lib.h266 void Copy_MB_into_Vop(uint8 *comp, int yChan[][NCOEFF_BLOCK], int width);
H A Dvop.cpp1447 video->currVop->uChan = video->currVop->yChan + size;
1449 video->prevVop->uChan = video->prevVop->yChan + size;
1599 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/test/
H A Dm4v_h263_enc_test.cpp217 vin.yChan = inputBuf;
218 vin.uChan = vin.yChan + vin.height * vin.pitch;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4enc_api.cpp190 /* Modified : 5/21/01, allocate only yChan and assign uChan & vChan */
776 video->currVop->allChan = video->currVop->yChan = (PIXEL *)M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for currVop Y */
777 if (video->currVop->yChan == NULL) goto CLEAN_UP;
778 video->currVop->uChan = video->currVop->yChan + size;/* Memory for currVop U */
784 video->currVop->yChan += offset; /* offset to the origin.*/
794 video->prevBaseVop->allChan = video->prevBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for prevBaseVop Y */
795 if (video->prevBaseVop->yChan == NULL) goto CLEAN_UP;
796 video->prevBaseVop->uChan = video->prevBaseVop->yChan + size; /* Memory for prevBaseVop U */
801 video->prevBaseVop->yChan += offset; /* offset to the origin.*/
811 video->nextBaseVop->allChan = 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.h43 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.cpp468 vin.yChan = (uint8_t *)inputData;
469 vin.uChan = vin.yChan + vin.height * vin.pitch;

Completed in 176 milliseconds