Searched refs:PIXEL (Results 1 – 13 of 13) sorted by relevance
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | idct.h | 59 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);
|
D | mb_motion_comp.cpp | 141 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()
|
D | block_idct.cpp | 124 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()
|
D | mp4lib_int.h | 58 PIXEL *yChan; /* The Y component */ 59 PIXEL *uChan; /* The U component */ 60 PIXEL *vChan; /* The V component */
|
D | pvdec_api.cpp | 53 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 …]
|
D | idct_vca.cpp | 414 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()
|
D | mp4def.h | 35 typedef uint8 PIXEL; typedef
|
D | mp4dec_lib.h | 99 void BlockIDCT_intra(MacroBlock *mblock, PIXEL *c_comp, int comp, int width_offset);
|
D | combined_decode.cpp | 532 PIXEL *c_comp;
|
D | datapart_decode.cpp | 625 PIXEL *c_comp; in GetMBData_DataPart()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | mp4lib_int.h | 42 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 */
|
D | mp4def.h | 83 typedef UChar PIXEL; typedef
|
D | mp4enc_api.cpp | 773 || (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()
|