HomeSort by relevance Sort by last modified time
    Searched refs:yChan (Results 1 - 21 of 21) sorted by null

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
pvdec_api.cpp 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;
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 = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*
    [all...]
mb_motion_comp.cpp 39 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;
mp4lib_int.h 58 PIXEL *yChan; /* The Y component */
conceal.cpp 163 y1 = curr->yChan + lumstart;
mp4dec_lib.h 266 void Copy_MB_into_Vop(uint8 *comp, int yChan[][NCOEFF_BLOCK], int width);
vop.cpp     [all...]
block_idct.cpp 237 c_comp = currVop->yChan + offset;
combined_decode.cpp 666 c_comp = video->currVop->yChan + offset;
datapart_decode.cpp 716 c_comp = video->currVop->yChan + offset;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/test/
m4v_h263_enc_test.cpp 217 vin.yChan = inputBuf;
218 vin.uChan = vin.yChan + vin.height * vin.pitch;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
mp4enc_api.cpp 190 /* 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 = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for nextBaseVop Y *
    [all...]
fastcodemb.cpp 37 /* 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;
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;
163 c_prev = prevVop->yChan;
    [all...]
me_utils.cpp 230 src = refVop->yChan;
mp4lib_int.h 43 PIXEL *yChan; /* The Y component */
motion_est.cpp 187 cur = currFrame->yChan;
274 cur = currFrame->yChan + offset;
475 cur = currFrame->yChan;
801 ref = video->forwardRefVop->yChan; /* origin of actual frame */
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
mp4dec_api.h 122 uint8 *yChan; /* The Y component frame the user can copy a new reference to */
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/include/
mp4enc_api.h 118 UChar *yChan; /* pointer to Y */
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
SoftMPEG4Encoder.cpp 475 vin.yChan = (uint8_t *)inputData;
476 vin.uChan = vin.yChan + vin.height * vin.pitch;
  /hardware/intel/common/libmix/videoencoder/
PVSoftMPEG4Encoder.cpp 482 vin.yChan = mInputFrameData;
483 vin.uChan = vin.yChan + vin.height * vin.pitch;
  /hardware/google/av/media/codecs/mpeg4_h263/
C2SoftMpeg4Enc.cpp 472 vin.yChan = yPlane;

Completed in 9454 milliseconds