| Index: source/libvpx/vp9/common/vp9_debugmodes.c
|
| ===================================================================
|
| --- source/libvpx/vp9/common/vp9_debugmodes.c (revision 292608)
|
| +++ source/libvpx/vp9/common/vp9_debugmodes.c (working copy)
|
| @@ -27,7 +27,7 @@
|
| int mi_row, mi_col;
|
| int mi_index = 0;
|
| // TODO(hkuang): Fix this debug function.
|
| - MODE_INFO **mi = NULL;
|
| + MODE_INFO **mi = &cm->mi;
|
| int rows = cm->mi_rows;
|
| int cols = cm->mi_cols;
|
| char prefix = descriptor[0];
|
| @@ -53,7 +53,7 @@
|
| int mi_index = 0;
|
| FILE *mvs = fopen(file, "a");
|
| // TODO(hkuang): Fix this debug function.
|
| - MODE_INFO **mi = NULL;
|
| + MODE_INFO **mi = &cm->mi;
|
| int rows = cm->mi_rows;
|
| int cols = cm->mi_cols;
|
|
|
|
|