Re: [libav-devel] [PATCH 1/4] ac3dsp: reverse matrix in/out order in downmix()

2012-12-09 Thread Måns Rullgård
Justin Ruggles writes: > Also use (float **) instead of (float (*)[2]). This matches the matrix > layout in libavresample so we can reuse some assembly code between the > two. > --- > libavcodec/ac3dec.c | 40 +++- > libavcodec/ac3dec.h |

[libav-devel] [PATCH 1/4] ac3dsp: reverse matrix in/out order in downmix()

2012-11-17 Thread Justin Ruggles
Also use (float **) instead of (float (*)[2]). This matches the matrix layout in libavresample so we can reuse some assembly code between the two. --- libavcodec/ac3dec.c | 40 +++- libavcodec/ac3dec.h |2 +- libavcodec/ac3dsp.c