Re: [libav-devel] [PATCH] dirac: dwt and dsp extra functions

2013-01-21 Thread Jordi Ortiz
On 21/01/13 22:29, Diego Biurrun wrote: > +void ff_diracdsp_init(DiracDSPContext *c, AVCodecContext *avctx) > +{ > +ff_dsputil_init(&c->dsp, avctx); > What do you need this for, we're trying to drop dsputil dependencies. I use some functions that are reachable through dspcontext like draw_edges

Re: [libav-devel] [PATCH] dirac: dwt and dsp extra functions

2013-01-21 Thread Diego Biurrun
On Mon, Jan 21, 2013 at 08:20:57PM +0100, Jordi Ortiz wrote: > --- /dev/null > +++ b/libavcodec/dirac_dwt.c > @@ -0,0 +1,608 @@ > +static void spatial_compose_daub97i_dy(DiracDWTContext *d, int level, > + unsigned width, unsigned height, > +

[libav-devel] [PATCH] dirac: dwt and dsp extra functions

2013-01-21 Thread Jordi Ortiz
--- This amendment introduces VideoDSPContext into DiracDSPContext. libavcodec/dirac_dwt.c | 608 + libavcodec/dirac_dwt.h | 132 +++ libavcodec/diracdsp.c | 313 + libavcodec/diracdsp.h | 98 4 files chang

[libav-devel] [PATCH] dirac: dwt and dsp extra functions

2012-11-28 Thread Jordi Ortiz
--- libavcodec/dirac_dwt.c | 608 + libavcodec/dirac_dwt.h | 132 +++ libavcodec/diracdsp.c | 311 + libavcodec/diracdsp.h | 96 4 files changed, 1147 insertions(+) create mode 100644 libavcodec/dirac_dwt.

Re: [libav-devel] [PATCH] dirac: dwt and dsp extra functions

2012-11-11 Thread Jordi Ortiz
2012/11/5 Diego Biurrun : > On Sat, Nov 03, 2012 at 10:14:05PM +0100, Jordi Ortiz wrote: >> +static void spatial_compose97i_init2(DiracDWTCompose *cs, IDWTELEM *buffer, >> + int height, int stride) >> + >> +static void spatial_compose53i_init2(DiracDWTCompose *cs

Re: [libav-devel] [PATCH] dirac: dwt and dsp extra functions

2012-11-08 Thread Diego Biurrun
On Fri, Nov 09, 2012 at 03:24:44AM +0100, Diego Biurrun wrote: > On Sat, Nov 03, 2012 at 10:14:05PM +0100, Jordi Ortiz wrote: > > --- > > libavcodec/dirac_dwt.c | 614 > > > > libavcodec/dirac_dwt.h | 132 +++ > > libavcodec/diracdsp.c |

Re: [libav-devel] [PATCH] dirac: dwt and dsp extra functions

2012-11-08 Thread Diego Biurrun
On Sat, Nov 03, 2012 at 10:14:05PM +0100, Jordi Ortiz wrote: > --- > libavcodec/dirac_dwt.c | 614 > > libavcodec/dirac_dwt.h | 132 +++ > libavcodec/diracdsp.c | 301 > libavcodec/diracdsp.h | 95 >

Re: [libav-devel] [PATCH] dirac: dwt and dsp extra functions

2012-11-05 Thread Diego Biurrun
On Sat, Nov 03, 2012 at 10:14:05PM +0100, Jordi Ortiz wrote: > > --- /dev/null > +++ b/libavcodec/dirac_dwt.c > @@ -0,0 +1,614 @@ > + > +static void vertical_compose53iL0(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, > + int width) indentation > +static void horizontal_c

[libav-devel] [PATCH] dirac: dwt and dsp extra functions

2012-11-03 Thread Jordi Ortiz
--- libavcodec/dirac_dwt.c | 614 libavcodec/dirac_dwt.h | 132 +++ libavcodec/diracdsp.c | 301 libavcodec/diracdsp.h | 95 4 files changed, 1142 insertions(+) create mode 100644 libavcodec/dirac_dw