HomeSort by relevance Sort by last modified time
    Searched defs:y_dst (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/libwebp/enc/
filter.c 88 uint8_t* const y_dst = it->yuv_out2_ + Y_OFF; local
93 memcpy(y_dst, it->yuv_out_, YUV_SIZE * sizeof(uint8_t));
96 VP8SimpleHFilter16i(y_dst, BPS, limit);
97 VP8SimpleVFilter16i(y_dst, BPS, limit);
100 VP8HFilter16i(y_dst, BPS, limit, ilevel, hev_thresh);
102 VP8VFilter16i(y_dst, BPS, limit, ilevel, hev_thresh);
  /external/chromium_org/third_party/libwebp/dec/
frame.c 38 uint8_t* const y_dst = dec->cache_y_ + cache_id * 16 * y_bps + mb_x * 16; local
47 VP8SimpleHFilter16(y_dst, y_bps, limit + 4);
50 VP8SimpleHFilter16i(y_dst, y_bps, limit);
53 VP8SimpleVFilter16(y_dst, y_bps, limit + 4);
56 VP8SimpleVFilter16i(y_dst, y_bps, limit);
64 VP8HFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh);
68 VP8HFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh);
72 VP8VFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh);
76 VP8VFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh);
714 uint8_t* const y_dst = dec->yuv_b_ + Y_OFF local
    [all...]
io.c 28 uint8_t* const y_dst = buf->y + io->mb_y * buf->y_stride; local
37 memcpy(y_dst + j * buf->y_stride, io->y + j * io->y_stride, mb_w);

Completed in 29 milliseconds