shithub: libvpx

Download patch

ref: 0312c3d6d90161d8b66d70386ea0db5aeae9e3d2
parent: 4422847143f77117d222aee2b94f869c5b39870f
author: Ronald S. Bultje <rbultje@google.com>
date: Fri Nov 23 03:17:06 EST 2012

Make get_eob() function static.

Change-Id: Idde3ab97960eda7022367c1f91a873a479bc9d7b

--- a/vp9/decoder/detokenize.c
+++ b/vp9/decoder/detokenize.c
@@ -246,8 +246,7 @@
   return c;
 }
 
-
-int get_eob(MACROBLOCKD* const xd, int segment_id, int eob_max) {
+static int get_eob(MACROBLOCKD* const xd, int segment_id, int eob_max) {
   int active = vp9_segfeature_active(xd, segment_id, SEG_LVL_EOB);
   int eob = vp9_get_segdata(xd, segment_id, SEG_LVL_EOB);