Browse Source

fix some pointer to intger without cast warnings (patch by Michel Bardiaux)

Originally committed as revision 4610 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michel Bardiaux Aurelien Jacobs 20 years ago
parent
commit
288f1e6815
1 changed files with 8 additions and 4 deletions
  1. +8
    -4
      libavcodec/bitstream.h

+ 8
- 4
libavcodec/bitstream.h View File

@@ -53,8 +53,10 @@ typedef struct PutBitContext {

static inline void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
{
if(buffer_size < 0)
buffer= buffer_size= 0;
if(buffer_size < 0) {
buffer_size = 0;
buffer = NULL;
}

s->buf = buffer;
s->buf_end = s->buf + buffer_size;
@@ -676,8 +678,10 @@ static inline void init_get_bits(GetBitContext *s,
const uint8_t *buffer, int bit_size)
{
int buffer_size= (bit_size+7)>>3;
if(buffer_size < 0 || bit_size < 0)
buffer= buffer_size= bit_size= 0;
if(buffer_size < 0 || bit_size < 0) {
buffer_size = bit_size = 0;
buffer = NULL;
}

s->buffer= buffer;
s->size_in_bits= bit_size;


Loading…
Cancel
Save