/external/libhevc/decoder/ |
D | ihevcd_ittiam_logo.h | 116 UWORD32 y_pos, 122 … buf_u, buf_v, stride, x_pos, y_pos, yuv_fmt,disp_wd,disp_ht) ihevcd_insert_logo(buf_y, buf_u, buf… argument 124 #define INSERT_LOGO(buf_y, buf_u, buf_v, stride, x_pos, y_pos, yuv_fmt,disp_wd,disp_ht) argument
|
/external/pdfium/third_party/freetype/src/sfnt/ |
D | ttsbit.c | 550 FT_Int y_pos ); 556 FT_Int y_pos ); 564 FT_Int y_pos ) in tt_sbit_decoder_load_byte_aligned() argument 586 y_pos < 0 || (FT_UInt)( y_pos + height ) > bit_height ) in tt_sbit_decoder_load_byte_aligned() 602 line += y_pos * pitch + ( x_pos >> 3 ); in tt_sbit_decoder_load_byte_aligned() 703 FT_Int y_pos ) in tt_sbit_decoder_load_bit_aligned() argument 726 y_pos < 0 || (FT_UInt)( y_pos + height ) > bit_height ) in tt_sbit_decoder_load_bit_aligned() 744 line += y_pos * pitch + ( x_pos >> 3 ); in tt_sbit_decoder_load_bit_aligned() 827 FT_Int y_pos ) in tt_sbit_decoder_load_compound() argument 862 x_pos + dx, y_pos + dy ); in tt_sbit_decoder_load_compound() [all …]
|
/external/freetype/src/sfnt/ |
D | ttsbit.c | 550 FT_Int y_pos ); 556 FT_Int y_pos ); 564 FT_Int y_pos ) in tt_sbit_decoder_load_byte_aligned() argument 586 y_pos < 0 || (FT_UInt)( y_pos + height ) > bit_height ) in tt_sbit_decoder_load_byte_aligned() 602 line += y_pos * pitch + ( x_pos >> 3 ); in tt_sbit_decoder_load_byte_aligned() 703 FT_Int y_pos ) in tt_sbit_decoder_load_bit_aligned() argument 726 y_pos < 0 || (FT_UInt)( y_pos + height ) > bit_height ) in tt_sbit_decoder_load_bit_aligned() 744 line += y_pos * pitch + ( x_pos >> 3 ); in tt_sbit_decoder_load_bit_aligned() 827 FT_Int y_pos ) in tt_sbit_decoder_load_compound() argument 862 x_pos + dx, y_pos + dy ); in tt_sbit_decoder_load_compound() [all …]
|
/external/opencv3/3rdparty/libwebp/dec/ |
D | vp8l.c | 456 static void ConvertToYUVA(const uint32_t* const src, int width, int y_pos, in ConvertToYUVA() argument 462 uint8_t* const y = buf->y + y_pos * buf->y_stride; in ConvertToYUVA() 471 uint8_t* const u = buf->u + (y_pos >> 1) * buf->u_stride; in ConvertToYUVA() 472 uint8_t* const v = buf->v + (y_pos >> 1) * buf->v_stride; in ConvertToYUVA() 483 if (!(y_pos & 1)) { // even lines: store values in ConvertToYUVA() 499 if (!(y_pos & 1)) { // even lines in ConvertToYUVA() 513 uint8_t* const a = buf->a + y_pos * buf->a_stride; in ConvertToYUVA() 518 static int ExportYUVA(const VP8LDecoder* const dec, int y_pos) { in ExportYUVA() argument 525 ConvertToYUVA(src, dst_width, y_pos, dec->output_); in ExportYUVA() 526 ++y_pos; in ExportYUVA() [all …]
|
D | io.c | 361 static int ExportRGB(WebPDecParams* const p, int y_pos) { in ExportRGB() argument 365 uint8_t* dst = buf->rgba + (p->last_y + y_pos) * buf->stride; in ExportRGB() 371 assert(p->last_y + y_pos + num_lines_out < p->output->height); in ExportRGB() 408 static int ExportAlpha(WebPDecParams* const p, int y_pos) { in ExportAlpha() argument 410 uint8_t* const base_rgba = buf->rgba + (p->last_y + y_pos) * buf->stride; in ExportAlpha() 422 assert(p->last_y + y_pos + num_lines_out < p->output->height); in ExportAlpha() 439 static int ExportAlphaRGBA4444(WebPDecParams* const p, int y_pos) { in ExportAlphaRGBA4444() argument 441 uint8_t* const base_rgba = buf->rgba + (p->last_y + y_pos) * buf->stride; in ExportAlphaRGBA4444() 451 assert(p->last_y + y_pos + num_lines_out < p->output->height); in ExportAlphaRGBA4444()
|
D | webpi.h | 29 typedef int (*OutputRowFunc)(WebPDecParams* const p, int y_pos);
|
/external/webrtc/talk/media/base/ |
D | fakevideorenderer.h | 123 const uint8_t* y_pos = y_plane; in CheckFrameColorYuv() local 127 uint8_t y_value = *(y_pos + j); in CheckFrameColorYuv() 132 y_pos += y_pitch; in CheckFrameColorYuv()
|
/external/webp/src/dec/ |
D | io.c | 334 static int ExportRGB(WebPDecParams* const p, int y_pos) { in ExportRGB() argument 338 uint8_t* dst = buf->rgba + y_pos * buf->stride; in ExportRGB() 344 assert(y_pos + num_lines_out < p->output->height); in ExportRGB() 383 static int ExportAlpha(WebPDecParams* const p, int y_pos, int max_lines_out) { in ExportAlpha() argument 385 uint8_t* const base_rgba = buf->rgba + y_pos * buf->stride; in ExportAlpha() 397 assert(y_pos + num_lines_out < p->output->height); in ExportAlpha() 410 static int ExportAlphaRGBA4444(WebPDecParams* const p, int y_pos, in ExportAlphaRGBA4444() argument 413 uint8_t* const base_rgba = buf->rgba + y_pos * buf->stride; in ExportAlphaRGBA4444() 428 assert(y_pos + num_lines_out < p->output->height); in ExportAlphaRGBA4444()
|
D | vp8l.c | 578 static void ConvertToYUVA(const uint32_t* const src, int width, int y_pos, in ConvertToYUVA() argument 583 WebPConvertARGBToY(src, buf->y + y_pos * buf->y_stride, width); in ConvertToYUVA() 587 uint8_t* const u = buf->u + (y_pos >> 1) * buf->u_stride; in ConvertToYUVA() 588 uint8_t* const v = buf->v + (y_pos >> 1) * buf->v_stride; in ConvertToYUVA() 591 WebPConvertARGBToUV(src, u, v, width, !(y_pos & 1)); in ConvertToYUVA() 595 uint8_t* const a = buf->a + y_pos * buf->a_stride; in ConvertToYUVA() 604 static int ExportYUVA(const VP8LDecoder* const dec, int y_pos) { in ExportYUVA() argument 612 ConvertToYUVA(src, dst_width, y_pos, dec->output_); in ExportYUVA() 613 ++y_pos; in ExportYUVA() 622 int y_pos = dec->last_out_row_; in EmitRescaledRowsYUVA() local [all …]
|
D | webpi.h | 31 typedef int (*OutputRowFunc)(WebPDecParams* const p, int y_pos,
|
/external/libmpeg2/decoder/ |
D | impeg2d_api_main.c | 77 … buf_u, buf_v, stride, x_pos, y_pos, yuv_fmt,disp_wd,disp_ht) impeg2_insert_logo(buf_y, buf_u, buf… argument 79 #define INSERT_LOGO(buf_y, buf_u, buf_v, stride, x_pos, y_pos, yuv_fmt,disp_wd,disp_ht) argument
|