HomeSort by relevance Sort by last modified time
    Searched full:count_to_fill_ (Results 1 - 2 of 2) sorted by null

  /external/v4l2_codec2/vda/
vp9_bool_decoder.cc 55 count_to_fill_ = 8;
65 // Fill at least |count_to_fill_| bits and prefill remain bits of |bool_value_|
68 DCHECK_GE(count_to_fill_, 0);
71 if (bits_left < count_to_fill_) {
77 DCHECK_LE(count_to_fill_, kBoolSize);
78 int max_bits_to_read = kBigBoolBitSize - kBoolSize + count_to_fill_;
84 count_to_fill_ -= bits_to_read;
93 if (count_to_fill_ > 0) {
119 count_to_fill_ += count;
139 if (count_to_fill_ > reader_->bits_available())
    [all...]
vp9_bool_decoder.h 62 // Need to fill at least |count_to_fill_| bits. Negative value means extra
64 int count_to_fill_ = 0; member in class:media::Vp9BoolDecoder

Completed in 223 milliseconds