shithub: libvpx

Download patch

ref: abd74ed594200ea751f2dbf9e192888f9eaecdde
parent: 030e268a90315635cd4e0d9b9bd2ccf661c4d1ca
author: Jim Bankoski <jimbankoski@google.com>
date: Thu Nov 29 02:47:50 EST 2012

warning error missing void

Change-Id: I914bcc669297d3414261486bf1bfb716c2ecc804

--- a/vp9/encoder/vp9_bitstream.c
+++ b/vp9/encoder/vp9_bitstream.c
@@ -262,8 +262,8 @@
 //
 // The branch counts table is re-populated during the actual pack stage and in
 // the decoder to facilitate backwards update of the context.
-static update_mode_probs(VP9_COMMON *cm,
-                         int mode_context[INTER_MODE_CONTEXTS][4]) {
+static void update_mode_probs(VP9_COMMON *cm,
+                              int mode_context[INTER_MODE_CONTEXTS][4]) {
   int i, j;
   int (*mv_ref_ct)[4][2];
 
--