From a8380f44cfa69c204856568f5d24851fbdb1d884 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 5 Dec 2003 23:12:03 +0000 Subject: removing unused var & converting 64->32bit Originally committed as revision 2567 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/dv.c') diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 2754dca..4821660 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -645,7 +645,7 @@ typedef struct EncBlockInfo { static always_inline int dv_bits_left(PutBitContext* s) { return (s->buf_end - s->buf) * 8 - - ((s->buf_ptr - s->buf + s->data_out_size) * 8 + 32 - (int64_t)s->bit_left); + ((s->buf_ptr - s->buf) * 8 + 32 - (int64_t)s->bit_left); } static always_inline void dv_encode_ac(EncBlockInfo* bi, PutBitContext* pb_pool, -- cgit v1.1