[libav-devel] [PATCH 4/4] lavr: resampling: add support for s32p, fltp, and dblp internal sample formats

2012-06-01 Thread Justin Ruggles
Based partially on implementation by Michael Niedermayer in libswresample in FFmpeg. See commits: 7f1ae79d38c4edba9dbd31d7bf797e525298ac55 24ab1abfb6d55bf330022df4b10d7aec80b3f116 --- libavresample/resample.c | 205 + libavresample/resample_template.c

[libav-devel] [PATCH 4/4] lavr: resampling: add support for s32p, fltp, and dblp internal sample formats

2012-06-06 Thread Justin Ruggles
Based partially on implementation by Michael Niedermayer in libswresample in FFmpeg. See commits: 7f1ae79d38c4edba9dbd31d7bf797e525298ac55 24ab1abfb6d55bf330022df4b10d7aec80b3f116 --- Do you like this version any better? libavresample/resample.c | 163 +-

[libav-devel] [PATCH 4/4] lavr: resampling: add support for s32p, fltp, and dblp internal sample formats

2012-06-18 Thread Justin Ruggles
Based partially on implementation by Michael Niedermayer in libswresample in FFmpeg. See commits: 7f1ae79d38c4edba9dbd31d7bf797e525298ac55 24ab1abfb6d55bf330022df4b10d7aec80b3f116 --- Changed the RENAME macro to SET_TYPE per Diego's request. libavresample/resample.c | 163 +

Re: [libav-devel] [PATCH 4/4] lavr: resampling: add support for s32p, fltp, and dblp internal sample formats

2012-06-05 Thread Luca Barbato
On 01/06/12 21:42, Justin Ruggles wrote: > Based partially on implementation by Michael Niedermayer in > libswresample in FFmpeg. See commits: > 7f1ae79d38c4edba9dbd31d7bf797e525298ac55 > 24ab1abfb6d55bf330022df4b10d7aec80b3f116 > --- > libavresample/resample.c | 205 >

Re: [libav-devel] [PATCH 4/4] lavr: resampling: add support for s32p, fltp, and dblp internal sample formats

2012-06-06 Thread Luca Barbato
On 06/06/12 17:32, Justin Ruggles wrote: > Based partially on implementation by Michael Niedermayer in > libswresample in FFmpeg. See commits: > 7f1ae79d38c4edba9dbd31d7bf797e525298ac55 > 24ab1abfb6d55bf330022df4b10d7aec80b3f116 > --- > Do you like this version any better? > Yes, thank you. We c

Re: [libav-devel] [PATCH 4/4] lavr: resampling: add support for s32p, fltp, and dblp internal sample formats

2012-06-06 Thread Diego Biurrun
On Wed, Jun 06, 2012 at 11:32:36AM -0400, Justin Ruggles wrote: > Based partially on implementation by Michael Niedermayer in > libswresample in FFmpeg. See commits: > 7f1ae79d38c4edba9dbd31d7bf797e525298ac55 > 24ab1abfb6d55bf330022df4b10d7aec80b3f116 > --- > Do you like this version any better?

Re: [libav-devel] [PATCH 4/4] lavr: resampling: add support for s32p, fltp, and dblp internal sample formats

2012-06-06 Thread Diego Biurrun
On Wed, Jun 06, 2012 at 11:32:36AM -0400, Justin Ruggles wrote: > > --- /dev/null > +++ b/libavresample/resample_template.c > @@ -0,0 +1,102 @@ > + > +#if defined(CONFIG_RESAMPLE_DBL) > +#define RENAME(func) func ## _ ## dbl > +#define FELEM double > +#define FELEM2double > +#defi

Re: [libav-devel] [PATCH 4/4] lavr: resampling: add support for s32p, fltp, and dblp internal sample formats

2012-06-06 Thread Justin Ruggles
On 06/06/2012 02:24 PM, Diego Biurrun wrote: > On Wed, Jun 06, 2012 at 11:32:36AM -0400, Justin Ruggles wrote: >> >> --- /dev/null >> +++ b/libavresample/resample_template.c >> @@ -0,0 +1,102 @@ >> + >> +#if defined(CONFIG_RESAMPLE_DBL) >> +#define RENAME(func) func ## _ ## dbl >> +#define FELEM

Re: [libav-devel] [PATCH 4/4] lavr: resampling: add support for s32p, fltp, and dblp internal sample formats

2012-06-27 Thread Justin Ruggles
On 06/18/2012 05:01 PM, Justin Ruggles wrote: > Based partially on implementation by Michael Niedermayer in > libswresample in FFmpeg. See commits: > 7f1ae79d38c4edba9dbd31d7bf797e525298ac55 > 24ab1abfb6d55bf330022df4b10d7aec80b3f116 > --- > Changed the RENAME macro to SET_TYPE per Diego's request

Re: [libav-devel] [PATCH 4/4] lavr: resampling: add support for s32p, fltp, and dblp internal sample formats

2012-06-27 Thread Luca Barbato
On 06/27/2012 09:21 PM, Justin Ruggles wrote: > On 06/18/2012 05:01 PM, Justin Ruggles wrote: >> Based partially on implementation by Michael Niedermayer >> in >> libswresample in FFmpeg. See commits: >> 7f1ae79d38c4edba9dbd31d7bf797e525298ac55 >> 24ab1abfb6d55bf330022df4b10d7aec80b3f116 >> --- >