diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-12-05 23:12:03 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-12-05 23:12:03 +0000 |
commit | a8380f44cfa69c204856568f5d24851fbdb1d884 (patch) | |
tree | 8d926b7bbbceb88758aaf2843052e862c6783ced /libavcodec/dv.c | |
parent | 2be9f03abb2be775f4882fb87fb735bd7b5a3930 (diff) | |
download | ffmpeg-a8380f44cfa69c204856568f5d24851fbdb1d884.tar.gz |
removing unused var & converting 64->32bit
Originally committed as revision 2567 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 2754dca7d1..48216603a0 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, |