diff options
author | Reinhard Tartler <siretart@tauware.de> | 2013-07-06 09:46:07 +0200 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2013-07-06 10:06:11 +0200 |
commit | b20004b2e6165a6d5ef6bc6ae98d3d33c6460808 (patch) | |
tree | ed41caa3b360e3ace31833b52c176ddcabbb3598 /libavcodec/dv.c | |
parent | 0c943d1cdd18d0aea4ebc15f18a1152f7a77e5c9 (diff) | |
download | ffmpeg-b20004b2e6165a6d5ef6bc6ae98d3d33c6460808.tar.gz |
lavc: move put_bits_left in put_bits.h
(cherry picked from commit afe03092dd693d025d43e1620283d8d285c92772)
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
Conflicts:
libavcodec/dv.c
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 03a05b3748..6f74e7b5bd 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -372,11 +372,6 @@ typedef struct BlockInfo { static const int vs_total_ac_bits = (100 * 4 + 68*2) * 5; static const int mb_area_start[5] = { 1, 6, 21, 43, 64 }; -static inline int put_bits_left(PutBitContext* s) -{ - return (s->buf_end - s->buf) * 8 - put_bits_count(s); -} - /* decode AC coefficients */ static void dv_decode_ac(GetBitContext *gb, BlockInfo *mb, DCTELEM *block) { |