OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:currPic
(Results
1 - 7
of
7
) sorted by null
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
findhalfpel.cpp
57
AVCPictureData *
currPic
= encvid->common->
currPic
;
58
int lx =
currPic
->pitch;
slice.cpp
157
AVCPictureData *
currPic
= video->
currPic
;
166
int picPitch =
currPic
->pitch;
183
curL =
currPic
->Sl + offset;
186
curCb =
currPic
->Scb + offset;
187
curCr =
currPic
->Scr + offset;
209
/* and copy from currInput to
currPic
*/
motion_comp.cpp
43
AVCPictureData *
currPic
= video->
currPic
;
56
int picWidth =
currPic
->width;
57
int picPitch =
currPic
->pitch;
58
int picHeight =
currPic
->height;
62
curL =
currPic
->Sl + tmp_word + x_position;
64
curCb =
currPic
->Scb + offset;
65
curCr =
currPic
->Scr + offset;
96
//offset = offset_y *
currPic
->width;
[
all
...]
motion_est.cpp
605
int lx = video->
currPic
->width; // padding
608
int rx = video->
currPic
->pitch;
959
AVCPictureData *
currPic
= video->
currPic
;
966
int width =
currPic
->width; /* 6/12/01, must be multiple of 16 */
967
int height =
currPic
->height;
973
int lx =
currPic
->pitch; /* padding */
[
all
...]
intra_est.cpp
68
topL = video->
currPic
->Scb + offset;
82
topL = video->
currPic
->Scr + offset;
209
AVCPictureData *
currPic
= video->
currPic
;
213
int pitch =
currPic
->pitch;
218
uint8 *curL =
currPic
->Sl + offset; /* point to reconstructed frame */
629
AVCPictureData *
currPic
= video->
currPic
;
631
int pitch =
currPic
->pitch;
646
curL =
currPic
->Sl + offset
[
all
...]
/frameworks/av/media/libstagefright/codecs/avc/common/src/
deblock.cpp
78
int pitch = video->
currPic
->pitch, pitch_c, width;
81
SrcY = video->
currPic
->Sl; // pointers to source
82
SrcU = video->
currPic
->Scb;
83
SrcV = video->
currPic
->Scr;
85
width = video->
currPic
->width;
114
AVCPictureData *
currPic
= video->
currPic
;
119
int pitch =
currPic
->pitch;
127
curL =
currPic
->Sl + offset + (x_pos << 4);
132
curCb =
currPic
->Scb + offset
[
all
...]
/frameworks/av/media/libstagefright/codecs/avc/common/include/
avcint_common.h
669
AVCPictureData *
currPic
; /* pointer to current picture */
[
all
...]
Completed in 161 milliseconds