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

  /external/webp/src/enc/
picture.c 556 (ptr)[rgb_stride] + (ptr)[rgb_stride + step])
558 #define SUM2V(ptr) (2 * (ptr)[0] + 2 * (ptr)[rgb_stride])
561 const int src = (2 * (step * (x) + (y) * rgb_stride)); \
571 const int src = (step * (x_in) + (y) * rgb_stride); \
595 int rgb_stride, // bytes per scanline
601 const int has_alpha = CheckNonOpaque(a_ptr, width, height, step, rgb_stride);
613 const int offset = step * x + y * rgb_stride;
666 a_ptr[step * x + y * rgb_stride];
674 const uint8_t* const rgb, int rgb_stride,
    [all...]
  /external/skia/legacy/src/images/
SkImageDecoder_libwebp.cpp 542 const int rgb_stride = pic.width * 3; local
546 uint8_t* rgb = new uint8_t[rgb_stride * pic.height];
548 scanline_import(src + y * bm.rowBytes(), rgb + y * rgb_stride,
552 bool ok = WebPPictureImportRGB(&pic, rgb, rgb_stride);
  /external/skia/src/images/
SkImageDecoder_libwebp.cpp 536 const int rgb_stride = pic.width * 3; local
540 uint8_t* rgb = new uint8_t[rgb_stride * pic.height];
542 scanline_import(src + y * bm.rowBytes(), rgb + y * rgb_stride,
546 bool ok = WebPPictureImportRGB(&pic, rgb, rgb_stride);
  /external/webp/include/webp/
encode.h 413 // *rgb buffer should have a size of at least height * rgb_stride.
416 WebPPicture* picture, const uint8_t* rgb, int rgb_stride);

Completed in 78 milliseconds