OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:yChan
(Results
1 - 18
of
18
) sorted by null
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
pvdec_api.cpp
308
video->currVop->
yChan
= IMEM_currVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/
309
if (video->currVop->
yChan
== NULL) status = PV_FALSE;
310
video->currVop->uChan = video->currVop->
yChan
+ size;
313
video->prevVop->
yChan
= IMEM_prevVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/
314
if (video->prevVop->
yChan
== NULL) status = PV_FALSE;
315
video->prevVop->uChan = video->prevVop->
yChan
+ size;
318
video->currVop->
yChan
= (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/
319
if (video->currVop->
yChan
== NULL) status = PV_FALSE;
321
video->currVop->uChan = video->currVop->
yChan
+ size;
323
video->prevVop->
yChan
= (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*
[
all
...]
mb_motion_comp.cpp
35
video->currVop->
yChan
contents are the newly calculated luminance
238
c_prev = prev->
yChan
;
253
c_comp = video->currVop->
yChan
+ offset;
577
c_prev = prev->
yChan
+ offset;
585
c_comp = comp->
yChan
+ offset;
conceal.cpp
154
y1 = curr->
yChan
+ lumstart;
mp4lib_int.h
58
PIXEL *
yChan
; /* The Y component */
mp4dec_lib.h
266
void Copy_MB_into_Vop(uint8 *comp, int
yChan
[][NCOEFF_BLOCK], int width);
vop.cpp
[
all
...]
block_idct.cpp
237
c_comp = currVop->
yChan
+ offset;
combined_decode.cpp
666
c_comp = video->currVop->
yChan
+ offset;
datapart_decode.cpp
716
c_comp = video->currVop->
yChan
+ offset;
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
mp4enc_api.cpp
183
/* Modified : 5/21/01, allocate only
yChan
and assign uChan & vChan */
746
video->currVop->
yChan
= (PIXEL *)M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for currVop Y */
747
if (video->currVop->
yChan
== NULL) goto CLEAN_UP;
748
video->currVop->uChan = video->currVop->
yChan
+ size;/* Memory for currVop U */
754
video->currVop->
yChan
+= offset; /* offset to the origin.*/
764
video->prevBaseVop->
yChan
= (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for prevBaseVop Y */
765
if (video->prevBaseVop->
yChan
== NULL) goto CLEAN_UP;
766
video->prevBaseVop->uChan = video->prevBaseVop->
yChan
+ size; /* Memory for prevBaseVop U */
771
video->prevBaseVop->
yChan
+= offset; /* offset to the origin.*/
781
video->nextBaseVop->
yChan
= (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for nextBaseVop Y *
[
all
...]
fastcodemb.cpp
37
/* currVop->
yChan
,uChan,vChan Reconstructed pixels */
129
rec = currVop->
yChan
+ offset;
130
input = inputFrame->
yChan
+ offset;
266
/* currVop->
yChan
,uChan,vChan Reconstructed pixels */
356
rec = currVop->
yChan
+ offset;
357
input = inputFrame->
yChan
+ offset;
motion_comp.cpp
40
void Copy_MB_from_Vop(UChar *comp, Int
yChan
[][NCOEFF_BLOCK], Int width);
42
void Copy_MB_into_Vop(UChar *comp, Int
yChan
[][NCOEFF_BLOCK], Int width);
136
c_prev = prevVop->
yChan
;
163
c_prev = prevVop->
yChan
;
[
all
...]
me_utils.cpp
230
src = refVop->
yChan
;
mp4lib_int.h
42
PIXEL *
yChan
; /* The Y component */
motion_est.cpp
187
cur = currFrame->
yChan
;
274
cur = currFrame->
yChan
+ offset;
475
cur = currFrame->
yChan
;
801
ref = video->forwardRefVop->
yChan
; /* origin of actual frame */
[
all
...]
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/include/
mp4dec_api.h
122
uint8 *
yChan
; /* The Y component frame the user can copy a new reference to */
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/include/
mp4enc_api.h
118
UChar *
yChan
; /* pointer to Y */
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/
M4vH263Encoder.cpp
343
vin.
yChan
= inPtr;
344
vin.uChan = vin.
yChan
+ vin.height * vin.pitch;
Completed in 180 milliseconds