]> granicus.if.org Git - libvpx/commitdiff
VP9: rename vpx_read_mode_info to vp9_read_mode_info
authorScott LaVarnway <slavarnway@google.com>
Fri, 19 Feb 2016 13:34:12 +0000 (05:34 -0800)
committerScott LaVarnway <slavarnway@google.com>
Fri, 19 Feb 2016 13:34:12 +0000 (05:34 -0800)
Change-Id: I3cb3da864e33012ba68d61ee8bafa8c42f00313c

vp9/decoder/vp9_decodeframe.c
vp9/decoder/vp9_decodemv.c
vp9/decoder/vp9_decodemv.h

index 9ce137d04242e08cfb2dd19507497ceacb69e326..7fc573333f79f712e6a3da0b90ad54351a2eb4fc 100644 (file)
@@ -859,7 +859,7 @@ static void decode_block(VP9Decoder *const pbi, MACROBLOCKD *const xd,
                          VPX_CODEC_CORRUPT_FRAME, "Invalid block size.");
   }
 
-  vpx_read_mode_info(pbi, xd, mi_row, mi_col, r, x_mis, y_mis);
+  vp9_read_mode_info(pbi, xd, mi_row, mi_col, r, x_mis, y_mis);
 
   if (mi->skip) {
     dec_reset_skip_context(xd);
index 86044207c21eec9fb83d89e23293a9fd9ceafc0e..577bcb864d1b8e15e2fe07357dcdcb320b1e5868 100644 (file)
@@ -860,7 +860,7 @@ static INLINE void copy_ref_frame_pair(MV_REFERENCE_FRAME *dst,
   memcpy(dst, src, sizeof(*dst) * 2);
 }
 
-void vpx_read_mode_info(VP9Decoder *const pbi, MACROBLOCKD *xd,
+void vp9_read_mode_info(VP9Decoder *const pbi, MACROBLOCKD *xd,
                         int mi_row, int mi_col, vpx_reader *r,
                         int x_mis, int y_mis) {
   VP9_COMMON *const cm = &pbi->common;
index 75f568cf1f794410f1f6958fae905fef99d54f61..45569ec81f5350a2e3b09413f70ee74e523f8902 100644 (file)
@@ -19,7 +19,7 @@
 extern "C" {
 #endif
 
-void vpx_read_mode_info(VP9Decoder *const pbi, MACROBLOCKD *xd,
+void vp9_read_mode_info(VP9Decoder *const pbi, MACROBLOCKD *xd,
                         int mi_row, int mi_col, vpx_reader *r,
                         int x_mis, int y_mis);