HomeSort by relevance Sort by last modified time
    Searched refs:src_width (Results 1 - 9 of 9) sorted by null

  /external/libyuv/files/source/
general.cc 74 int src_width, int src_height,
80 if (src_width == dst_width && src_height == dst_height) {
84 if (dst_width > src_width || dst_height > src_height) {
93 int halfsrc_width = src_width / 2;
96 int crop_width = ( src_width - dst_width ) / 2;
98 for (i = src_width * crop_height + crop_width; loop < dst_height ;
99 loop++, i += src_width) {
103 i = src_width * src_height; // ilum
111 i = src_width * src_height + half_dst_height * halfsrc_width; // ilum + Cr
122 I420CropPad(const uint8* src_frame, int src_width,
    [all...]
scale.cc 852 uint16* dst_ptr, int src_width,
    [all...]
  /external/libyuv/files/include/libyuv/
general.h 35 I420CropPad(const uint8* src_frame, int src_width,
42 int src_width, int src_height,
scale.h 38 int src_width, int src_height,
49 int Scale(const uint8* src, int src_width, int src_height,
56 int src_width, int src_height,
  /external/libyuv/files/unit_test/
scale_test.cc 31 int src_width = 1280; local
33 int src_width_uv = (src_width + 1) >> 1;
36 int src_y_plane_size = (src_width + (2 * b)) * (src_height + (2 * b));
39 int src_stride_y = 2 * b + src_width;
46 int dst_width = src_width >> 2;
83 for (j = b; j < (src_width + b); j += 4) {
116 src_width, src_height,
  /external/webp/src/dec/
webpi.h 36 int src_width, src_height; // source dimensions member in struct:__anon15226
io.c 424 int src_width, int src_height,
429 wrk->x_expand = (src_width < dst_width);
430 wrk->src_width = src_width;
    [all...]
  /external/webp/src/enc/
picture.c 227 static inline void ImportRow(const uint8_t* src, int src_width,
229 const int x_expand = (src_width < dst_width);
237 x_accum += src_width - dst_width;
257 x_accum -= src_width - 1;
278 int src_width, int src_height, int src_stride,
282 const int x_expand = (src_width < dst_width);
286 ((int64_t)dst_height << RFIX) / (src_width * src_height);
295 ImportRow(src, src_width, frow, irow, dst_width);
  /external/opencv/cv/src/
cvlkpyramid.cpp 229 int src_width = src_size.width, dst_width = src_size.width-2; local
231 float* buffer1 = buffer0 + src_width;
241 for( x = 0; x < src_width; x++ )
    [all...]

Completed in 106 milliseconds