| Index: source/libvpx/vp9/common/vp9_onyxc_int.h
|
| diff --git a/source/libvpx/vp9/common/vp9_onyxc_int.h b/source/libvpx/vp9/common/vp9_onyxc_int.h
|
| index 188b03d41e5c4de27ab9851f092f27b884088380..3af2a41bd28231899e65e93245f9c3b6aec8349a 100644
|
| --- a/source/libvpx/vp9/common/vp9_onyxc_int.h
|
| +++ b/source/libvpx/vp9/common/vp9_onyxc_int.h
|
| @@ -264,6 +264,7 @@ typedef struct VP9Common {
|
|
|
| int log2_tile_cols, log2_tile_rows;
|
| int byte_alignment;
|
| + int skip_loop_filter;
|
|
|
| // Private data associated with the frame buffer callbacks.
|
| void *cb_priv;
|
| @@ -341,6 +342,14 @@ static INLINE void init_macroblockd(VP9_COMMON *cm, MACROBLOCKD *xd) {
|
| xd->plane[i].dqcoeff = xd->dqcoeff;
|
| xd->above_context[i] = cm->above_context +
|
| i * sizeof(*cm->above_context) * 2 * mi_cols_aligned_to_sb(cm->mi_cols);
|
| +
|
| + if (xd->plane[i].plane_type == PLANE_TYPE_Y) {
|
| + memcpy(xd->plane[i].seg_dequant, cm->y_dequant, sizeof(cm->y_dequant));
|
| + } else {
|
| + memcpy(xd->plane[i].seg_dequant, cm->uv_dequant, sizeof(cm->uv_dequant));
|
| + }
|
| + xd->fc = cm->fc;
|
| + xd->frame_parallel_decoding_mode = cm->frame_parallel_decoding_mode;
|
| }
|
|
|
| xd->above_seg_context = cm->above_seg_context;
|
|
|