Lines Matching refs:ReadBit

46   profile_ = ReadBit();  in ParseUncompressedHeader()
47 profile_ |= ReadBit() << 1; in ParseUncompressedHeader()
49 profile_ += ReadBit(); in ParseUncompressedHeader()
52 show_existing_frame_ = ReadBit(); in ParseUncompressedHeader()
56 key_ = !ReadBit(); in ParseUncompressedHeader()
57 altref_ = !ReadBit(); in ParseUncompressedHeader()
58 error_resilient_mode_ = ReadBit(); in ParseUncompressedHeader()
70 intra_only_ = altref_ ? ReadBit() : 0; in ParseUncompressedHeader()
97 ReadBit(); // Consume ref sign bias. in ParseUncompressedHeader()
102 if (ReadBit()) { in ParseUncompressedHeader()
117 int Vp9HeaderParser::ReadBit() { in ReadBit() function in vp9_parser::Vp9HeaderParser
133 value |= ReadBit() << bit; in VpxReadLiteral()
147 bit_depth_ = ReadBit() ? 12 : 10; in ParseColorSpace()
152 color_range_ = ReadBit(); in ParseColorSpace()
154 subsampling_x_ = ReadBit(); in ParseColorSpace()
155 subsampling_y_ = ReadBit(); in ParseColorSpace()
156 ReadBit(); in ParseColorSpace()
164 ReadBit(); in ParseColorSpace()
175 if (ReadBit()) { in ParseFrameParallelMode()
180 ReadBit(); // Consume refresh frame context in ParseFrameParallelMode()
181 frame_parallel_mode_ = ReadBit(); in ParseFrameParallelMode()
194 const bool mode_ref_delta_enabled = ReadBit(); in ParseTileInfo()
196 const bool mode_ref_delta_update = ReadBit(); in ParseTileInfo()
200 if (ReadBit()) in ParseTileInfo()
206 if (ReadBit()) in ParseTileInfo()
219 const bool segmentation_enabled = ReadBit(); in ParseTileInfo()
244 while (max_ones-- && ReadBit()) in ParseTileInfo()
248 int log2_tile_rows = ReadBit(); in ParseTileInfo()
250 log2_tile_rows += ReadBit(); in ParseTileInfo()
258 if (ReadBit()) in SkipDeltaQ()