Re: [libav-devel] [PATCH 14/25] intrax8: Pass the output frame to the decoding function

2016-03-22 Thread Vittorio Giovara
On Tue, Mar 22, 2016 at 2:03 PM, Diego Biurrun wrote: > On Sat, Mar 19, 2016 at 05:42:45PM -0400, Vittorio Giovara wrote: >> --- a/libavcodec/intrax8.c >> +++ b/libavcodec/intrax8.c >> @@ -827,7 +828,7 @@ int ff_intrax8_decode_picture(IntraX8Context *const w, >> int dquant, >> /*

Re: [libav-devel] [PATCH 14/25] intrax8: Pass the output frame to the decoding function

2016-03-22 Thread Diego Biurrun
On Sat, Mar 19, 2016 at 05:42:45PM -0400, Vittorio Giovara wrote: > --- a/libavcodec/intrax8.c > +++ b/libavcodec/intrax8.c > @@ -827,7 +828,7 @@ int ff_intrax8_decode_picture(IntraX8Context *const w, > int dquant, > /* emulate MB info in the relevant tables */ >

[libav-devel] [PATCH 14/25] intrax8: Pass the output frame to the decoding function

2016-03-19 Thread Vittorio Giovara
Helps in decoupling this code from mpegvideo. --- libavcodec/intrax8.c | 21 +++-- libavcodec/intrax8.h | 7 +-- libavcodec/vc1_block.c | 5 +++-- libavcodec/wmv2dec.c | 3 ++- 4 files changed, 21 insertions(+), 15 deletions(-) diff --git a/libavcodec/intrax8.c b/liba