Home
last modified time | relevance | path

Searched refs:pitch (Results 1 – 25 of 42) sorted by relevance

12

/frameworks/av/media/libstagefright/codecs/avc/common/src/
Ddeblock.cpp64 …Loop_Luma_vertical(uint8* SrcPtr, uint8 *Strength, int Alpha, int Beta, int *clipTable, int pitch);
65 …op_Luma_horizontal(uint8* SrcPtr, uint8 *Strength, int Alpha, int Beta, int *clipTable, int pitch);
66 …op_Chroma_vertical(uint8* SrcPtr, uint8 *Strength, int Alpha, int Beta, int *clipTable, int pitch);
67 …_Chroma_horizontal(uint8* SrcPtr, uint8 *Strength, int Alpha, int Beta, int *clipTable, int pitch);
78 int pitch = video->currPic->pitch, pitch_c, width; in DeblockPicture() local
84 pitch_c = pitch >> 1; in DeblockPicture()
98 SrcY += ((pitch << 4) - width); in DeblockPicture()
119 int pitch = currPic->pitch; in MBInLoopDeblock() local
125 offset = (y_pos << 4) * pitch; in MBInLoopDeblock()
142 curL -= (pitch << 2); /* go back 4 lines */ in MBInLoopDeblock()
[all …]
/frameworks/wilhelm/src/itf/
DIPitch.c22 static SLresult IPitch_SetPitch(SLPitchItf self, SLpermille pitch) in IPitch_SetPitch() argument
28 if (!(thiz->mMinPitch <= pitch && pitch <= thiz->mMaxPitch)) { in IPitch_SetPitch()
32 thiz->mPitch = pitch; in IPitch_SetPitch()
50 SLpermille pitch = thiz->mPitch; in IPitch_GetPitch() local
52 *pPitch = pitch; in IPitch_GetPitch()
DI3DMacroscopic.c70 SLmillidegree heading, SLmillidegree pitch, SLmillidegree roll) in I3DMacroscopic_SetOrientationAngles() argument
75 (-90000 <= pitch) && (pitch <= 90000) && in I3DMacroscopic_SetOrientationAngles()
82 thiz->mOrientationAngles.mPitch = pitch; in I3DMacroscopic_SetOrientationAngles()
DI3DLocation.c189 SLmillidegree heading, SLmillidegree pitch, SLmillidegree roll) in I3DLocation_SetOrientationAngles() argument
194 (-90000 <= pitch) && (pitch <= 90000) && in I3DLocation_SetOrientationAngles()
201 thiz->mOrientationAngles.mPitch = pitch; in I3DLocation_SetOrientationAngles()
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
Dintra_est.cpp36 int orgPitch = currInput->pitch; in IntraDecisionABE()
122 int orgPitch = currInput->pitch; in MBIntraSearch()
213 int pitch = currPic->pitch; in intrapred_luma_16x16() local
215 int offset = y_pos * pitch + x_pos; in intrapred_luma_16x16()
230 top = curL - pitch; in intrapred_luma_16x16()
276 left = curL - 1 - pitch; in intrapred_luma_16x16()
282 word1 = *(left += pitch); in intrapred_luma_16x16()
329 comp_ref_x0 = curL - pitch + 8; in intrapred_luma_16x16()
330 comp_ref_x1 = curL - pitch + 6; in intrapred_luma_16x16()
331 comp_ref_y0 = curL - 1 + (pitch << 3); in intrapred_luma_16x16()
[all …]
Dblock.cpp21 void trans(uint8 *cur, int pitch, uint8 *predBlock, int16 *dataBlock) in trans() argument
25 int curpitch = (uint)pitch >> 16; in trans()
26 int predpitch = (pitch & 0xFFFF); in trans()
80 int org_pitch = encvid->currInput->pitch; in dct_luma()
81 int pitch = video->currPic->pitch; in dct_luma() local
237 *(cur += pitch) = r1; in dct_luma()
238 *(cur += pitch) = r2; in dct_luma()
239 cur[pitch] = r3; in dct_luma()
240 cur -= (pitch << 1); in dct_luma()
250 *((uint32*)(cur += pitch)) = *((uint32*)(pred += pred_pitch)); in dct_luma()
[all …]
Dmotion_est.cpp187 bool IntraDecisionABE(int *min_cost, uint8 *cur, int pitch, bool ave) in IntraDecisionABE() argument
197 out = cur - pitch; in IntraDecisionABE()
206 out -= pitch; in IntraDecisionABE()
207 cur -= pitch; in IntraDecisionABE()
210 temp = *(out += pitch) - *(cur += pitch); in IntraDecisionABE()
247 int pitch = currInput->pitch; in AVCMotionEstimation() local
344 offset = pitch * (j << 4) + (start_i << 4); in AVCMotionEstimation()
359 HTFMPrepareCurMB_AVC(encvid, &htfm_stat, cur, pitch); in AVCMotionEstimation()
361 AVCPrepareCurMB(encvid, cur, pitch); in AVCMotionEstimation()
383 if (false == IntraDecisionABE(&abe_cost, cur, pitch, true)) in AVCMotionEstimation()
[all …]
Davcenc_lib.h302 bool IntraDecision(int *min_cost, uint8 *cur, int pitch, bool ave);
529 void HTFMPrepareCurMB_AVC(AVCEncObject *encvid, HTFM_Stat *htfm_stat, uint8 *cur, int pitch);
539 void AVCPrepareCurMB(AVCEncObject *encvid, uint8 *cur, int pitch);
Davcenc_api.cpp299 if (input->pitch > 0xFFFF) in PVAVCEncSetInput()
565 recon->pitch = currFS->frame.pitch; in PVAVCEncGetRecon()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dme_utils.cpp222 Int pitch, width, height; in PaddingEdge() local
227 pitch = refVop->pitch; in PaddingEdge()
239 dst = src - (pitch << 4); in PaddingEdge()
258 M4VENC_MEMCPY(dst + pitch, dst, pitch); in PaddingEdge()
259 dst += pitch; in PaddingEdge()
263 dst += (pitch + 16); in PaddingEdge()
285 src += pitch; in PaddingEdge()
294 M4VENC_MEMCPY(dst, dst - pitch, pitch); in PaddingEdge()
295 dst += pitch; in PaddingEdge()
Dmotion_comp.cpp107 Int height, pitch, pitch_uv, height_uv; in getMotionCompensatedMB() local
118 pitch = currVop->pitch; in getMotionCompensatedMB()
120 pitch_uv = pitch >> 1; in getMotionCompensatedMB()
143 pitch, round1); in getMotionCompensatedMB()
168 pitch, round1); in getMotionCompensatedMB()
1717 void Copy_MB_from_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int pitch) in Copy_MB_from_Vop() argument
1721 Int offset = pitch - MB_SIZE; in Copy_MB_from_Vop()
1765 void Copy_B_from_Vop(UChar *comp, Int cChan[], Int pitch) in Copy_B_from_Vop() argument
1768 Int offset = pitch - B_SIZE; in Copy_B_from_Vop()
1795 void Copy_MB_into_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int pitch) in Copy_MB_into_Vop() argument
[all …]
Dfindhalfpel.cpp79 Int lx = video->currVop->pitch; in FindHalfPelMB()
194 Int lx = video->currVop->pitch; in FindHalfPelBlk()
Dmp4enc_api.cpp191 Int max = 0, max_width = 0, max_height = 0, pitch, offset; in PVInitVideoEncoder() local
735 pitch = max_width; in PVInitVideoEncoder()
740 pitch = max_width + 32; in PVInitVideoEncoder()
741 offset = (pitch << 4) + 16; in PVInitVideoEncoder()
744 size = pitch * max_height; in PVInitVideoEncoder()
1481 video->currVop->pitch = width_16; in PVEncodeVideoFrame()
1485 video->currVop->pitch = width_16 + 32; in PVEncodeVideoFrame()
1589 vid_out->pitch = video->currVop->width; /* padded width */ in PVEncodeVideoFrame()
1594 vid_out->pitch = video->currVop->width + 32; /* padded width */ in PVEncodeVideoFrame()
1751 video->currVop->pitch = width_16; in PVEncodeFrameSet()
[all …]
Ddatapart_encode.cpp43 Int lx = currVop->pitch; /* with padding */ in EncodeFrameDataPartMode()
220 Int lx = currVop->pitch; /* , with pading */ in EncodeSliceDataPartMode()
/frameworks/base/core/java/android/speech/tts/
DEventLogTags.logtags5 … (engine|3),(caller_uid|1),(caller_pid|1),(length|1),(locale|3),(rate|1),(pitch|1),(engine_latency…
6 …tts_speak_failure (engine|3),(caller_uid|1),(caller_pid|1),(length|1),(locale|3),(rate|1),(pitch|1)
DSynthesisRequest.java160 void setPitch(int pitch) { in setPitch() argument
161 mPitch = pitch; in setPitch()
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
Dvad1.cpp779 if (((Word16)(st->pitch & 0x6000) == 0x6000) || in update_cntrl()
1121 ((st->pitch & 0x7800) == 0) in noise_estimate_update()
1734 state->pitch = 0; in vad1_reset()
2205 st->pitch = shr(st->pitch, 1, pOverflow); in vad_pitch_detection()
2215 st->pitch |= 0x4000; in vad_pitch_detection()
2311 st->pitch = st->pitch & 0x3fff; in vad1()
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
Dvad1.h119 Word16 pitch; /* flags for pitch detection */ member
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
DSoundPoolTest.java340 float pitch = 0.5f; in run() local
343 mScale[i] = pitch; in run()
344 pitch *= SEMITONE; in run()
/frameworks/native/services/sensorservice/
DOrientationSensor.cpp57 outEvent->orientation.pitch = g.y; in process()
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
Dq_gain2.tab24 * pitch gain are ordered in table to reduce complexity *
/frameworks/av/media/libstagefright/codecs/avc/common/include/
Davcapi_common.h146 int pitch; member
/frameworks/native/include/android/
Dsensor.h112 float pitch; member
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
DSoftMPEG4Encoder.cpp696 vin.pitch = ((mVideoWidth + 15) >> 4) << 4; in onQueueFilled()
699 vin.uChan = vin.yChan + vin.height * vin.pitch; in onQueueFilled()
700 vin.vChan = vin.uChan + ((vin.height * vin.pitch) >> 2); in onQueueFilled()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/include/
Dmp4enc_api.h122 Int pitch; /* stride for Y */ member

12