OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bgra
(Results
1 - 5
of
5
) sorted by null
/external/opencv/otherlibs/highgui/
utils.cpp
155
void icvCvt_BGRA2BGR_8u_C4C3R( const uchar*
bgra
, int bgra_step,
163
for( i = 0; i < size.width; i++, bgr += 3,
bgra
+= 4 )
165
uchar t0 =
bgra
[swap_rb], t1 =
bgra
[1];
167
t0 =
bgra
[swap_rb^2]; bgr[2] = t0;
170
bgra
+= bgra_step - size.width*4;
175
void icvCvt_BGRA2RGBA_8u_C4R( const uchar*
bgra
, int bgra_step,
181
for( i = 0; i < size.width; i++,
bgra
+= 4, rgba += 4 )
183
uchar t0 =
bgra
[0], t1 =
bgra
[1]
[
all
...]
utils.h
64
void icvCvt_BGRA2Gray_8u_C4C1R( const uchar*
bgra
, int bgra_step,
69
void icvCvt_BGRA2BGR_8u_C4C3R( const uchar*
bgra
, int bgra_step,
79
void icvCvt_BGRA2RGBA_8u_C4R( const uchar*
bgra
, int bgra_step,
/external/webp/src/dsp/
yuv.h
102
uint8_t* const
bgra
) {
103
VP8YuvToBgr(y, u, v,
bgra
);
104
bgra
[3] = 0xff;
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
yuv2rgb_converter.c
54
/* A maximum of 4 lines
BGRA
are stored, 4 byte per pixel */
55
unsigned char
bgra
[4 * MAX_HDTV_WIDTH * 4] __attribute__((aligned(128)));
variable
182
//
BGRA
231
// Convert YUV to
BGRA
, store it back (first two lines)
232
yuv_to_rgb_w16_line(y_plane[buf_idx], v_plane[buf_idx], u_plane[buf_idx],
bgra
, width);
238
bgra
+ size_2lines_bgra,
245
spu_mfcdma32(
bgra
, (unsigned int) ram_addr_bgra, size_2lines_bgra, STR_BUF, MFC_PUT_CMD);
247
spu_mfcdma32(
bgra
+size_2lines_bgra, (unsigned int) ram_addr_bgra, size_2lines_bgra, STR_BUF, MFC_PUT_CMD);
258
// Convert YUV to
BGRA
, store it back (first two lines)
259
yuv_to_rgb_w16_line(y_plane[buf_idx], v_plane[buf_idx], u_plane[buf_idx],
bgra
, width)
[
all
...]
/external/webp/include/webp/
encode.h
45
WEBP_EXTERN(size_t) WebPEncodeBGRA(const uint8_t*
bgra
,
61
WEBP_EXTERN(size_t) WebPEncodeLosslessBGRA(const uint8_t*
bgra
,
412
WebPPicture* picture, const uint8_t*
bgra
, int bgra_stride);
Completed in 123 milliseconds