diff vorbis.c @ 3075:961af1358c7f libavcodec

add static keyword to some functions patch by Dieter <freebsd at sopwith solgatos com>
author mru
date Mon, 30 Jan 2006 23:33:19 +0000
parents 0b546eab515d
children 0995d7ddeb58
line wrap: on
line diff
--- a/vorbis.c	Mon Jan 30 22:59:09 2006 +0000
+++ b/vorbis.c	Mon Jan 30 23:33:19 2006 +0000
@@ -46,7 +46,7 @@
 /**
  *  reads 0-32 bits when using the ALT_BITSTREAM_READER_LE bitstream reader
  */
-unsigned int get_bits_long_le(GetBitContext *s, int n){
+static unsigned int get_bits_long_le(GetBitContext *s, int n){
     if(n<=17) return get_bits(s, n);
     else{
         int ret= get_bits(s, 16);