From: Allura u. <al...@so...> - 2023-11-11 04:50:00
|
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 e6229e496119a7665714109a0f2139f9a04661da (commit) from 2cd01d8781ef263a6c33b37ae27a5961352c5108 (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 e6229e496119a7665714109a0f2139f9a04661da Author: Andress Barajas <and...@gm...> Date: Mon Oct 30 23:03:15 2023 -0700 Align pcm buffer to 32 bytes ----------------------------------------------------------------------- Summary of changes: libmp3/sndmp3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmp3/sndmp3.c b/libmp3/sndmp3.c index fc26310..94b527c 100644 --- a/libmp3/sndmp3.c +++ b/libmp3/sndmp3.c @@ -174,7 +174,7 @@ static int xing_init(const char *fn) { bs_buffer = malloc(BS_SIZE); bs_ptr = bs_buffer; bs_count = 0; if (pcm_buffer == NULL) - pcm_buffer = malloc(PCM_SIZE); + pcm_buffer = memalign(32, PCM_SIZE); pcm_ptr = pcm_buffer; pcm_count = pcm_discard = 0; /* Fill bitstream buffer */ hooks/post-receive -- UNNAMED PROJECT |