Browse Source

Add size_in_bits to PutBitContext

Originally committed as revision 17006 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 16 years ago
parent
commit
71a48ff23c
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/bitstream.h

+ 2
- 0
libavcodec/bitstream.h View File

@@ -85,6 +85,7 @@ typedef struct PutBitContext {
int bit_left;
uint8_t *buf, *buf_ptr, *buf_end;
#endif
int size_in_bits;
} PutBitContext;

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
buffer = NULL;
}

s->size_in_bits= 8*buffer_size;
s->buf = buffer;
s->buf_end = s->buf + buffer_size;
#ifdef ALT_BITSTREAM_WRITER


Loading…
Cancel
Save