You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
truespeech: align buffer
DSPContext.bswap_buf() requires aligned output Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
committed by
Ronald S. Bultje
parent
034b03e7a0
commit
d4eeadcbbf
@@ -37,7 +37,7 @@ typedef struct {
|
|||||||
AVFrame frame;
|
AVFrame frame;
|
||||||
DSPContext dsp;
|
DSPContext dsp;
|
||||||
/* input data */
|
/* input data */
|
||||||
uint8_t buffer[32];
|
DECLARE_ALIGNED(16, uint8_t, buffer)[32];
|
||||||
int16_t vector[8]; ///< input vector: 5/5/4/4/4/3/3/3
|
int16_t vector[8]; ///< input vector: 5/5/4/4/4/3/3/3
|
||||||
int offset1[2]; ///< 8-bit value, used in one copying offset
|
int offset1[2]; ///< 8-bit value, used in one copying offset
|
||||||
int offset2[4]; ///< 7-bit value, encodes offsets for copying and for two-point filter
|
int offset2[4]; ///< 7-bit value, encodes offsets for copying and for two-point filter
|
||||||
|
|||||||
Reference in New Issue
Block a user