shithub: libvpx

Download patch

ref: 83baed0b6b8c311fec3c08d2926ca39001e09802
parent: 3df4d9f62da6d3999111c7dd743e00c45fc5eb16
parent: 5894e7ef50f037a78038c93266e602486ccc501b
author: Johann <johannkoenig@google.com>
date: Mon Dec 16 14:17:43 EST 2013

Merge "Add const to match declaration"

--- a/vp9/decoder/vp9_decodemv.c
+++ b/vp9/decoder/vp9_decodemv.c
@@ -528,7 +528,8 @@
     read_intra_block_mode_info(cm, mi, r);
 }
 
-void vp9_read_mode_info(VP9_COMMON *cm, MACROBLOCKD *xd, const TileInfo *tile,
+void vp9_read_mode_info(VP9_COMMON *cm, MACROBLOCKD *xd,
+                        const TileInfo *const tile,
                         int mi_row, int mi_col, vp9_reader *r) {
   if (frame_is_intra_only(cm))
     read_intra_frame_mode_info(cm, xd, mi_row, mi_col, r);