OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:yuv_b_
(Results
1 - 4
of
4
) sorted by null
/external/opencv3/3rdparty/libwebp/dec/
frame.c
421
const size_t yuv_size = YUV_SIZE * sizeof(*dec->
yuv_b_
);
475
dec->
yuv_b_
= (uint8_t*)mem;
556
uint8_t* const y_dst = dec->
yuv_b_
+ Y_OFF;
557
uint8_t* const u_dst = dec->
yuv_b_
+ U_OFF;
558
uint8_t* const v_dst = dec->
yuv_b_
+ V_OFF;
673
// Transfer reconstructed samples from
yuv_b_
cache to final destination.
vp8i.h
246
uint8_t*
yuv_b_
; // main block for Y/U/V (size = YUV_SIZE)
member in struct:VP8Decoder
/external/webp/src/dec/
frame.c
77
uint8_t* const y_dst = dec->
yuv_b_
+ Y_OFF;
78
uint8_t* const u_dst = dec->
yuv_b_
+ U_OFF;
79
uint8_t* const v_dst = dec->
yuv_b_
+ V_OFF;
175
// Transfer reconstructed samples from
yuv_b_
cache to final destination.
712
const size_t yuv_size = YUV_SIZE * sizeof(*dec->
yuv_b_
);
763
dec->
yuv_b_
= (uint8_t*)mem;
vp8i.h
237
uint8_t*
yuv_b_
; // main block for Y/U/V (size = YUV_SIZE)
member in struct:VP8Decoder
Completed in 569 milliseconds