Module: libav
Branch: master
Commit: d4eeadcbbfff880b6d6fb78ed06fe0c58470ce27

Author:    Paul B Mahol <[email protected]>
Committer: Ronald S. Bultje <[email protected]>
Date:      Wed Feb  1 05:30:18 2012 +0000

truespeech: align buffer

DSPContext.bswap_buf() requires aligned output

Signed-off-by: Ronald S. Bultje <[email protected]>

---

 libavcodec/truespeech.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/truespeech.c b/libavcodec/truespeech.c
index 5ef0a01..66ca461 100644
--- a/libavcodec/truespeech.c
+++ b/libavcodec/truespeech.c
@@ -37,7 +37,7 @@ typedef struct {
     AVFrame frame;
     DSPContext dsp;
     /* 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
     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

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to