OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VP8GetBit
(Results
1 - 6
of
6
) sorted by null
/external/webp/src/dec/
tree_dec.c
299
block->segment_ = !
VP8GetBit
(br, dec->proba_.segments_[0])
300
?
VP8GetBit
(br, dec->proba_.segments_[1])
301
: 2 +
VP8GetBit
(br, dec->proba_.segments_[2]);
305
if (dec->use_skip_proba_) block->skip_ =
VP8GetBit
(br, dec->skip_p_);
307
block->is_i4x4_ = !
VP8GetBit
(br, 145); // decide for B_PRED first
311
VP8GetBit
(br, 156) ? (
VP8GetBit
(br, 128) ? TM_PRED : H_PRED)
312
: (
VP8GetBit
(br, 163) ? V_PRED : DC_PRED);
326
int i = kYModesIntra4[
VP8GetBit
(br, prob[0])];
328
i = kYModesIntra4[2 * i +
VP8GetBit
(br, prob[i])]
[
all
...]
vp8_dec.c
406
if (!
VP8GetBit
(br, p[3])) {
407
if (!
VP8GetBit
(br, p[4])) {
410
v = 3 +
VP8GetBit
(br, p[5]);
413
if (!
VP8GetBit
(br, p[6])) {
414
if (!
VP8GetBit
(br, p[7])) {
415
v = 5 +
VP8GetBit
(br, 159);
417
v = 7 + 2 *
VP8GetBit
(br, 165);
418
v +=
VP8GetBit
(br, 145);
422
const int bit1 =
VP8GetBit
(br, p[8]);
423
const int bit0 =
VP8GetBit
(br, p[9 + bit1])
[
all
...]
/external/libvpx/libvpx/vp8/decoder/
detokenize.c
48
#define
VP8GetBit
vp8dx_decode_bool
83
if (!
VP8GetBit
(br, p[0])) { /* first EOB is more a 'CBP' bit. */
88
if (!
VP8GetBit
(br, p[1])) {
92
if (!
VP8GetBit
(br, p[2])) {
96
if (!
VP8GetBit
(br, p[3])) {
97
if (!
VP8GetBit
(br, p[4])) {
100
v = 3 +
VP8GetBit
(br, p[5]);
103
if (!
VP8GetBit
(br, p[6])) {
104
if (!
VP8GetBit
(br, p[7])) {
105
v = 5 +
VP8GetBit
(br, 159)
[
all
...]
/external/webrtc/webrtc/modules/video_coding/utility/
vp8_header_parser.cc
73
static int
VP8GetBit
(VP8BitReader* const br, int prob) {
103
v |=
VP8GetBit
(br, 0x80) << bits;
/external/webp/src/utils/
bit_reader_inl_utils.h
10
// Specific inlined methods for boolean decoder [
VP8GetBit
() ...]
107
static WEBP_INLINE int
VP8GetBit
(VP8BitReader* const br, int prob) {
136
// simplified version of
VP8GetBit
() for prob=0x80 (note shift is always 1 here)
bit_reader_utils.c
108
v |=
VP8GetBit
(br, 0x80) << bits;
Completed in 74 milliseconds