diff options
author | Måns Rullgård <mans@mansr.com> | 2006-09-04 17:25:38 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-09-04 17:25:38 +0000 |
commit | ae5e7e7f101a508e13380e6011faeb9f59fa2420 (patch) | |
tree | f1d98ff1a070cfab004441fd4c543043c82b5100 | |
parent | 29b372b9e99c640d439aeeff6d3232e4d23cae5b (diff) | |
download | ffmpeg-ae5e7e7f101a508e13380e6011faeb9f59fa2420.tar.gz |
inline align_get_bits()
Originally committed as revision 6169 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/bitstream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h index 8c49bbb4cc..2da6544b8d 100644 --- a/libavcodec/bitstream.h +++ b/libavcodec/bitstream.h @@ -765,7 +765,7 @@ static inline void init_get_bits(GetBitContext *s, #endif } -static void align_get_bits(GetBitContext *s) +static inline void align_get_bits(GetBitContext *s) { int n= (-get_bits_count(s)) & 7; if(n) skip_bits(s, n); |