Searched refs:v_ptr (Results 1 – 4 of 4) sorted by relevance
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | picture_tools_enc.c | 118 uint8_t* v_ptr = pic->v; in WebPCleanupTransparentArea() local 121 if (a_ptr == NULL || y_ptr == NULL || u_ptr == NULL || v_ptr == NULL) { in WebPCleanupTransparentArea() 132 values[2] = v_ptr[x >> 1]; in WebPCleanupTransparentArea() 137 Flatten(v_ptr + (x >> 1), values[2], uv_stride, SIZE2); in WebPCleanupTransparentArea() 149 v_ptr += SIZE2 * uv_stride; in WebPCleanupTransparentArea() 213 uint8_t* v_ptr = pic->v; in WebPBlendAlpha() local 235 v_ptr[x] = BLEND_10BIT(V0, v_ptr[x], alpha); in WebPBlendAlpha() 240 v_ptr[x] = BLEND_10BIT(V0, v_ptr[x], alpha); in WebPBlendAlpha() 244 v_ptr += pic->uv_stride; in WebPBlendAlpha()
|
/AliOS-Things-master/components/SDL2/src/video/yuv2rgb/ |
A D | yuv_rgb_std_func.h | 102 *v_ptr=V+(y/uv_y_sample_interval)*UV_stride; in STD_FUNCTION_NAME() local 115 int32_t v_tmp = ((*v_ptr)-128); in STD_FUNCTION_NAME() 140 v_ptr+=2*uv_pixel_stride/uv_x_sample_interval; in STD_FUNCTION_NAME() 149 int32_t v_tmp = ((*v_ptr)-128); in STD_FUNCTION_NAME() 172 *v_ptr=V+(y/uv_y_sample_interval)*UV_stride; in STD_FUNCTION_NAME() local 181 int32_t v_tmp = ((*v_ptr)-128); in STD_FUNCTION_NAME() 197 v_ptr+=2*uv_pixel_stride/uv_x_sample_interval; in STD_FUNCTION_NAME() 206 int32_t v_tmp = ((*v_ptr)-128); in STD_FUNCTION_NAME()
|
A D | yuv_rgb_sse_func.h | 257 v = LOAD_SI128((const __m128i*)(v_ptr)); \ 277 v1 = _mm_srli_epi32(_mm_slli_epi32(LOAD_SI128((const __m128i*)(v_ptr)), 24), 24); \ 278 v2 = _mm_srli_epi32(_mm_slli_epi32(LOAD_SI128((const __m128i*)(v_ptr+16)), 24), 24); \ 279 v3 = _mm_srli_epi32(_mm_slli_epi32(LOAD_SI128((const __m128i*)(v_ptr+32)), 24), 24); \ 280 v4 = _mm_srli_epi32(_mm_slli_epi32(LOAD_SI128((const __m128i*)(v_ptr+48)), 24), 24); \ 295 v1 = _mm_srli_epi16(_mm_slli_epi16(LOAD_SI128((const __m128i*)(v_ptr)), 8), 8); \ 296 v2 = _mm_srli_epi16(_mm_slli_epi16(LOAD_SI128((const __m128i*)(v_ptr+16)), 8), 8); \ 425 *v_ptr=V+(ypos/uv_y_sample_interval)*UV_stride; in SSE_FUNCTION_NAME() local 445 v_ptr+=32*uv_pixel_stride/uv_x_sample_interval; in SSE_FUNCTION_NAME() 456 *v_ptr=V+(ypos/uv_y_sample_interval)*UV_stride; in SSE_FUNCTION_NAME() local [all …]
|
A D | yuv_rgb.c | 205 *v_ptr=V+(y/2)*UV_stride; in rgb24_yuv420_std() local 233 v_ptr[0] = clampU8(v_tmp/4+(128<<PRECISION)); in rgb24_yuv420_std() 240 v_ptr += 1; in rgb24_yuv420_std() 613 SAVE_SI128((__m128i*)(v_ptr), v1); 633 *v_ptr=V+(ypos/2)*UV_stride; in rgb24_yuv420_sse() local 644 v_ptr+=16; in rgb24_yuv420_sse() 669 *v_ptr=V+(ypos/2)*UV_stride; in rgb24_yuv420_sseu() local 680 v_ptr+=16; in rgb24_yuv420_sseu()
|
Completed in 8 milliseconds