Commit ae5e7e7f authored by Måns Rullgård's avatar Måns Rullgård

inline align_get_bits()

Originally committed as revision 6169 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 29b372b9
...@@ -765,7 +765,7 @@ static inline void init_get_bits(GetBitContext *s, ...@@ -765,7 +765,7 @@ static inline void init_get_bits(GetBitContext *s,
#endif #endif
} }
static void align_get_bits(GetBitContext *s) static inline void align_get_bits(GetBitContext *s)
{ {
int n= (-get_bits_count(s)) & 7; int n= (-get_bits_count(s)) & 7;
if(n) skip_bits(s, n); if(n) skip_bits(s, n);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment