Home
last modified time | relevance | path

Searched refs:v_stride (Results 1 – 21 of 21) sorted by relevance

/external/libyuv/files/source/
Dconvert.cc1521 int v_stride; member
1536 dest->v, dest->v_stride, in JpegCopyI420()
1540 dest->v += ((rows + 1) >> 1) * dest->v_stride; in JpegCopyI420()
1554 dest->v, dest->v_stride, in JpegI422ToI420()
1558 dest->v += ((rows + 1) >> 1) * dest->v_stride; in JpegI422ToI420()
1572 dest->v, dest->v_stride, in JpegI444ToI420()
1576 dest->v += ((rows + 1) >> 1) * dest->v_stride; in JpegI444ToI420()
1590 dest->v, dest->v_stride, in JpegI411ToI420()
1594 dest->v += ((rows + 1) >> 1) * dest->v_stride; in JpegI411ToI420()
1606 dest->v, dest->v_stride, in JpegI400ToI420()
[all …]
Dconvert_from.cc1189 const uint8* v, int v_stride, in ConvertFromI420() argument
1203 v, v_stride, in ConvertFromI420()
1211 v, v_stride, in ConvertFromI420()
1219 v, v_stride, in ConvertFromI420()
1228 v, v_stride, in ConvertFromI420()
1236 v, v_stride, in ConvertFromI420()
1244 v, v_stride, in ConvertFromI420()
1252 v, v_stride, in ConvertFromI420()
1260 v, v_stride, in ConvertFromI420()
1268 v, v_stride, in ConvertFromI420()
[all …]
/external/chromium_org/media/base/
Dvideo_util_unittest.cc24 int y_stride, int u_stride, int v_stride) { in CreateSourceFrame() argument
27 EXPECT_GE(v_stride, width / 2); in CreateSourceFrame()
32 v_stride_ = v_stride; in CreateSourceFrame()
36 v_plane_.reset(new uint8[v_stride * height / 2]); in CreateSourceFrame()
Dvideo_frame.h165 int32 v_stride,
Dvideo_frame.cc164 int32 v_stride, in WrapExternalYuvData() argument
175 frame->strides_[kVPlane] = v_stride; in WrapExternalYuvData()
/external/webp/include/webp/
Ddecode.h126 uint8_t* v, size_t v_size, int v_stride);
186 int u_stride, v_stride; // chroma strides member
304 uint8_t* v, size_t v_size, int v_stride,
312 uint8_t* v, size_t v_size, int v_stride);
/external/chromium_org/third_party/libwebp/webp/
Ddecode.h126 uint8_t* v, size_t v_size, int v_stride);
186 int u_stride, v_stride; // chroma strides member
304 uint8_t* v, size_t v_size, int v_stride,
312 uint8_t* v, size_t v_size, int v_stride);
/external/chromium_org/third_party/libwebp/dec/
Dbuffer.c51 const uint64_t v_size = (uint64_t)buf->v_stride * ((height + 1) / 2); in CheckDecBuffer()
58 ok &= (buf->v_stride >= (width + 1) / 2); in CheckDecBuffer()
121 buf->v_stride = uv_stride; in AllocateBuffer()
Didec.c652 uint8_t* v, size_t v_size, int v_stride, in WebPINewYUVA() argument
660 luma_stride = u_stride = v_stride = a_stride = 0; in WebPINewYUVA()
666 if (luma_stride == 0 || u_stride == 0 || v_stride == 0) return NULL; in WebPINewYUVA()
685 idec->output_.u.YUVA.v_stride = v_stride; in WebPINewYUVA()
695 uint8_t* v, size_t v_size, int v_stride) { in WebPINewYUV() argument
698 v, v_size, v_stride, in WebPINewYUV()
Dwebp.c553 uint8_t* v, size_t v_size, int v_stride) { in WebPDecodeYUVInto() argument
568 output.u.YUVA.v_stride = v_stride; in WebPDecodeYUVInto()
646 assert(buf->u_stride == buf->v_stride); in WebPDecodeYUV()
Dio.c33 uint8_t* const v_dst = buf->v + (io->mb_y >> 1) * buf->v_stride; in EmitYUV()
44 memcpy(v_dst + j * buf->v_stride, io->v + j * io->uv_stride, uv_w); in EmitYUV()
342 buf->v, uv_out_width, uv_out_height, buf->v_stride, 1, in InitYUVRescaler()
Dvp8l.c473 uint8_t* const v = buf->v + (y_pos >> 1) * buf->v_stride; in ConvertToYUVA()
/external/webp/src/dec/
Dbuffer.c51 const uint64_t v_size = (uint64_t)buf->v_stride * ((height + 1) / 2); in CheckDecBuffer()
58 ok &= (buf->v_stride >= (width + 1) / 2); in CheckDecBuffer()
121 buf->v_stride = uv_stride; in AllocateBuffer()
Didec.c652 uint8_t* v, size_t v_size, int v_stride, in WebPINewYUVA() argument
660 luma_stride = u_stride = v_stride = a_stride = 0; in WebPINewYUVA()
666 if (luma_stride == 0 || u_stride == 0 || v_stride == 0) return NULL; in WebPINewYUVA()
685 idec->output_.u.YUVA.v_stride = v_stride; in WebPINewYUVA()
695 uint8_t* v, size_t v_size, int v_stride) { in WebPINewYUV() argument
698 v, v_size, v_stride, in WebPINewYUV()
Dwebp.c536 uint8_t* v, size_t v_size, int v_stride) { in WebPDecodeYUVInto() argument
551 output.u.YUVA.v_stride = v_stride; in WebPDecodeYUVInto()
629 assert(buf->u_stride == buf->v_stride); in WebPDecodeYUV()
Dio.c33 uint8_t* const v_dst = buf->v + (io->mb_y >> 1) * buf->v_stride; in EmitYUV()
44 memcpy(v_dst + j * buf->v_stride, io->v + j * io->uv_stride, uv_w); in EmitYUV()
342 buf->v, uv_out_width, uv_out_height, buf->v_stride, 1, in InitYUVRescaler()
Dvp8l.c472 uint8_t* const v = buf->v + (y_pos >> 1) * buf->v_stride; in ConvertToYUVA()
/external/libyuv/files/include/libyuv/
Dconvert_from.h155 const uint8* v, int v_stride,
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtcvideoframe.cc374 int v_stride = GetVPitch(); in Reset() local
376 sample, sample_size, y, y_stride, u, u_stride, v, v_stride, horiz_crop, in Reset()
/external/webp/examples/
Ddwebp.c273 ok &= (fwrite(yuv->v + y * yuv->v_stride, uv_width, 1, fout) == 1); in WritePGMOrYUV()
280 ok &= (fwrite(yuv->v + y * yuv->v_stride, uv_width, 1, fout) == 1); in WritePGMOrYUV()
/external/chromium_org/content/common/gpu/client/
Dgl_helper_unittests.cc952 int32 v_stride = truth_frame->stride(media::VideoFrame::kVPlane); in TestYUVReadback() local
955 memset(V, 0x80, v_stride * output_ysize / 2); in TestYUVReadback()
975 V[(y + ymargin / 2) * v_stride + x + xmargin / 2] = in TestYUVReadback()
1001 v_stride, in TestYUVReadback()