Commit 1bcf4e66 authored by Yaowu Xu's avatar Yaowu Xu Committed by Code Review
Browse files

Merge "fix a bug related to gf_active_flags in multi-threaded encoder"

parents 814532a3 89c6017c
Branches
Tags
No related merge requests found
Showing with 2 additions and 0 deletions
...@@ -830,6 +830,7 @@ void vp8_encode_frame(VP8_COMP *cpi) ...@@ -830,6 +830,7 @@ void vp8_encode_frame(VP8_COMP *cpi)
xd->mode_info_context += xd->mode_info_stride * cpi->encoding_thread_count; xd->mode_info_context += xd->mode_info_stride * cpi->encoding_thread_count;
x->partition_info += xd->mode_info_stride * cpi->encoding_thread_count; x->partition_info += xd->mode_info_stride * cpi->encoding_thread_count;
x->gf_active_ptr += cm->mb_cols * cpi->encoding_thread_count;
} }
......
...@@ -264,6 +264,7 @@ THREAD_FUNCTION thread_encoding_proc(void *p_data) ...@@ -264,6 +264,7 @@ THREAD_FUNCTION thread_encoding_proc(void *p_data)
xd->mode_info_context += xd->mode_info_stride * cpi->encoding_thread_count; xd->mode_info_context += xd->mode_info_stride * cpi->encoding_thread_count;
x->partition_info += xd->mode_info_stride * cpi->encoding_thread_count; x->partition_info += xd->mode_info_stride * cpi->encoding_thread_count;
x->gf_active_ptr += cm->mb_cols * cpi->encoding_thread_count;
if (mb_row == cm->mb_rows - 1) if (mb_row == cm->mb_rows - 1)
{ {
......
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