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

2016-02-24 Thread Anton Khirnov
Quoting Vittorio Giovara (2016-02-23 16:25:55) > On Tue, Feb 23, 2016 at 8:22 AM, Diego Biurrun wrote: > > On Mon, Feb 22, 2016 at 08:17:37PM -0500, Vittorio Giovara wrote: > >> Sustain possible size changes via av_fast_malloc(). > > > > Sustain? That's not the right word, but

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

2016-02-23 Thread Diego Biurrun
On Tue, Feb 23, 2016 at 10:25:55AM -0500, Vittorio Giovara wrote: > On Tue, Feb 23, 2016 at 8:22 AM, Diego Biurrun wrote: > > On Mon, Feb 22, 2016 at 08:17:37PM -0500, Vittorio Giovara wrote: > >> Sustain possible size changes via av_fast_malloc(). > > > > Sustain? That's not

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

2016-02-23 Thread Vittorio Giovara
On Tue, Feb 23, 2016 at 8:22 AM, Diego Biurrun wrote: > On Mon, Feb 22, 2016 at 08:17:37PM -0500, Vittorio Giovara wrote: >> Sustain possible size changes via av_fast_malloc(). > > Sustain? That's not the right word, but I'm a tad unsure what you are > trying to say here. If

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

2016-02-23 Thread Diego Biurrun
On Mon, Feb 22, 2016 at 08:17:37PM -0500, Vittorio Giovara wrote: > Sustain possible size changes via av_fast_malloc(). Sustain? That's not the right word, but I'm a tad unsure what you are trying to say here. > --- a/libavcodec/intrax8.c > +++ b/libavcodec/intrax8.c > @@ -773,6 +773,7 @@ int

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

2016-02-22 Thread Vittorio Giovara
Sustain possible size changes via av_fast_malloc(). --- libavcodec/intrax8.c | 11 --- libavcodec/intrax8.h | 2 ++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c index d0e7e93..4955a2b 100644 --- a/libavcodec/intrax8.c +++