• Home
  • Raw
  • Download

Lines Matching refs:header_bc

1276   vpx_writer header_bc;  in write_compressed_header()  local
1278 vpx_start_encode(&header_bc, data); in write_compressed_header()
1283 encode_txfm_probs(cm, &header_bc, counts); in write_compressed_header()
1285 update_coef_probs(cpi, &header_bc); in write_compressed_header()
1286 update_skip_probs(cm, &header_bc, counts); in write_compressed_header()
1293 counts->inter_mode[i], INTER_MODES, &header_bc); in write_compressed_header()
1296 update_switchable_interp_probs(cm, &header_bc, counts); in write_compressed_header()
1299 vp9_cond_prob_diff_update(&header_bc, &fc->intra_inter_prob[i], in write_compressed_header()
1306 vpx_write_bit(&header_bc, use_compound_pred); in write_compressed_header()
1308 vpx_write_bit(&header_bc, use_hybrid_pred); in write_compressed_header()
1311 vp9_cond_prob_diff_update(&header_bc, &fc->comp_inter_prob[i], in write_compressed_header()
1318 vp9_cond_prob_diff_update(&header_bc, &fc->single_ref_prob[i][0], in write_compressed_header()
1320 vp9_cond_prob_diff_update(&header_bc, &fc->single_ref_prob[i][1], in write_compressed_header()
1327 vp9_cond_prob_diff_update(&header_bc, &fc->comp_ref_prob[i], in write_compressed_header()
1332 counts->y_mode[i], INTRA_MODES, &header_bc); in write_compressed_header()
1336 counts->partition[i], PARTITION_TYPES, &header_bc); in write_compressed_header()
1338 vp9_write_nmv_probs(cm, cm->allow_high_precision_mv, &header_bc, in write_compressed_header()
1342 vpx_stop_encode(&header_bc); in write_compressed_header()
1343 assert(header_bc.pos <= 0xffff); in write_compressed_header()
1345 return header_bc.pos; in write_compressed_header()