mirror of https://git.ffmpeg.org/ffmpeg.git
put_bits: use av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
28e4f906fa
commit
62eace231c
|
@ -171,7 +171,7 @@ static inline void put_bits(PutBitContext *s, int n, unsigned int value)
|
||||||
|
|
||||||
static inline void put_sbits(PutBitContext *pb, int n, int32_t value)
|
static inline void put_sbits(PutBitContext *pb, int n, int32_t value)
|
||||||
{
|
{
|
||||||
assert(n >= 0 && n <= 31);
|
av_assert2(n >= 0 && n <= 31);
|
||||||
|
|
||||||
put_bits(pb, n, value & ((1<<n)-1));
|
put_bits(pb, n, value & ((1<<n)-1));
|
||||||
}
|
}
|
||||||
|
@ -207,8 +207,8 @@ static inline uint8_t* put_bits_ptr(PutBitContext *s)
|
||||||
*/
|
*/
|
||||||
static inline void skip_put_bytes(PutBitContext *s, int n)
|
static inline void skip_put_bytes(PutBitContext *s, int n)
|
||||||
{
|
{
|
||||||
assert((put_bits_count(s)&7)==0);
|
av_assert2((put_bits_count(s)&7)==0);
|
||||||
assert(s->bit_left==32);
|
av_assert2(s->bit_left==32);
|
||||||
s->buf_ptr += n;
|
s->buf_ptr += n;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue