Lines Matching refs:header_bc

1281   vpx_writer header_bc;  in write_compressed_header()  local
1283 vpx_start_encode(&header_bc, data); in write_compressed_header()
1288 encode_txfm_probs(cm, &header_bc, counts); in write_compressed_header()
1290 update_coef_probs(cpi, &header_bc); in write_compressed_header()
1291 update_skip_probs(cm, &header_bc, counts); in write_compressed_header()
1298 counts->inter_mode[i], INTER_MODES, &header_bc); in write_compressed_header()
1301 update_switchable_interp_probs(cm, &header_bc, counts); in write_compressed_header()
1304 vp9_cond_prob_diff_update(&header_bc, &fc->intra_inter_prob[i], in write_compressed_header()
1311 vpx_write_bit(&header_bc, use_compound_pred); in write_compressed_header()
1313 vpx_write_bit(&header_bc, use_hybrid_pred); in write_compressed_header()
1316 vp9_cond_prob_diff_update(&header_bc, &fc->comp_inter_prob[i], in write_compressed_header()
1323 vp9_cond_prob_diff_update(&header_bc, &fc->single_ref_prob[i][0], in write_compressed_header()
1325 vp9_cond_prob_diff_update(&header_bc, &fc->single_ref_prob[i][1], in write_compressed_header()
1332 vp9_cond_prob_diff_update(&header_bc, &fc->comp_ref_prob[i], in write_compressed_header()
1337 counts->y_mode[i], INTRA_MODES, &header_bc); in write_compressed_header()
1341 counts->partition[i], PARTITION_TYPES, &header_bc); in write_compressed_header()
1343 vp9_write_nmv_probs(cm, cm->allow_high_precision_mv, &header_bc, in write_compressed_header()
1347 vpx_stop_encode(&header_bc); in write_compressed_header()
1348 assert(header_bc.pos <= 0xffff); in write_compressed_header()
1350 return header_bc.pos; in write_compressed_header()