mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 00:32:31 +00:00
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:
parent
5764c9528b
commit
ad0d5d7516
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user