[FFmpeg-devel] [PATCH] mips/float_dsp: fix a bug in vector_fmul_window_mips

2015-03-05 Thread Nedeljko Babic
Loop was unrolled eight times although in heder there is assumption that len is multiple of 4. This is fixed, and assembly code is rewritten to be more optimal and to simplify clobber list. Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- libavutil/mips/float_dsp_mips.c | 180

Re: [FFmpeg-devel] [PATCH] mips/float_dsp: fix a bug in vector_fmul_window_mips

2015-03-05 Thread Michael Niedermayer
On Thu, Mar 05, 2015 at 12:23:59PM +0100, Nedeljko Babic wrote: Loop was unrolled eight times although in heder there is assumption that len is multiple of 4. This is fixed, and assembly code is rewritten to be more optimal and to simplify clobber list. Signed-off-by: Nedeljko Babic