Browse code

inline align_get_bits()

Originally committed as revision 6169 to svn://svn.ffmpeg.org/ffmpeg/trunk

Måns Rullgård authored on 2006/09/05 02:25:38
Showing 1 changed files
... ...
@@ -765,7 +765,7 @@ static inline void init_get_bits(GetBitContext *s,
765 765
 #endif
766 766
 }
767 767
 
768
-static void align_get_bits(GetBitContext *s)
768
+static inline void align_get_bits(GetBitContext *s)
769 769
 {
770 770
     int n= (-get_bits_count(s)) & 7;
771 771
     if(n) skip_bits(s, n);