Browse Source

rangecoder: Use AV_RB16 instead of bytestream_get_be16

Silence an incompatible-pointer-types-discards-qualifiers warning from clang.
rangecoder.c:58:34: warning: passing
      'uint8_t **' (aka 'unsigned char **') to parameter of type
      'const uint8_t **' (aka 'const unsigned char **') discards qualifiers in
      nested pointer types [-Wincompatible-pointer-types-discards-qualifiers]
tags/n3.0
Vittorio Giovara 10 years ago
parent
commit
abe9adfb31
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      libavcodec/rangecoder.c

+ 4
- 2
libavcodec/rangecoder.c View File

@@ -34,9 +34,10 @@
#include <string.h>

#include "libavutil/attributes.h"
#include "libavutil/intreadwrite.h"

#include "avcodec.h"
#include "rangecoder.h"
#include "bytestream.h"

av_cold void ff_init_range_encoder(RangeCoder *c, uint8_t *buf, int buf_size)
{
@@ -55,7 +56,8 @@ av_cold void ff_init_range_decoder(RangeCoder *c, const uint8_t *buf,
/* cast to avoid compiler warning */
ff_init_range_encoder(c, (uint8_t *)buf, buf_size);

c->low = bytestream_get_be16(&c->bytestream);
c->low = AV_RB16(c->bytestream);
c->bytestream += 2;
}

void ff_build_rac_states(RangeCoder *c, int factor, int max_p)


Loading…
Cancel
Save