Searched refs:VP8GetBit (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/libwebp/dec/
H A Dtree.c292 block->segment_ = !VP8GetBit(br, dec->proba_.segments_[0])
293 ? VP8GetBit(br, dec->proba_.segments_[1])
294 : 2 + VP8GetBit(br, dec->proba_.segments_[2]);
298 if (dec->use_skip_proba_) block->skip_ = VP8GetBit(br, dec->skip_p_);
300 block->is_i4x4_ = !VP8GetBit(br, 145); // decide for B_PRED first
304 VP8GetBit(br, 156) ? (VP8GetBit(br, 128) ? TM_PRED : H_PRED)
305 : (VP8GetBit(br, 163) ? V_PRED : DC_PRED);
319 int i = kYModesIntra4[VP8GetBit(br, prob[0])];
321 i = kYModesIntra4[2 * i + VP8GetBit(b
[all...]
H A Dvp8.c392 if (!VP8GetBit(br, p[3])) {
393 if (!VP8GetBit(br, p[4])) {
396 v = 3 + VP8GetBit(br, p[5]);
399 if (!VP8GetBit(br, p[6])) {
400 if (!VP8GetBit(br, p[7])) {
401 v = 5 + VP8GetBit(br, 159);
403 v = 7 + 2 * VP8GetBit(br, 165);
404 v += VP8GetBit(br, 145);
408 const int bit1 = VP8GetBit(br, p[8]);
409 const int bit0 = VP8GetBit(b
[all...]
/external/webp/src/dec/
H A Dtree.c292 block->segment_ = !VP8GetBit(br, dec->proba_.segments_[0])
293 ? VP8GetBit(br, dec->proba_.segments_[1])
294 : 2 + VP8GetBit(br, dec->proba_.segments_[2]);
298 if (dec->use_skip_proba_) block->skip_ = VP8GetBit(br, dec->skip_p_);
300 block->is_i4x4_ = !VP8GetBit(br, 145); // decide for B_PRED first
304 VP8GetBit(br, 156) ? (VP8GetBit(br, 128) ? TM_PRED : H_PRED)
305 : (VP8GetBit(br, 163) ? V_PRED : DC_PRED);
319 int i = kYModesIntra4[VP8GetBit(br, prob[0])];
321 i = kYModesIntra4[2 * i + VP8GetBit(b
[all...]
H A Dvp8.c392 if (!VP8GetBit(br, p[3])) {
393 if (!VP8GetBit(br, p[4])) {
396 v = 3 + VP8GetBit(br, p[5]);
399 if (!VP8GetBit(br, p[6])) {
400 if (!VP8GetBit(br, p[7])) {
401 v = 5 + VP8GetBit(br, 159);
403 v = 7 + 2 * VP8GetBit(br, 165);
404 v += VP8GetBit(br, 145);
408 const int bit1 = VP8GetBit(br, p[8]);
409 const int bit0 = VP8GetBit(b
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Ddetokenize.c52 #define VP8GetBit vp8dx_decode_bool macro
93 if (!VP8GetBit(br, p[0]))
100 if (!VP8GetBit(br, p[1]))
107 if (!VP8GetBit(br, p[2]))
114 if (!VP8GetBit(br, p[3]))
116 if (!VP8GetBit(br, p[4]))
122 v = 3 + VP8GetBit(br, p[5]);
127 if (!VP8GetBit(br, p[6]))
129 if (!VP8GetBit(br, p[7]))
131 v = 5 + VP8GetBit(b
[all...]
/external/libvpx/libvpx/vp8/decoder/
H A Ddetokenize.c52 #define VP8GetBit vp8dx_decode_bool macro
93 if (!VP8GetBit(br, p[0]))
100 if (!VP8GetBit(br, p[1]))
107 if (!VP8GetBit(br, p[2]))
114 if (!VP8GetBit(br, p[3]))
116 if (!VP8GetBit(br, p[4]))
122 v = 3 + VP8GetBit(br, p[5]);
127 if (!VP8GetBit(br, p[6]))
129 if (!VP8GetBit(br, p[7]))
131 v = 5 + VP8GetBit(b
[all...]
/external/chromium_org/third_party/libwebp/utils/
H A Dbit_reader_inl.h10 // Specific inlined methods for boolean decoder [VP8GetBit() ...]
109 static WEBP_INLINE int VP8GetBit(VP8BitReader* const br, int prob) { function
150 // simplified version of VP8GetBit() for prob=0x80 (note shift is always 1 here)
H A Dbit_reader.c95 v |= VP8GetBit(br, 0x80) << bits;
/external/webp/src/utils/
H A Dbit_reader_inl.h10 // Specific inlined methods for boolean decoder [VP8GetBit() ...]
108 static WEBP_INLINE int VP8GetBit(VP8BitReader* const br, int prob) { function
149 // simplified version of VP8GetBit() for prob=0x80 (note shift is always 1 here)
H A Dbit_reader.c95 v |= VP8GetBit(br, 0x80) << bits;

Completed in 1846 milliseconds