rangecoder.h: use av_assert

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/59/head
Michael Niedermayer 13 years ago
parent ee51565e8e
commit f0a3259f9a
  1. 8
      libavcodec/rangecoder.h

@ -28,8 +28,8 @@
#define AVCODEC_RANGECODER_H #define AVCODEC_RANGECODER_H
#include <stdint.h> #include <stdint.h>
#include <assert.h>
#include "libavutil/common.h" #include "libavutil/common.h"
#include "libavutil/avassert.h"
typedef struct RangeCoder{ typedef struct RangeCoder{
int low; int low;
@ -82,9 +82,9 @@ static inline int get_rac_count(RangeCoder *c){
static inline void put_rac(RangeCoder *c, uint8_t * const state, int bit){ static inline void put_rac(RangeCoder *c, uint8_t * const state, int bit){
int range1= (c->range * (*state)) >> 8; int range1= (c->range * (*state)) >> 8;
assert(*state); av_assert2(*state);
assert(range1 < c->range); av_assert2(range1 < c->range);
assert(range1 > 0); av_assert2(range1 > 0);
if(!bit){ if(!bit){
c->range -= range1; c->range -= range1;
*state= c->zero_state[*state]; *state= c->zero_state[*state];

Loading…
Cancel
Save