Lines Matching defs:bits
106 const uint32_t bits = data[0] | (data[1] << 8) | (data[2] << 16);
107 const int key_frame = !(bits & 1);
115 if (((bits >> 1) & 7) > 3) {
118 if (!((bits >> 4) & 1)) {
121 if (((bits >> 5)) >= chunk_size) { // partition_length
271 const uint32_t bits = buf[0] | (buf[1] << 8) | (buf[2] << 16);
273 frm_hdr->key_frame_ = !(bits & 1);
274 frm_hdr->profile_ = (bits >> 1) & 7;
275 frm_hdr->show_ = (bits >> 4) & 1;
276 frm_hdr->partition_length_ = (bits >> 5);