Commit 2f2629c8 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '6d69f9f3'

* commit '6d69f9f3':
  vp9: write uveob as 16-bit value for 16x16/32x32 transforms.
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents c7b08904 6d69f9f3
......@@ -2258,7 +2258,11 @@ static void decode_coeffs(AVCodecContext *ctx)
16 * step * step, c, e, p, a[x] + l[y], \
uvscan, uvnb, uv_band_counts, qmul[1]); \
a[x] = l[y] = !!res; \
s->uveob[pl][n] = res; \
if (step >= 4) { \
AV_WN16A(&s->uveob[pl][n], res); \
} else { \
s->uveob[pl][n] = res; \
} \
} \
}
......
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