/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/ |
A D | buffer_dec.c | 55 const int a_stride = abs(buf->a_stride); in CheckDecBuffer() local 59 const uint64_t a_size = MIN_BUFFER_SIZE(width, height, a_stride); in CheckDecBuffer() 70 ok &= (a_stride >= width); in CheckDecBuffer() 98 int uv_stride = 0, a_stride = 0; in AllocateBuffer() local 114 a_stride = w; in AllocateBuffer() 115 a_size = (uint64_t)a_stride * h; in AllocateBuffer() 142 buf->a_stride = a_stride; in AllocateBuffer() 171 buf->a += (H - 1) * buf->a_stride; in WebPFlipBuffer() 172 buf->a_stride = -buf->a_stride; in WebPFlipBuffer() 297 WebPCopyPlane(src->a, src->a_stride, dst->a, dst->a_stride, in WebPCopyDecBufferPixels()
|
A D | idec_dec.c | 714 uint8_t* a, size_t a_size, int a_stride) { in WebPINewYUVA() argument 721 luma_stride = u_stride = v_stride = a_stride = 0; in WebPINewYUVA() 729 if (a_size == 0 || a_stride == 0) return NULL; in WebPINewYUVA() 749 idec->output_.u.YUVA.a_stride = a_stride; in WebPINewYUVA() 868 int* stride, int* uv_stride, int* a_stride) { in WebPIDecGetYUVA() argument 883 if (a_stride != NULL) *a_stride = src->u.YUVA.a_stride; in WebPIDecGetYUVA()
|
A D | io_dec.c | 136 uint8_t* dst = buf->a + io->mb_y * buf->a_stride; in EmitAlphaYUV() 144 dst += buf->a_stride; in EmitAlphaYUV() 148 FillAlphaPlane(dst, mb_w, mb_h, buf->a_stride); in EmitAlphaYUV() 279 uint8_t* const dst_a = buf->a + p->last_y * buf->a_stride; in EmitRescaledAlphaYUV() 285 WebPMultRows(dst_y, buf->y_stride, dst_a, buf->a_stride, in EmitRescaledAlphaYUV() 292 buf->a_stride); in EmitRescaledAlphaYUV() 344 buf->a, out_width, out_height, buf->a_stride, 1, in InitYUVRescaler()
|
A D | vp8l_dec.c | 654 uint8_t* const a = buf->a + y_pos * buf->a_stride; in ConvertToYUVA()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | picture_tools_enc.c | 55 static int SmoothenBlock(const uint8_t* a_ptr, int a_stride, uint8_t* y_ptr, in SmoothenBlock() argument 68 alpha_ptr += a_stride; in SmoothenBlock() 79 alpha_ptr += a_stride; in SmoothenBlock() 115 const int a_stride = pic->a_stride; in WebPCleanupTransparentArea() local 127 if (SmoothenBlock(a_ptr + x, a_stride, y_ptr + x, y_stride, in WebPCleanupTransparentArea() 143 SmoothenBlock(a_ptr + x, a_stride, y_ptr + x, y_stride, in WebPCleanupTransparentArea() 146 a_ptr += SIZE * a_stride; in WebPCleanupTransparentArea() 154 SmoothenBlock(a_ptr + x, a_stride, y_ptr + x, y_stride, in WebPCleanupTransparentArea() 158 SmoothenBlock(a_ptr + x, a_stride, y_ptr + x, y_stride, in WebPCleanupTransparentArea() 227 (y + 1 == pic->height) ? a_ptr : a_ptr + pic->a_stride; in WebPBlendAlpha() [all …]
|
A D | picture_rescale_enc.c | 74 WebPCopyPlane(src->a, src->a_stride, in WebPPictureCopy() 75 dst->a, dst->a_stride, dst->width, dst->height); in WebPPictureCopy() 113 dst->a = src->a + top * src->a_stride + left; in WebPPictureView() 114 dst->a_stride = src->a_stride; in WebPPictureView() 149 const int a_offset = top * pic->a_stride + left; in WebPPictureCrop() 150 WebPCopyPlane(pic->a + a_offset, pic->a_stride, in WebPPictureCrop() 151 tmp.a, tmp.a_stride, width, height); in WebPPictureCrop() 193 WebPMultRows(pic->y, pic->y_stride, pic->a, pic->a_stride, in AlphaMultiplyY() 225 RescalePlane(pic->a, prev_width, prev_height, pic->a_stride, in WebPPictureRescale() 226 tmp.a, width, height, tmp.a_stride, work, 1); in WebPPictureRescale()
|
A D | picture_enc.c | 58 picture->a_stride = 0; in WebPPictureResetBufferYUVA() 97 int a_width, a_stride; in WebPPictureAllocYUVA() local 112 a_stride = a_width; in WebPPictureAllocYUVA() 115 a_size = (uint64_t)a_stride * height; in WebPPictureAllocYUVA() 134 picture->a_stride = a_stride; in WebPPictureAllocYUVA()
|
A D | picture_csp_enc.c | 62 1, picture->a_stride); in WebPPictureHasTransparency() 879 picture->a, picture->a_stride); in ImportYUVAFromRGBA() 927 dst_a, picture->a_stride); in ImportYUVAFromRGBA() 928 dst_a += 2 * picture->a_stride; in ImportYUVAFromRGBA() 1080 const uint8_t* const src = picture->a + y * picture->a_stride; in WebPPictureYUVAToARGB()
|
A D | alpha_enc.c | 311 assert(pic->a_stride >= width); in EncodeAlpha() 333 WebPCopyPlane(pic->a, pic->a_stride, quant_alpha, width, width, height); in EncodeAlpha()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/imageio/ |
A D | webpdec.c | 206 output_buffer->u.YUVA.a_stride = has_alpha ? pic->a_stride : 0; in ReadWebP() 210 output_buffer->u.YUVA.a_size = pic->height * pic->a_stride; in ReadWebP()
|
A D | image_enc.c | 447 const int a_stride = buffer->u.YUVA.a_stride; in WebPWriteAlphaPlane() local 455 a += a_stride; in WebPWriteAlphaPlane() 499 src_a += yuv->a_stride; in WebPWritePGM() 541 src_a += yuv->a_stride; in WebPWriteYUV()
|
/AliOS-Things-master/components/SDL2/src/image/Xcode/Frameworks/webp.framework/Versions/A/Headers/webp/ |
A D | decode.h | 196 int a_stride; // alpha stride member 317 uint8_t* a, size_t a_size, int a_stride); 361 int* width, int* height, int* stride, int* uv_stride, int* a_stride);
|
A D | encode.h | 308 int a_stride; // stride of the alpha plane member
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/webp/ |
A D | decode.h | 196 int a_stride; // alpha stride member 317 uint8_t* a, size_t a_size, int a_stride); 361 int* width, int* height, int* stride, int* uv_stride, int* a_stride);
|
A D | encode.h | 308 int a_stride; // stride of the alpha plane member
|
/AliOS-Things-master/components/SDL2/src/image/VisualC/external/include/webp/ |
A D | decode.h | 196 int a_stride; // alpha stride member 317 uint8_t* a, size_t a_size, int a_stride); 361 int* width, int* height, int* stride, int* uv_stride, int* a_stride);
|
A D | encode.h | 308 int a_stride; // stride of the alpha plane member
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/examples/ |
A D | dwebp.c | 157 output_buffer->u.YUVA.a_stride = stride; in AllocateExternalBuffer() 162 output_buffer->u.YUVA.a_stride = 0; in AllocateExternalBuffer()
|
A D | cwebp.c | 332 src_a += picture->a_stride; in DumpPicture()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/ |
A D | ChangeLog | 3872 8fd42b3a add a stride 'a_stride' for the alpha plane
|