Re: [libav-devel] [PATCH 19/25] intrax8: Pass macroblock size to ff_intrax8_common_init

2016-03-22 Thread Diego Biurrun
On Sat, Mar 19, 2016 at 05:42:50PM -0400, Vittorio Giovara wrote: > --- a/libavcodec/intrax8.c > +++ b/libavcodec/intrax8.c > @@ -383,7 +383,6 @@ static void x8_update_predictions(IntraX8Context *const > w, const int orient, >const int est_run) > { > MpegE

[libav-devel] [PATCH 19/25] intrax8: Pass macroblock size to ff_intrax8_common_init

2016-03-19 Thread Vittorio Giovara
Helps in decoupling this code from mpegvideo. --- libavcodec/intrax8.c | 20 +++- libavcodec/intrax8.h | 7 +++ libavcodec/vc1dec.c | 4 +++- libavcodec/wmv2dec.c | 3 ++- 4 files changed, 23 insertions(+), 11 deletions(-) diff --git a/libavcodec/intrax8.c b/libavcodec/int