mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
mpc7: align local temp buffer
DSPContext.bswap_buf() requires aligned output
This commit is contained in:
parent
e5c9de2ab7
commit
eac31dd163
@ -53,7 +53,7 @@ static av_cold int mpc7_decode_init(AVCodecContext * avctx)
|
|||||||
int i, j;
|
int i, j;
|
||||||
MPCContext *c = avctx->priv_data;
|
MPCContext *c = avctx->priv_data;
|
||||||
GetBitContext gb;
|
GetBitContext gb;
|
||||||
uint8_t buf[16];
|
LOCAL_ALIGNED_16(uint8_t, buf, [16]);
|
||||||
static int vlc_initialized = 0;
|
static int vlc_initialized = 0;
|
||||||
|
|
||||||
static VLC_TYPE scfi_table[1 << MPC7_SCFI_BITS][2];
|
static VLC_TYPE scfi_table[1 << MPC7_SCFI_BITS][2];
|
||||||
|
Loading…
Reference in New Issue
Block a user