Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
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);
Dmb_motion_comp.cpp141 PIXEL *c_comp, *c_prev; in MBMotionComp()
142 PIXEL *cu_comp, *cu_prev; in MBMotionComp()
143 PIXEL *cv_comp, *cv_prev; in MBMotionComp()
519 PIXEL *c_comp, *c_prev; in SkippedMBMotionComp()
520 PIXEL *cu_comp, *cu_prev; in SkippedMBMotionComp()
521 PIXEL *cv_comp, *cv_prev; in SkippedMBMotionComp()
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; in MBlockIDCT()
227 PIXEL *cu_comp; in MBlockIDCT()
228 PIXEL *cv_comp; in MBlockIDCT()
251 MacroBlock *mblock, PIXEL *c_comp, int comp, int width) in BlockIDCT_intra()
622 int16 *blk, PIXEL *comp, int width in idctrow_intra()
Dmp4lib_int.h58 PIXEL *yChan; /* The Y component */
59 PIXEL *uChan; /* The U component */
60 PIXEL *vChan; /* The V component */
Dpvdec_api.cpp53 extern PIXEL IMEM_currVop_yChan[QCIF_MBS*128*3];
54 extern PIXEL IMEM_prevVop_yChan[QCIF_MBS*128*3];
332 if (((uint64_t)video->width * video->height) > (uint64_t)INT32_MAX / sizeof(PIXEL)) { in PVAllocVideoData()
336 size = (int32)sizeof(PIXEL) * video->width * video->height; in PVAllocVideoData()
358 …video->currVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/… in PVAllocVideoData()
364 …video->prevVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/… in PVAllocVideoData()
391 …video->prevEnhcVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OK… in PVAllocVideoData()
1220 vopHeader[target_layer]->yChan = (PIXEL *)currYUV; in PVDecodeVopHeader()
1221 vopHeader[target_layer]->uChan = (PIXEL *)currYUV + decCtrl->size; in PVDecodeVopHeader()
1222 … vopHeader[target_layer]->vChan = (PIXEL *)(vopHeader[target_layer]->uChan) + (decCtrl->size >> 2); in PVDecodeVopHeader()
[all …]
Didct_vca.cpp414 void idctrow0_intra(int16 *, PIXEL *, int) in idctrow0_intra() argument
419 void idctrow1_intra(int16 *blk, PIXEL *comp, int width) in idctrow1_intra()
448 void idctrow2_intra(int16 *blk, PIXEL *comp, int width) in idctrow2_intra()
505 void idctrow3_intra(int16 *blk, PIXEL *comp, int width) in idctrow3_intra()
578 void idctrow4_intra(int16 *blk, PIXEL *comp, int width) in idctrow4_intra()
Dmp4def.h35 typedef uint8 PIXEL; typedef
Dmp4dec_lib.h99 void BlockIDCT_intra(MacroBlock *mblock, PIXEL *c_comp, int comp, int width_offset);
Dcombined_decode.cpp532 PIXEL *c_comp;
Ddatapart_decode.cpp625 PIXEL *c_comp; in GetMBData_DataPart()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
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 */
Dmp4def.h83 typedef UChar PIXEL; typedef
Dmp4enc_api.cpp773 || (size_t)(size + (size >> 1)) > SIZE_MAX / sizeof(PIXEL)) { in PVInitVideoEncoder()
776 …video->currVop->allChan = video->currVop->yChan = (PIXEL *)M4VENC_MALLOC(sizeof(PIXEL) * (size + (… in PVInitVideoEncoder()
794 …video->prevBaseVop->allChan = video->prevBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * … in PVInitVideoEncoder()
811 …video->nextBaseVop->allChan = video->nextBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * … in PVInitVideoEncoder()
828 …>prevEnhanceVop->allChan = video->prevEnhanceVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * … in PVInitVideoEncoder()