Lines Matching defs:SMKTREE_BITS
38 #define SMKTREE_BITS 9
41 #define SMKTREE_DECODE_MAX_RECURSION FFMIN(32, 3 * SMKTREE_BITS)
45 * Decoding the MMAP tree can overread by 6 * SMKTREE_BITS + 1, followed by
48 #if (6 * SMKTREE_BITS + 1 + 3 + (2 + 3 * 16) + 64) <= 8 * AV_INPUT_BUFFER_PADDING_SIZE
114 if (length > SMKTREE_DECODE_MAX_RECURSION || length > 3 * SMKTREE_BITS) {
141 * Checks before the first read, can overread by 6 * SMKTREE_BITS on success.
159 i1 = ctx->v1->table ? get_vlc2(gb, ctx->v1->table, SMKTREE_BITS, 3)
161 i2 = ctx->v2->table ? get_vlc2(gb, ctx->v2->table, SMKTREE_BITS, 3)
197 * before the first check; can overread by 6 * SMKTREE_BITS + 1 on success.
225 err = ff_init_vlc_from_lengths(&vlc[i], SMKTREE_BITS, h.current,
658 ret = ff_init_vlc_from_lengths(&vlc[i], SMKTREE_BITS, h.current,
686 res = get_vlc2(&gb, vlc[idx].table, SMKTREE_BITS, 3);
691 res = get_vlc2(&gb, vlc[idx].table, SMKTREE_BITS, 3);
726 val = get_vlc2(&gb, vlc[idx].table, SMKTREE_BITS, 3);