Mercurial > libavcodec.hg
diff common.h @ 1886:fbcf02596520 libavcodec
* DV decoder simplifications. Now it looks to be 6% faster. At least
on my desktop.
* Misc. DV cleanups and fixes.
| author | romansh |
|---|---|
| date | Sun, 14 Mar 2004 22:09:58 +0000 |
| parents | 45a1592dadca |
| children | e5687117cc7f |
line wrap: on
line diff
--- a/common.h Sun Mar 14 17:55:50 2004 +0000 +++ b/common.h Sun Mar 14 22:09:58 2004 +0000 @@ -919,6 +919,11 @@ return s->size_in_bits - get_bits_count(s); } +static inline int get_bits_size(GetBitContext *s) +{ + return s->size_in_bits; +} + int check_marker(GetBitContext *s, const char *msg); void align_get_bits(GetBitContext *s); int init_vlc(VLC *vlc, int nb_bits, int nb_codes,
