diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-06-29 10:58:52 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-06-29 10:59:04 +0200 |
commit | c1343897c3c879d8842f06220dd1019fd4f8baf7 (patch) | |
tree | 4be8c6bf0d42920de995d721eeb01886cbc17b5c /libavcodec/dv.c | |
parent | 53fd1ab26bec7d045d168590bf49de722e2a601c (diff) | |
parent | afe03092dd693d025d43e1620283d8d285c92772 (diff) | |
download | ffmpeg-c1343897c3c879d8842f06220dd1019fd4f8baf7.tar.gz |
Merge commit 'afe03092dd693d025d43e1620283d8d285c92772'
* commit 'afe03092dd693d025d43e1620283d8d285c92772':
lavc: move put_bits_left in put_bits.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 39a87a93c2..2a06c541d6 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -351,11 +351,6 @@ static av_cold int dvvideo_init_encoder(AVCodecContext *avctx) 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); -} - #if CONFIG_SMALL /* Converts run and level (where level != 0) pair into VLC, returning bit size */ static av_always_inline int dv_rl2vlc(int run, int level, int sign, uint32_t* vlc) |