/external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
D | pvdec_api.cpp | 309 video->currVop->yChan = IMEM_currVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/ in PVAllocVideoData() 310 if (video->currVop->yChan == NULL) status = PV_FALSE; in PVAllocVideoData() 311 video->currVop->uChan = video->currVop->yChan + size; in PVAllocVideoData() 314 video->prevVop->yChan = IMEM_prevVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/ in PVAllocVideoData() 315 if (video->prevVop->yChan == NULL) status = PV_FALSE; in PVAllocVideoData() 316 video->prevVop->uChan = video->prevVop->yChan + size; in PVAllocVideoData() 319 …video->currVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/… in PVAllocVideoData() 320 if (video->currVop->yChan == NULL) status = PV_FALSE; in PVAllocVideoData() 322 video->currVop->uChan = video->currVop->yChan + size; in PVAllocVideoData() 324 …video->prevVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/… in PVAllocVideoData() [all …]
|
D | mb_motion_comp.cpp | 238 c_prev = prev->yChan; in MBMotionComp() 253 c_comp = video->currVop->yChan + offset; in MBMotionComp() 577 c_prev = prev->yChan + offset; in SkippedMBMotionComp() 585 c_comp = comp->yChan + offset; in SkippedMBMotionComp()
|
D | mp4lib_int.h | 58 PIXEL *yChan; /* The Y component */ member
|
D | conceal.cpp | 154 y1 = curr->yChan + lumstart; in CopyVopMB()
|
D | vop.cpp | 1436 video->currVop->uChan = video->currVop->yChan + size; in DecodeShortHeader() 1438 video->prevVop->uChan = video->prevVop->yChan + size; in DecodeShortHeader() 1588 …H263_Deblock(video->currVop->yChan, video->width, video->height, video->QPMB, video->headerInfo.Mo… in PV_DecodeVop()
|
D | mp4dec_lib.h | 267 void Copy_MB_into_Vop(uint8 *comp, int yChan[][NCOEFF_BLOCK], int width);
|
D | block_idct.cpp | 238 c_comp = currVop->yChan + offset; in MBlockIDCT()
|
D | combined_decode.cpp | 667 c_comp = video->currVop->yChan + offset;
|
D | datapart_decode.cpp | 717 c_comp = video->currVop->yChan + offset; in GetMBData_DataPart()
|
/external/opencore/codecs_v2/omx/omx_m4venc/src/ |
D | mpeg4_enc.cpp | 774 vid_in.yChan = (UChar*)iVideoIn; in Mp4EncodeVideo() 868 UChar *y, *u, *v, *yChan, *uChan, *vChan; in CopyToYUVIn() local 886 yChan = (UChar*)(iYUVIn + offset); in CopyToYUVIn() 887 oscl_memset(yChan, 16, size16 - offset); /* pad with zeros */ in CopyToYUVIn() 897 yChan = (UChar*)iYUVIn; /* Normal order */ in CopyToYUVIn() 922 oscl_memset((uint8 *)yChan, 16, i); in CopyToYUVIn() 923 yChan += i; in CopyToYUVIn() 949 oscl_memset((uint8 *)yChan, 16, i); in CopyToYUVIn() 950 yChan += i; in CopyToYUVIn() 980 oscl_memcpy(yChan, y, size); in CopyToYUVIn() [all …]
|
/external/opencore/codecs_v2/omx/omx_h264enc/src/ |
D | avc_enc.cpp | 939 uint8 *y, *u, *v, *yChan, *uChan, *vChan; in CopyToYUVIn() local 957 yChan = (uint8*)(iYUVIn + offset); in CopyToYUVIn() 958 oscl_memset(yChan, 16, size16 - offset); /* pad with zeros */ in CopyToYUVIn() 968 yChan = (uint8*)iYUVIn; /* Normal order */ in CopyToYUVIn() 993 oscl_memset((uint8 *)yChan, 16, i); in CopyToYUVIn() 994 yChan += i; in CopyToYUVIn() 1020 oscl_memset((uint8 *)yChan, 16, i); in CopyToYUVIn() 1021 yChan += i; in CopyToYUVIn() 1051 oscl_memcpy(yChan, y, size); in CopyToYUVIn() 1057 oscl_memcpy(yChan, y, ilimit); in CopyToYUVIn() [all …]
|
/external/opencore/codecs_v2/video/m4v_h263/enc/src/ |
D | pvm4vencoder.cpp | 156 vid_in.yChan = (UChar*)iVideoIn; in Encode() 224 iOutputData[oindx]->iFrame = iVideoOut = (uint8*)vid_out.yChan; in Run() 1132 vid_in.yChan = (UChar*)iVideoIn; in EncodeFrame() 1143 aVidOut->iFrame = iVideoOut = (uint8*)vid_out.yChan; in EncodeFrame() 1281 UChar *y, *u, *v, *yChan, *uChan, *vChan; in CopyToYUVIn() local 1299 yChan = (UChar*)(iYUVIn + offset); in CopyToYUVIn() 1300 oscl_memset(yChan, 16, size16 - offset); /* pad with zeros */ in CopyToYUVIn() 1310 yChan = (UChar*)iYUVIn; /* Normal order */ in CopyToYUVIn() 1335 oscl_memset((uint8 *)yChan, 16, i); in CopyToYUVIn() 1336 yChan += i; in CopyToYUVIn() [all …]
|
D | mp4enc_api.cpp | 746 …video->currVop->yChan = (PIXEL *)M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory fo… in PVInitVideoEncoder() 747 if (video->currVop->yChan == NULL) goto CLEAN_UP; in PVInitVideoEncoder() 748 video->currVop->uChan = video->currVop->yChan + size;/* Memory for currVop U */ in PVInitVideoEncoder() 754 video->currVop->yChan += offset; /* offset to the origin.*/ in PVInitVideoEncoder() 764 …video->prevBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memo… in PVInitVideoEncoder() 765 if (video->prevBaseVop->yChan == NULL) goto CLEAN_UP; in PVInitVideoEncoder() 766 video->prevBaseVop->uChan = video->prevBaseVop->yChan + size; /* Memory for prevBaseVop U */ in PVInitVideoEncoder() 771 video->prevBaseVop->yChan += offset; /* offset to the origin.*/ in PVInitVideoEncoder() 781 …video->nextBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memo… in PVInitVideoEncoder() 782 if (video->nextBaseVop->yChan == NULL) goto CLEAN_UP; in PVInitVideoEncoder() [all …]
|
D | fastcodemb.cpp | 130 rec = currVop->yChan + offset; in CodeMB_H263() 131 input = inputFrame->yChan + offset; in CodeMB_H263() 357 rec = currVop->yChan + offset; in CodeMB_MPEG() 358 input = inputFrame->yChan + offset; in CodeMB_MPEG()
|
D | motion_comp.cpp | 41 void Copy_MB_from_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int width); 43 void Copy_MB_into_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int width); 137 c_prev = prevVop->yChan; in getMotionCompensatedMB() 164 c_prev = prevVop->yChan; in getMotionCompensatedMB() 1718 void Copy_MB_from_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int pitch) in Copy_MB_from_Vop() 1727 src1 = yChan[i]; in Copy_MB_from_Vop() 1728 src2 = yChan[i+1]; in Copy_MB_from_Vop() 1796 void Copy_MB_into_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int pitch) in Copy_MB_into_Vop() 1807 src1 = yChan[i]; in Copy_MB_into_Vop() 1808 src2 = yChan[i+1]; in Copy_MB_into_Vop()
|
D | motion_est.cpp | 187 cur = currFrame->yChan; in MotionEstimation() 274 cur = currFrame->yChan + offset; in MotionEstimation() 475 cur = currFrame->yChan; in MotionEstimation() 801 ref = video->forwardRefVop->yChan; /* origin of actual frame */ in MBMotionSearch()
|
D | me_utils.cpp | 230 src = refVop->yChan; in PaddingEdge()
|
D | mp4lib_int.h | 44 PIXEL *yChan; /* The Y component */ member
|
/external/opencore/codecs_v2/video/avc_h264/enc/src/ |
D | pvavcencoder.cpp | 732 uint8 *y, *u, *v, *yChan, *uChan, *vChan; in CopyToYUVIn() local 750 yChan = (uint8*)(iYUVIn + offset); in CopyToYUVIn() 751 oscl_memset(yChan, 16, size16 - offset); /* pad with zeros */ in CopyToYUVIn() 761 yChan = (uint8*)iYUVIn; /* Normal order */ in CopyToYUVIn() 786 oscl_memset((uint8 *)yChan, 16, i); in CopyToYUVIn() 787 yChan += i; in CopyToYUVIn() 813 oscl_memset((uint8 *)yChan, 16, i); in CopyToYUVIn() 814 yChan += i; in CopyToYUVIn() 844 oscl_memcpy(yChan, y, size); in CopyToYUVIn() 850 oscl_memcpy(yChan, y, ilimit); in CopyToYUVIn() [all …]
|
/external/opencore/codecs_v2/video/m4v_h263/dec/include/ |
D | mp4dec_api.h | 128 uint8 *yChan; /* The Y component frame the user can copy a new reference to */ member
|
/external/opencore/codecs_v2/video/m4v_h263/enc/include/ |
D | mp4enc_api.h | 120 UChar *yChan; /* pointer to Y */ member
|