Home
last modified time | relevance | path

Searched refs:vp8_copy (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dratectrl.c232 vp8_copy(cc->mvc, cpi->common.fc.mvc); in vp8_save_coding_context()
233 vp8_copy(cc->mvcosts, cpi->rd_costs.mvcosts); in vp8_save_coding_context()
235 vp8_copy(cc->ymode_prob, cpi->common.fc.ymode_prob); in vp8_save_coding_context()
236 vp8_copy(cc->uv_mode_prob, cpi->common.fc.uv_mode_prob); in vp8_save_coding_context()
238 vp8_copy(cc->ymode_count, cpi->mb.ymode_count); in vp8_save_coding_context()
239 vp8_copy(cc->uv_mode_count, cpi->mb.uv_mode_count); in vp8_save_coding_context()
244 vp8_copy(cc->y_modes, y_modes); in vp8_save_coding_context()
245 vp8_copy(cc->uv_modes, uv_modes); in vp8_save_coding_context()
246 vp8_copy(cc->b_modes, b_modes); in vp8_save_coding_context()
247 vp8_copy(cc->inter_y_modes, inter_y_modes); in vp8_save_coding_context()
[all …]
Dbitstream.c1066 vp8_copy(cpi->mb.coef_counts, default_coef_counts); in vp8_update_coef_context()
/external/libvpx/libvpx/vp8/common/
Dcommon.h27 #define vp8_copy( Dest, Src) { \ macro