ffv1enc: fix assert in put_vlc_symbol() and update to av_assert2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-10-06 03:29:37 +02:00
parent 856834a77f
commit ed015f67a2
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ static inline void put_vlc_symbol(PutBitContext *pb, VlcState * const state, int
i += i;
}
assert(k<=8);
av_assert2(k<=13);
#if 0 // JPEG LS
if(k==0 && 2*state->drift <= - state->count) code= v ^ (-1);