Re: [FFmpeg-devel] [PATCH] speedhq: Align blocks variable properly.

2017-01-13 Thread James Almer
On 1/13/2017 3:04 PM, Steinar H. Gunderson wrote: > Seemingly ff_clear_block_sse assumed that the block array is aligned, > so make sure it is. And so does IDCTDSPContext.idct_put() > --- > libavcodec/speedhq.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/

[FFmpeg-devel] [PATCH] speedhq: Align blocks variable properly.

2017-01-13 Thread Steinar H. Gunderson
Seemingly ff_clear_block_sse assumed that the block array is aligned, so make sure it is. --- libavcodec/speedhq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/speedhq.c b/libavcodec/speedhq.c index 9c21c0b1be..30160dd3f2 100644 --- a/libavcodec/speedhq.c +++ b/li