/external/webp/src/enc/ |
D | picture_rescale.c | 35 static void CopyPlane(const uint8_t* src, int src_stride, in CopyPlane() function 73 CopyPlane(src->y, src->y_stride, in WebPPictureCopy() 75 CopyPlane(src->u, src->uv_stride, in WebPPictureCopy() 77 CopyPlane(src->v, src->uv_stride, in WebPPictureCopy() 80 CopyPlane(src->a, src->a_stride, in WebPPictureCopy() 84 CopyPlane((const uint8_t*)src->argb, 4 * src->argb_stride, in WebPPictureCopy() 147 CopyPlane(pic->y + y_offset, pic->y_stride, in WebPPictureCrop() 149 CopyPlane(pic->u + uv_offset, pic->uv_stride, in WebPPictureCrop() 151 CopyPlane(pic->v + uv_offset, pic->uv_stride, in WebPPictureCrop() 156 CopyPlane(pic->a + a_offset, pic->a_stride, in WebPPictureCrop() [all …]
|
D | alpha.c | 179 static void CopyPlane(const uint8_t* src, int src_stride, in CopyPlane() function 327 CopyPlane(pic->a, pic->a_stride, quant_alpha, width, width, height); in EncodeAlpha()
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | mjpeg_decoder.cc | 290 CopyPlane(databuf_[i] + data_to_skip, GetComponentStride(i), in DecodeToBuffers() 308 CopyPlane(databuf_[i], GetComponentStride(i), in DecodeToBuffers() 324 CopyPlane(databuf_[i], GetComponentStride(i), in DecodeToBuffers()
|
D | planar_functions.cc | 28 void CopyPlane(const uint8* src_y, int src_stride_y, in CopyPlane() function 154 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I422Copy() 155 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, height); in I422Copy() 156 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, height); in I422Copy() 185 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Copy() 186 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Copy() 187 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, width, height); in I444Copy() 205 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I400ToI400() 225 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420ToI400()
|
D | convert.cc | 90 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Copy() 93 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight); in I420Copy() 94 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight); in I420Copy() 180 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I400ToI420() 330 CopyPlane(src_y, src_stride_y0, dst_y, dst_stride_y, width, height); in X420ToI420()
|
D | convert_from.cc | 143 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I400Copy() 429 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420ToNV12()
|
D | convert_argb.cc | 43 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb, in ARGBCopy()
|
D | rotate.cc | 1129 CopyPlane(src, src_stride, in RotatePlane()
|
D | scale.cc | 1445 CopyPlane(src, src_stride, dst, dst_stride, dst_width, dst_height); in ScalePlane()
|
/external/libyuv/files/include/libyuv/ |
D | planar_functions.h | 31 #define I400ToI400 CopyPlane 35 void CopyPlane(const uint8* src_y, int src_stride_y,
|
/external/libyuv/files/source/ |
D | convert.cc | 58 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Copy() 60 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight); in I420Copy() 61 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight); in I420Copy() 164 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I422ToI420() 249 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444ToI420() 309 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I411ToI420() 351 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I400ToI420()
|
D | convert_from.cc | 73 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420ToI422() 133 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420ToI444() 183 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420ToI411() 221 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I400Copy()
|
D | planar_functions.cc | 28 void CopyPlane(const uint8* src_y, int src_stride_y, in CopyPlane() function 74 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420ToI400()
|
D | convert_argb.cc | 45 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb, in ARGBCopy()
|
D | scale.cc | 2870 CopyPlane(src, src_stride, dst, dst_stride, dst_width, dst_height); in ScalePlane()
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | planar_functions.h | 27 void CopyPlane(const uint8* src_y, int src_stride_y,
|