Searched refs:ymode (Results 1 – 2 of 2) sorted by relevance
/external/webp/src/dec/ |
D | tree.c | 303 const int ymode = in ParseIntraMode() local 306 block->imodes_[0] = ymode; in ParseIntraMode() 307 memset(top, ymode, 4 * sizeof(*top)); in ParseIntraMode() 308 memset(left, ymode, 4 * sizeof(*left)); in ParseIntraMode() 313 int ymode = left[y]; in ParseIntraMode() local 316 const uint8_t* const prob = kBModesProba[top[x]][ymode]; in ParseIntraMode() 323 ymode = -i; in ParseIntraMode() 326 ymode = !VP8GetBit(br, prob[0]) ? B_DC_PRED : in ParseIntraMode() 336 top[x] = ymode; in ParseIntraMode() 340 left[y] = ymode; in ParseIntraMode()
|
/external/chromium_org/third_party/libwebp/dec/ |
D | tree.c | 303 const int ymode = in ParseIntraMode() local 306 block->imodes_[0] = ymode; in ParseIntraMode() 307 memset(top, ymode, 4 * sizeof(*top)); in ParseIntraMode() 308 memset(left, ymode, 4 * sizeof(*left)); in ParseIntraMode() 313 int ymode = left[y]; in ParseIntraMode() local 316 const uint8_t* const prob = kBModesProba[top[x]][ymode]; in ParseIntraMode() 323 ymode = -i; in ParseIntraMode() 326 ymode = !VP8GetBit(br, prob[0]) ? B_DC_PRED : in ParseIntraMode() 336 top[x] = ymode; in ParseIntraMode() 340 left[y] = ymode; in ParseIntraMode()
|