[Ffmpeg-devel] [PATCH] part 15 - portability fixes (ILP32 vs LP64)

Dieter freebsd
Sun Jan 29 21:26:46 CET 2006


Diffs for file: libavcodec/vorbis.c

===================================================================
RCS file: RCS/vorbis.c,v
retrieving revision 1.1
diff -u -r1.1 vorbis.c
--- vorbis.c    2006/01/26 21:40:00     1.1
+++ vorbis.c    2006/01/26 21:40:12
@@ -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);





More information about the ffmpeg-devel mailing list