13 Feb
2006
13 Feb
'06
10 a.m.
On Mon, Feb 13, 2006 at 10:16:59AM +0100, Reimar Doeffinger wrote:
Hi, On Mon, Feb 13, 2006 at 12:26:12AM +0100, Diego Biurrun wrote:
- sh_audio->a_in_buffer=malloc(sh_audio->a_in_buffer_size); + sh_audio->a_in_buffer=memalign(16,sh_audio->a_in_buffer_size); [...] - free(sh_audio->afilter); + mp_msg(MSGT_DECAUDIO,MSGL_V,"Uninit audio filters... done\n"); + //free(sh_audio->afilter);
I am really certain this is wrong. Also I can't see how the memalign thing is related (though that part probably is correct).
Just checked, it works without that, so it is at least unrelated. Can I commit without that hunk? Diego