Commit ad0d5d75 authored by Peter Ross's avatar Peter Ross

avcodec/dstdec: use appropriate alignment

this was a typo in my original dst decoder. there is no requirement for
64-byte alignment here. the change does not affect decoder performance.
Signed-off-by: 's avatarPeter Ross <pross@xvid.org>
parent 5764c952
......@@ -70,7 +70,7 @@ typedef struct DSTContext {
GetBitContext gb;
ArithCoder ac;
Table fsets, probs;
DECLARE_ALIGNED(64, uint8_t, status)[DST_MAX_CHANNELS][16];
DECLARE_ALIGNED(16, uint8_t, status)[DST_MAX_CHANNELS][16];
DECLARE_ALIGNED(16, int16_t, filter)[DST_MAX_ELEMENTS][16][256];
DSDContext dsdctx[DST_MAX_CHANNELS];
} DSTContext;
......
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