Commit 6e94dfcc authored by mru's avatar mru

inline align_get_bits()


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6169 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e625510a
...@@ -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