Lines Matching defs:val
42 uint8_t *val; ///< This array first holds the lengths of vlc symbols and then their value.
63 int val = show_bits(gb, 8);
66 if (val) {
67 val = LUT[val];
68 skip_bits(gb, val + 1);
69 ctx->val[i] = val;
74 ctx->val[i] = 8;
76 allbits += ctx->val[i];
90 uint8_t *val = ctx->val + offset;
97 if (val[j]) {
98 int v = (1 << val[j]) + get_bits(gb, val[j]) - 1;
99 val[j] = (v >> 1) ^ -(v & 1);
105 ctx->llviddsp.add_median_pred(dst, dst - stride, val,
108 dst[0] = val[0];
110 dst[j] = val[j] + dst[j - 1];
113 val += width;
175 av_freep(&ctx->val);
194 ctx->val = av_malloc_array(ctx->size, sizeof(*ctx->val));
196 if (!ctx->val) {