Searched refs:PIXEL (Results 1 - 13 of 13) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Didct.h59 void idctrow0_intra(int16 *blk, PIXEL *comp, int width);
60 void idctrow1_intra(int16 *blk, PIXEL *comp, int width);
61 void idctrow2_intra(int16 *blk, PIXEL *comp, int width);
62 void idctrow3_intra(int16 *blk, PIXEL *comp, int width);
63 void idctrow4_intra(int16 *blk, PIXEL *comp, int width);
H A Dmp4lib_int.h58 PIXEL *yChan; /* The Y component */
59 PIXEL *uChan; /* The U component */
60 PIXEL *vChan; /* The V component */
H A Dmb_motion_comp.cpp141 PIXEL *c_comp, *c_prev;
142 PIXEL *cu_comp, *cu_prev;
143 PIXEL *cv_comp, *cv_prev;
564 PIXEL *c_comp, *c_prev;
565 PIXEL *cu_comp, *cu_prev;
566 PIXEL *cv_comp, *cv_prev;
H A Dblock_idct.cpp124 static void idctrow_intra(int16 *blk, PIXEL *, int width);
183 static void (*const idctrowVCA_intra[10])(int16*, PIXEL *, int) =
197 static void (*const idctrowVCA2_intra[8])(int16*, PIXEL *, int) =
226 PIXEL *c_comp;
227 PIXEL *cu_comp;
228 PIXEL *cv_comp;
251 MacroBlock *mblock, PIXEL *c_comp, int comp, int width)
621 int16 *blk, PIXEL *comp, int width
H A Dmp4def.h35 typedef uint8 PIXEL; typedef
H A Didct_vca.cpp414 void idctrow0_intra(int16 *, PIXEL *, int)
419 void idctrow1_intra(int16 *blk, PIXEL *comp, int width)
448 void idctrow2_intra(int16 *blk, PIXEL *comp, int width)
505 void idctrow3_intra(int16 *blk, PIXEL *comp, int width)
578 void idctrow4_intra(int16 *blk, PIXEL *comp, int width)
H A Dpvdec_api.cpp53 extern PIXEL IMEM_currVop_yChan[QCIF_MBS*128*3];
54 extern PIXEL IMEM_prevVop_yChan[QCIF_MBS*128*3];
329 if (((uint64_t)video->width * video->height) > (uint64_t)INT32_MAX / sizeof(PIXEL)) {
333 size = (int32)sizeof(PIXEL) * video->width * video->height;
351 video->currVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/
356 video->prevVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/
382 video->prevEnhcVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/
1259 vopHeader[target_layer]->yChan = (PIXEL *)currYUV;
1260 vopHeader[target_layer]->uChan = (PIXEL *)currYUV + decCtrl->size;
1261 vopHeader[target_layer]->vChan = (PIXEL *)(vopHeade
[all...]
H A Dmp4dec_lib.h99 void BlockIDCT_intra(MacroBlock *mblock, PIXEL *c_comp, int comp, int width_offset);
H A Dcombined_decode.cpp532 PIXEL *c_comp;
H A Ddatapart_decode.cpp625 PIXEL *c_comp;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4lib_int.h42 PIXEL *allChan; /* [yuv]Chan point into this buffer */
43 PIXEL *yChan; /* The Y component */
44 PIXEL *uChan; /* The U component */
45 PIXEL *vChan; /* The V component */
H A Dmp4def.h83 typedef UChar PIXEL; typedef
H A Dmp4enc_api.cpp773 || (size_t)(size + (size >> 1)) > SIZE_MAX / sizeof(PIXEL)) {
776 video->currVop->allChan = video->currVop->yChan = (PIXEL *)M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for currVop Y */
794 video->prevBaseVop->allChan = video->prevBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for prevBaseVop Y */
811 video->nextBaseVop->allChan = video->nextBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for nextBaseVop Y */
828 video->prevEnhanceVop->allChan = video->prevEnhanceVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for Previous Ehancement Y */

Completed in 214 milliseconds