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: Peter Ross <pross@xvid.org>
This commit is contained in:
Peter Ross 2018-12-24 20:09:18 +11:00
parent 5764c9528b
commit ad0d5d7516
1 changed files with 1 additions and 1 deletions

View File

@ -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;