Re: [FFmpeg-devel] [PATCH] vp4: prevent unaligned memory access in loop filter

2019-10-30 Thread Michael Niedermayer
On Fri, Jun 21, 2019 at 07:52:31AM +1000, Peter Ross wrote: > VP4 applies a loop filter during motion compensation, causing the block offset > will often by unaligned. This produces a bus error on some platforms, namely > ARMv7 NEON. > > This patch adds a unaligned version of the loop filter

[FFmpeg-devel] [PATCH] vp4: prevent unaligned memory access in loop filter

2019-06-20 Thread Peter Ross
VP4 applies a loop filter during motion compensation, causing the block offset will often by unaligned. This produces a bus error on some platforms, namely ARMv7 NEON. This patch adds a unaligned version of the loop filter function pointer to VP3DSPContext. Reported-by: Mike Melanson ---