OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:subpel_pred
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
motion_est.cpp
78
uint8*
subpel_pred
= (uint8*) encvid->
subpel_pred
; // all 16 sub-pel positions
local
110
encvid->hpel_cand[0] =
subpel_pred
+ REF_CENTER;
111
encvid->hpel_cand[1] =
subpel_pred
+ V2Q_H0Q * SUBPEL_PRED_BLK_SIZE + 1 ;
112
encvid->hpel_cand[2] =
subpel_pred
+ V2Q_H2Q * SUBPEL_PRED_BLK_SIZE + 1;
113
encvid->hpel_cand[3] =
subpel_pred
+ V0Q_H2Q * SUBPEL_PRED_BLK_SIZE + 25;
114
encvid->hpel_cand[4] =
subpel_pred
+ V2Q_H2Q * SUBPEL_PRED_BLK_SIZE + 25;
115
encvid->hpel_cand[5] =
subpel_pred
+ V2Q_H0Q * SUBPEL_PRED_BLK_SIZE + 25;
116
encvid->hpel_cand[6] =
subpel_pred
+ V2Q_H2Q * SUBPEL_PRED_BLK_SIZE + 24;
117
encvid->hpel_cand[7] =
subpel_pred
+ V0Q_H2Q * SUBPEL_PRED_BLK_SIZE + 24
[
all
...]
findhalfpel.cpp
65
uint8 *
subpel_pred
= (uint8*) encvid->
subpel_pred
; // all 16 sub-pel positions
local
78
GenerateHalfPelPred(
subpel_pred
, ncand, lx);
146
void GenerateHalfPelPred(uint8*
subpel_pred
, uint8 *ncand, int lx)
161
dst =
subpel_pred
;
183
ref =
subpel_pred
+ 2;
220
dst =
subpel_pred
+ V0Q_H2Q * SUBPEL_PRED_BLK_SIZE; /* go to the 14th array 17x18*/
277
dst =
subpel_pred
+ V2Q_H2Q * SUBPEL_PRED_BLK_SIZE; /* 12th array 17x17*/
327
ref =
subpel_pred
+ 2;
328
dst =
subpel_pred
+ V2Q_H0Q * SUBPEL_PRED_BLK_SIZE; /* 10th array 18x17 *
[
all
...]
avcenc_int.h
410
uint32
subpel_pred
[SUBPEL_PRED_BLK_SIZE/*<<2*/]; /* all 16 sub-pel positions */
member in struct:tagEncObject
avcenc_lib.h
626
\param "
subpel_pred
" "Pointer to 2-D array, each array for each position."
631
void GenerateHalfPelPred(uint8 *
subpel_pred
, uint8 *ncand, int lx);
[
all
...]
intra_est.cpp
155
saved_inter = encvid->
subpel_pred
; /* reuse existing buffer */
189
saved_inter = encvid->
subpel_pred
; /* reuse existing buffer */
[
all
...]
Completed in 2993 milliseconds