Commit a5ca3203 authored by Michael Niedermayer's avatar Michael Niedermayer

rangecoder: use av_assert

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1248de53
......@@ -33,6 +33,7 @@
#include <string.h>
#include "libavutil/avassert.h"
#include "avcodec.h"
#include "rangecoder.h"
#include "bytestream.h"
......@@ -103,8 +104,8 @@ int ff_rac_terminate(RangeCoder *c){
c->range=0xFF;
renorm_encoder(c);
assert(c->low == 0);
assert(c->range >= 0x100);
av_assert1(c->low == 0);
av_assert1(c->range >= 0x100);
return c->bytestream - c->bytestream_start;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment