| Index: source/libvpx/vp9/common/vp9_onyxc_int.h
|
| ===================================================================
|
| --- source/libvpx/vp9/common/vp9_onyxc_int.h (revision 254565)
|
| +++ source/libvpx/vp9/common/vp9_onyxc_int.h (working copy)
|
| @@ -224,6 +224,11 @@
|
| int error_resilient_mode;
|
| int frame_parallel_decoding_mode;
|
|
|
| + // Flag indicates if prev_mi can be used in coding:
|
| + // 0: encoder assumes decoder does not have prev_mi
|
| + // 1: encoder assumes decoder has and uses prev_mi
|
| + unsigned int coding_use_prev_mi;
|
| +
|
| int log2_tile_cols, log2_tile_rows;
|
|
|
| // Private data associated with the frame buffer callbacks.
|
| @@ -302,7 +307,6 @@
|
| static void set_prev_mi(VP9_COMMON *cm) {
|
| const int use_prev_in_find_mv_refs = cm->width == cm->last_width &&
|
| cm->height == cm->last_height &&
|
| - !cm->error_resilient_mode &&
|
| !cm->intra_only &&
|
| cm->last_show_frame;
|
| // Special case: set prev_mi to NULL when the previous mode info
|
|
|