Lines Matching defs:cc_count
2210 int cc_count = p[5] & 0x1f;
2211 if (cc_count > 0 && buf_size >= 7 + cc_count * 3) {
2213 const uint64_t new_size = (old_size + cc_count
2222 memcpy(s1->a53_buf_ref->data + old_size, p + 7, cc_count * UINT64_C(3));
2231 int cc_count = 0;
2235 cc_count = get_bits(&gb, 5);
2236 if (cc_count > 0) {
2238 const uint64_t new_size = (old_size + cc_count
2248 memset(s1->a53_buf_ref->data + old_size, 0, cc_count * 3);
2249 for (i = 0; i < cc_count && get_bits_left(&gb) >= 26; i++) {
2299 int cc_count = 0;
2304 cc_count++;
2306 if (cc_count > 0) {
2308 const uint64_t new_size = (old_size + cc_count
2318 for (i = 0; i < cc_count; i++) {