Commit d482fbff authored by Yaowu Xu's avatar Yaowu Xu
Browse files

removed redundant initialization

Change-Id: I34569375e520759860504c3dfb17a2c27ceb9aed
Showing with 0 additions and 9 deletions
...@@ -289,15 +289,6 @@ void vp8_setup_key_frame(VP8_COMP *cpi) { ...@@ -289,15 +289,6 @@ void vp8_setup_key_frame(VP8_COMP *cpi) {
vpx_memcpy(&cpi->common.lfc, &cpi->common.fc, sizeof(cpi->common.fc)); vpx_memcpy(&cpi->common.lfc, &cpi->common.fc, sizeof(cpi->common.fc));
vpx_memcpy(&cpi->common.lfc_a, &cpi->common.fc, sizeof(cpi->common.fc)); vpx_memcpy(&cpi->common.lfc_a, &cpi->common.fc, sizeof(cpi->common.fc));
/*
vpx_memcpy( cpi->common.fc.vp8_mode_contexts,
cpi->common.fc.mode_context,
sizeof(cpi->common.fc.mode_context));
*/
vpx_memcpy(cpi->common.fc.vp8_mode_contexts,
default_vp8_mode_contexts,
sizeof(default_vp8_mode_contexts));
} }
void vp8_setup_inter_frame(VP8_COMP *cpi) { void vp8_setup_inter_frame(VP8_COMP *cpi) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment