Home
last modified time | relevance | path

Searched refs:ymode (Results 1 – 1 of 1) sorted by relevance

/external/webp/src/dec/
Dtree_dec.c310 const int ymode = in ParseIntraMode() local
314 block->imodes_[0] = ymode; in ParseIntraMode()
315 memset(top, ymode, 4 * sizeof(*top)); in ParseIntraMode()
316 memset(left, ymode, 4 * sizeof(*left)); in ParseIntraMode()
321 int ymode = left[y]; in ParseIntraMode() local
324 const uint8_t* const prob = kBModesProba[top[x]][ymode]; in ParseIntraMode()
331 ymode = -i; in ParseIntraMode()
334 ymode = !VP8GetBit(br, prob[0], "pred-modes") ? B_DC_PRED : in ParseIntraMode()
347 top[x] = ymode; in ParseIntraMode()
351 left[y] = ymode; in ParseIntraMode()