Browse Source

* using const buffers for reading

Originally committed as revision 1603 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Zdenek Kabelac 22 years ago
parent
commit
ae39132d07
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      libavcodec/common.c
  2. +2
    -2
      libavcodec/common.h

+ 1
- 1
libavcodec/common.c View File

@@ -110,7 +110,7 @@ void put_string(PutBitContext * pbc, char *s)
/* bit input functions */

void init_get_bits(GetBitContext *s,
uint8_t *buffer, int bit_size)
const uint8_t *buffer, int bit_size)
{
const int buffer_size= (bit_size+7)>>3;



+ 2
- 2
libavcodec/common.h View File

@@ -236,7 +236,7 @@ void put_string(PutBitContext * pbc, char *s);
/* bit input */

typedef struct GetBitContext {
uint8_t *buffer, *buffer_end;
const uint8_t *buffer, *buffer_end;
#ifdef ALT_BITSTREAM_READER
int index;
#elif defined LIBMPEG2_BITSTREAM_READER
@@ -669,7 +669,7 @@ static inline void skip_bits1(GetBitContext *s){
}

void init_get_bits(GetBitContext *s,
uint8_t *buffer, int buffer_size);
const uint8_t *buffer, int buffer_size);

int check_marker(GetBitContext *s, const char *msg);
void align_get_bits(GetBitContext *s);


Loading…
Cancel
Save