diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-06 03:29:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-06 03:29:37 +0200 |
commit | ed015f67a2f9fe7448a56f9e573f5aca07237ae0 (patch) | |
tree | e87d8abb5e6abad7b24924323efea5c3bedd307d | |
parent | 856834a77f4145adc5951e8b08984981fed4463d (diff) | |
download | ffmpeg-ed015f67a2f9fe7448a56f9e573f5aca07237ae0.tar.gz |
ffv1enc: fix assert in put_vlc_symbol() and update to av_assert2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/ffv1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 5ce8e7aa20..26fa3a86b4 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -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); |