Commit 0560b28f authored by Michael Niedermayer's avatar Michael Niedermayer

ffv1dec: remove incorrect assert()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 3616afce
...@@ -78,8 +78,6 @@ static inline int get_vlc_symbol(GetBitContext *gb, VlcState *const state, ...@@ -78,8 +78,6 @@ static inline int get_vlc_symbol(GetBitContext *gb, VlcState *const state,
i += i; i += i;
} }
assert(k <= 8);
v = get_sr_golomb(gb, k, 12, bits); v = get_sr_golomb(gb, k, 12, bits);
av_dlog(NULL, "v:%d bias:%d error:%d drift:%d count:%d k:%d", av_dlog(NULL, "v:%d bias:%d error:%d drift:%d count:%d k:%d",
v, state->bias, state->error_sum, state->drift, state->count, k); v, state->bias, state->error_sum, state->drift, state->count, k);
......
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