/external/chromium_org/third_party/libwebp/dec/ |
D | buffer.c | 89 uint64_t uv_size = 0, a_size = 0, total_size; in AllocateBuffer() local 97 uv_size = (uint64_t)uv_stride * ((h + 1) / 2); in AllocateBuffer() 103 total_size = size + 2 * uv_size + a_size; in AllocateBuffer() 119 buf->u_size = (size_t)uv_size; in AllocateBuffer() 120 buf->v = output + size + uv_size; in AllocateBuffer() 122 buf->v_size = (size_t)uv_size; in AllocateBuffer() 124 buf->a = output + size + 2 * uv_size; in AllocateBuffer()
|
/external/webp/src/dec/ |
D | buffer.c | 89 uint64_t uv_size = 0, a_size = 0, total_size; in AllocateBuffer() local 97 uv_size = (uint64_t)uv_stride * ((h + 1) / 2); in AllocateBuffer() 103 total_size = size + 2 * uv_size + a_size; in AllocateBuffer() 119 buf->u_size = (size_t)uv_size; in AllocateBuffer() 120 buf->v = output + size + uv_size; in AllocateBuffer() 122 buf->v_size = (size_t)uv_size; in AllocateBuffer() 124 buf->a = output + size + 2 * uv_size; in AllocateBuffer()
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
D | videoframe.cc | 100 int uv_size = GetUPitch() * GetChromaHeight(); in CopyToPlanes() 102 memcpy(dst_u, GetUPlane(), uv_size); in CopyToPlanes() 103 memcpy(dst_v, GetVPlane(), uv_size); in CopyToPlanes() 229 int uv_size = GetUPitch() * GetChromaHeight(); in SetToBlack() 231 memset(GetUPlane(), 128, uv_size); in SetToBlack() 232 memset(GetVPlane(), 128, uv_size); in SetToBlack()
|
/external/chromium_org/media/cdm/ppapi/ |
D | ffmpeg_cdm_video_decoder.cc | 272 const int uv_size = y_size / 2; in CopyAvFrameTo() local 273 const int space_required = y_size + (uv_size * 2); in CopyAvFrameTo() 304 cdm_video_frame->FrameBuffer()->Data() + y_size + uv_size); in CopyAvFrameTo() 317 y_size + uv_size); in CopyAvFrameTo()
|
/external/chromium_org/ui/surface/ |
D | accelerated_surface_transformer_win_unittest.cc | 513 gfx::Size uv_size((dst_size.width() + 1) / 2, in DoYUVConversionTest() local 533 scoped_ptr<uint8[]> reference_u(new uint8[uv_size.GetArea()]); in DoYUVConversionTest() 534 scoped_ptr<uint8[]> reference_v(new uint8[uv_size.GetArea()]); in DoYUVConversionTest() 545 uv_size.width()); in DoYUVConversionTest() 550 AssertSame(uv_size.width(), uv_size.height(), &reference_u[0], dst_u); in DoYUVConversionTest() 551 AssertSame(uv_size.width(), uv_size.height(), &reference_v[0], dst_v); in DoYUVConversionTest()
|
D | accelerated_surface_transformer_win.cc | 548 gfx::Size* uv_size, in AllocYUVBuffers() argument 557 *uv_size = gfx::Size((y_size->width() + 1) / 2, (y_size->height() + 1) / 2); in AllocYUVBuffers() 563 if (!d3d_utils::CreateOrReuseLockableSurface(device(), *uv_size, in AllocYUVBuffers() 567 if (!d3d_utils::CreateOrReuseLockableSurface(device(), *uv_size, in AllocYUVBuffers()
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
D | webrtcvideoframe.cc | 193 int uv_size = static_cast<int>(GetChromaSize()); in GetVPlane() local 194 buffer += frame()->Width() * frame()->Height() + uv_size; in GetVPlane() 215 int uv_size = static_cast<int>(GetChromaSize()); in GetVPlane() local 216 buffer += frame()->Width() * frame()->Height() + uv_size; in GetVPlane()
|
/external/chromium_org/third_party/libwebp/enc/ |
D | picture.c | 55 uint64_t y_size, uv_size, uv0_size, a_size, total_size; in WebPPictureAlloc() local 81 uv_size = (uint64_t)uv_stride * uv_height; in WebPPictureAlloc() 84 total_size = y_size + a_size + 2 * uv_size + 2 * uv0_size; in WebPPictureAlloc() 107 mem += uv_size; in WebPPictureAlloc() 109 mem += uv_size; in WebPPictureAlloc()
|
/external/webp/src/enc/ |
D | picture.c | 55 uint64_t y_size, uv_size, uv0_size, a_size, total_size; in WebPPictureAlloc() local 81 uv_size = (uint64_t)uv_stride * uv_height; in WebPPictureAlloc() 84 total_size = y_size + a_size + 2 * uv_size + 2 * uv0_size; in WebPPictureAlloc() 107 mem += uv_size; in WebPPictureAlloc() 109 mem += uv_size; in WebPPictureAlloc()
|
/external/libyuv/files/source/ |
D | convert.cc | 1756 int uv_size = ((dst_width + 1) / 2) * ((abs_dst_height + 1) / 2); in ConvertToI420() local 1757 buf = new uint8[y_size + uv_size * 2]; in ConvertToI420() 1763 v = u + uv_size; in ConvertToI420()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rdopt.c | 2931 const BLOCK_SIZE uv_size = get_plane_block_size(bsize, &xd->plane[1]); in handle_inter_mode() local 2974 var_u = cpi->fn_ptr[uv_size].vf(x->plane[1].src.buf, in handle_inter_mode() 2982 var_v = cpi->fn_ptr[uv_size].vf(x->plane[2].src.buf, in handle_inter_mode()
|