Re: [FFmpeg-devel] [PATCH 01/14] arm: vp9itxfm: Template the quarter/half idct32 function

2017-03-18 Thread Michael Niedermayer
On Fri, Mar 17, 2017 at 12:10:06AM +0200, Martin Storsjö wrote: > This reduces the number of lines and reduces the duplication. > > Also simplify the eob check for the half case. > > If we are in the half case, we know we at least will need to do the > first three slices, we only need to check eo

[FFmpeg-devel] [PATCH 01/14] arm: vp9itxfm: Template the quarter/half idct32 function

2017-03-16 Thread Martin Storsjö
This reduces the number of lines and reduces the duplication. Also simplify the eob check for the half case. If we are in the half case, we know we at least will need to do the first three slices, we only need to check eob for the fourth one, so we can hardcode the value to check against instead