[FFmpeg-devel] [PATCH] Move audioconvert API from libavcodec to libavcore.

Stefano Sabatini stefano.sabatini-lala
Tue Jan 11 13:10:41 CET 2011


On date Tuesday 2011-01-11 01:52:46 +0100, Michael Niedermayer encoded:
> On Tue, Jan 11, 2011 at 01:35:45AM +0100, Stefano Sabatini wrote:
> > On date Tuesday 2011-01-11 00:55:46 +0100, Michael Niedermayer encoded:
> > > On Tue, Jan 11, 2011 at 12:20:39AM +0100, Stefano Sabatini wrote:
> > > > On date Sunday 2011-01-09 19:52:26 +0100, Michael Niedermayer encoded:
> > > [...]
> > > > +int av_audio_convert2(AVAudioConvertContext *ctx,
> > > > +                           void * const out[8], const int out_stride[8],
> > > > +                     const void * const  in[8], const int  in_stride[8], int len)
> > > > +{
> > > > +    int ch;
> > > > +
> > > > +    //FIXME optimize common cases
> > > > +
> > > > +    for (ch = 0; ch < ctx->out_channels; ch++) {
> > > > +        const int is =  in_stride[ch];
> > > > +        const int os = out_stride[ch];
> > > > +        const uint8_t *pi=  in[ch];
> > > > +        uint8_t *po  = out[ch];
> > > > +        uint8_t *end = po + os*len;
> > > > +        if (!out[ch])
> > > > +            continue;
> > > 
> > > does git blame pick up this reformated code and associate it correctly to the
> > > original commits ?
> > 
> > No, I'll revert the formatting.
> 
> Thanks alot

I'll apply this night if there are no other comments.
-- 
FFmpeg = Fundamental & Fundamental MultiPurpose Erudite Ghost



More information about the ffmpeg-devel mailing list