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

  /external/opencv3/3rdparty/libwebp/dec/
decode_vp8.h 52 // in mb_w / mb_h fields.
57 int mb_h; // number of rows in the sample member in struct:VP8Io
67 // or abort request. The actual size of the area to update is mb_w x mb_h
io.c 35 const int mb_h = io->mb_h; local
37 const int uv_h = (mb_h + 1) / 2;
39 for (j = 0; j < mb_h; ++j) {
46 return io->mb_h;
59 const int last = io->mb_h - 1;
72 return io->mb_h;
88 const int last = io->mb_h;
97 return io->mb_h;
106 int num_lines_out = io->mb_h; // a priori gues
169 const int mb_h = io->mb_h; local
294 const int mb_h = io->mb_h; local
385 const int mb_h = io->mb_h; local
598 const int mb_h = io->mb_h; local
    [all...]
  /external/webp/src/dec/
decode_vp8.h 52 // in mb_w / mb_h fields.
57 int mb_h; // number of rows in the sample member in struct:VP8Io
67 // or abort request. The actual size of the area to update is mb_w x mb_h
io.c 32 const int mb_h = io->mb_h; local
34 const int uv_h = (mb_h + 1) / 2;
36 for (j = 0; j < mb_h; ++j) {
43 return io->mb_h;
53 dst, buf->stride, io->mb_w, io->mb_h,
55 return io->mb_h;
63 int num_lines_out = io->mb_h; // a priori guess
73 const int y_end = io->mb_y + io->mb_h;
127 const int mb_h = io->mb_h local
252 const int mb_h = io->mb_h; local
358 const int mb_h = io->mb_h; local
581 const int mb_h = io->mb_h; local
    [all...]
  /external/opencv3/3rdparty/libwebp/enc/
webpenc.c 173 const int mb_h = (picture->height + 15) >> 4; local
175 const int preds_h = 4 * mb_h + 1;
180 const size_t info_size = mb_w * mb_h * sizeof(VP8MBInfo);
221 mb_w * mb_h * 384 * sizeof(uint8_t));
234 enc->mb_h_ = mb_h;
vp8l.c 1157 const int mb_h = (height + 15) >> 4; local
    [all...]
  /external/webp/src/enc/
webpenc.c 146 const int mb_h = (picture->height + 15) >> 4; local
148 const int preds_h = 4 * mb_h + 1;
152 const size_t info_size = mb_w * mb_h * sizeof(*enc->mb_info_);
189 mb_w * mb_h * 384 * sizeof(uint8_t));
202 enc->mb_h_ = mb_h;
238 VP8TBufferInit(&enc->tokens_, (int)(mb_w * mb_h * 4 * scale));
vp8l.c 1583 const int mb_h = (height + 15) >> 4; local
    [all...]

Completed in 485 milliseconds