Commit 71a48ff2 authored by Michael Niedermayer's avatar Michael Niedermayer

Add size_in_bits to PutBitContext

Originally committed as revision 17006 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b516ecdd
...@@ -85,6 +85,7 @@ typedef struct PutBitContext { ...@@ -85,6 +85,7 @@ typedef struct PutBitContext {
int bit_left; int bit_left;
uint8_t *buf, *buf_ptr, *buf_end; uint8_t *buf, *buf_ptr, *buf_end;
#endif #endif
int size_in_bits;
} PutBitContext; } PutBitContext;
static inline void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size) static inline void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
...@@ -94,6 +95,7 @@ static inline void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_s ...@@ -94,6 +95,7 @@ static inline void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_s
buffer = NULL; buffer = NULL;
} }
s->size_in_bits= 8*buffer_size;
s->buf = buffer; s->buf = buffer;
s->buf_end = s->buf + buffer_size; s->buf_end = s->buf + buffer_size;
#ifdef ALT_BITSTREAM_WRITER #ifdef ALT_BITSTREAM_WRITER
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment