| Index: source/libvpx/vp9/common/vp9_thread_common.c
|
| diff --git a/source/libvpx/vp9/common/vp9_thread_common.c b/source/libvpx/vp9/common/vp9_thread_common.c
|
| index 27a3212ca6da4e8af057b027d7ff2600045c450e..7a3871c4123c3dee7913c556d4003e05d724966b 100644
|
| --- a/source/libvpx/vp9/common/vp9_thread_common.c
|
| +++ b/source/libvpx/vp9/common/vp9_thread_common.c
|
| @@ -382,6 +382,9 @@ void vp9_accumulate_frame_counts(VP9_COMMON *cm, FRAME_COUNTS *counts,
|
| cm->counts.tx.p8x8[i][j] += counts->tx.p8x8[i][j];
|
| }
|
|
|
| + for (i = 0; i < TX_SIZES; i++)
|
| + cm->counts.tx.tx_totals[i] += counts->tx.tx_totals[i];
|
| +
|
| for (i = 0; i < SKIP_CONTEXTS; i++)
|
| for (j = 0; j < 2; j++)
|
| cm->counts.skip[i][j] += counts->skip[i][j];
|
|
|