OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:picPitch
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
slice.cpp
166
int
picPitch
= currPic->pitch;
182
offset = y_position *
picPitch
+ x_position;
191
if (orgPitch !=
picPitch
)
193
offset = y_position * (orgPitch -
picPitch
);
203
MBIntraSearch(encvid, CurrMbAddr, curL,
picPitch
);
228
video->pred_pitch =
picPitch
;
252
cur += ((
picPitch
<< 2) - 4);
287
cur += (8 - (
picPitch
<< 3));
300
MBInterIdct(video, curL, currMB,
picPitch
);
511
void Copy_MB(uint8 *curL, uint8 *curCb, uint8 *curCr, uint8 *predBlock, int
picPitch
)
[
all
...]
intra_est.cpp
32
bool IntraDecisionABE(AVCEncObject *encvid, int min_cost, uint8 *curL, int
picPitch
)
53
topL = curL -
picPitch
;
62
temp = *(leftL +=
picPitch
) - *(orgY_2 += orgPitch);
67
offset = (y_pos >> 2) *
picPitch
+ (x_pos >> 1);
69
orgY_2 = currInput->YCbCr[1] + offset + (y_pos >> 2) * (orgPitch -
picPitch
);
72
topL -= (
picPitch
>> 1);
78
temp = *(leftL += (
picPitch
>> 1)) - *(orgY_3 += (orgPitch >> 1));
83
orgY_2 = currInput->YCbCr[2] + offset + (y_pos >> 2) * (orgPitch -
picPitch
);
86
topL -= (
picPitch
>> 1);
92
temp = *(leftL += (
picPitch
>> 1)) - *(orgY_3 += (orgPitch >> 1))
[
all
...]
block.cpp
260
void MBInterIdct(AVCCommonObj *video, uint8 *curL, AVCMacroblock *currMB, int
picPitch
)
314
r1 = *(cur +=
picPitch
) + (r1 >> 6);
317
r2 = *(cur +=
picPitch
) + (r2 >> 6);
320
r3 = cur[
picPitch
] + (r3 >> 6);
322
cur[
picPitch
] = r3;
324
cur -= (
picPitch
<< 1);
333
cur += ((
picPitch
<< 2) - 4);
346
curL += ((
picPitch
<< 3) - 8);
[
all
...]
avcenc_lib.h
55
\param "
picPitch
" "Pitch of the current frame."
58
void MBInterIdct(AVCCommonObj *video, uint8 *curL, AVCMacroblock *currMB, int
picPitch
);
297
\param "
picPitch
" "Pitch of the reconstructed frame."
301
//bool IntraDecisionABE(AVCEncObject *encvid, int min_cost, uint8 *curL, int
picPitch
);
309
\param "
picPitch
" "Pitch of the reconstructed frame."
312
void MBIntraSearch(AVCEncObject *encvid, int mbnum, uint8 *curL, int
picPitch
);
[
all
...]
motion_comp.cpp
57
int
picPitch
= currPic->pitch;
61
tmp_word = y_position *
picPitch
;
98
offsetP = (block_y << 2) *
picPitch
+ (block_x << 2);
99
eLumaMotionComp(ref_l,
picPitch
, picHeight, x_pos, y_pos,
101
predBlock + offsetP,
picPitch
, MbWidth, MbHeight);
106
predCb + offsetP,
picPitch
>> 1, MbWidth >> 1, MbHeight >> 1);
109
predCr + offsetP,
picPitch
>> 1, MbWidth >> 1, MbHeight >> 1);
121
void eLumaMotionComp(uint8 *ref, int
picpitch
, int picheight,
141
ref += y_pos *
picpitch
+ x_pos;
143
eFullPelMC(ref,
picpitch
, pred, pred_pitch, blkwidth, blkheight)
[
all
...]
Completed in 75 milliseconds