summaryrefslogtreecommitdiff
path: root/libavcodec/ffv1.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-06 03:29:37 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-06 03:29:37 +0200
commited015f67a2f9fe7448a56f9e573f5aca07237ae0 (patch)
treee87d8abb5e6abad7b24924323efea5c3bedd307d /libavcodec/ffv1.c
parent856834a77f4145adc5951e8b08984981fed4463d (diff)
ffv1enc: fix assert in put_vlc_symbol() and update to av_assert2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r--libavcodec/ffv1.c2
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);