diff common.h @ 1660:806afb8e9085 libavcodec

removing unused var & converting 64->32bit
author michael
date Fri, 05 Dec 2003 23:12:03 +0000
parents 3a633a3feef6
children cb0abe523bc6
line wrap: on
line diff
--- a/common.h	Fri Dec 05 01:03:12 2003 +0000
+++ b/common.h	Fri Dec 05 23:12:03 2003 +0000
@@ -274,12 +274,11 @@
     int bit_left;
     uint8_t *buf, *buf_ptr, *buf_end;
 #endif
-    int64_t data_out_size; /* in bytes */
 } PutBitContext;
 
 void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size);
 
-int64_t get_bit_count(PutBitContext *s); /* XXX: change function name */
+int get_bit_count(PutBitContext *s); /* XXX: change function name */
 void align_put_bits(PutBitContext *s);
 void flush_put_bits(PutBitContext *s);
 void put_string(PutBitContext * pbc, char *s);