From: Allura u. <al...@so...> - 2023-11-11 04:50:52
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "UNNAMED PROJECT". The branch, master has been updated via cc2753766191bb3f9969d0b0b659362b001594a1 (commit) from 1eb6b317c1ca9ca35958e09e18c2f048acd831b9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit cc2753766191bb3f9969d0b0b659362b001594a1 Author: Andress Barajas <and...@gm...> Date: Mon Oct 30 23:04:08 2023 -0700 Align pcm buffer to 32 bytes ----------------------------------------------------------------------- Summary of changes: liboggvorbisplay/sndoggvorbis.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/liboggvorbisplay/sndoggvorbis.c b/liboggvorbisplay/sndoggvorbis.c index c6a3ae1..522ece5 100644 --- a/liboggvorbisplay/sndoggvorbis.c +++ b/liboggvorbisplay/sndoggvorbis.c @@ -20,7 +20,8 @@ #define BUF_SIZE 65536 /* Size of buffer */ -static uint8 pcm_buffer[BUF_SIZE+16384]; /* complete buffer + 16KB safety */ +/* complete buffer + 16KB safety */ +static uint8 pcm_buffer[BUF_SIZE + 16384] __attribute__((aligned(32))); static uint8 *pcm_ptr=pcm_buffer; /* place we write to */ static int32 pcm_count=0; /* bytes in buffer */ hooks/post-receive -- UNNAMED PROJECT |