Re: [libav-devel] [PATCH 15/25] intrax8: Use a constant buffer instead of a ScratchpadContext

2016-03-22 Thread Diego Biurrun
On Sat, Mar 19, 2016 at 05:42:46PM -0400, Vittorio Giovara wrote: > The size of the block is fixed (8x8 plus padding). > > --- a/libavcodec/intrax8.h > +++ b/libavcodec/intrax8.h > @@ -51,6 +51,7 @@ typedef struct IntraX8Context { > uint8_t *dest[3]; > +uint8_t scratchpad[42]; // answer

[libav-devel] [PATCH 15/25] intrax8: Use a constant buffer instead of a ScratchpadContext

2016-03-19 Thread Vittorio Giovara
The size of the block is fixed (8x8 plus padding). --- libavcodec/intrax8.c | 5 ++--- libavcodec/intrax8.h | 1 + 2 files changed, 3 insertions(+), 3 deletions(-) Modified according to instructions. diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c index 9da6b41f4..fae9bc8 100644 ---