Lines Matching refs:br
941 NALBitReader br(sei->data() + 1, sei->size() - 1); in extractFromSEI() local
943 while (br.atLeastNumBitsLeft(16)) { // at least 16-bit for sei_message() in extractFromSEI()
949 last_byte = br.getBits(8); in extractFromSEI()
954 last_byte = br.getBits(8); in extractFromSEI()
963 uint8_t itu_t_t35_country_code = br.getBits(8); in extractFromSEI()
964 uint16_t itu_t_t35_provider_code = br.getBits(16); in extractFromSEI()
965 uint32_t user_identifier = br.getBits(32); in extractFromSEI()
966 uint8_t user_data_type_code = br.getBits(8); in extractFromSEI()
976 br.skipBits(1); //process_em_data_flag in extractFromSEI()
977 bool process_cc_data_flag = br.getBits(1); in extractFromSEI()
978 br.skipBits(1); //additional_data_flag in extractFromSEI()
979 size_t cc_count = br.getBits(5); in extractFromSEI()
980 br.skipBits(8); // em_data; in extractFromSEI()
990 uint8_t marker = br.getBits(5); in extractFromSEI()
993 bool cc_valid = br.getBits(1); in extractFromSEI()
994 uint8_t cc_type = br.getBits(2); in extractFromSEI()
996 uint8_t cc_data_1 = br.getBits(8) & 0x7f; in extractFromSEI()
997 uint8_t cc_data_2 = br.getBits(8) & 0x7f; in extractFromSEI()
1028 br.skipBits(payload_size * 8); in extractFromSEI()