On Tue, 26 Feb 2013 11:33:51 -0500, Justin Ruggles <justin.rugg...@gmail.com> 
wrote:
> On 01/08/2013 09:40 AM, Anton Khirnov wrote:
> > +        out= ff_get_audio_buffer(outlink, nb_samples);
> 
> space before =
> 
> > +        if (!out) {
> >              ret = AVERROR(ENOMEM);
> >              goto fail;
> >          }
> >  
> > -        ret     = avresample_convert(s->avr, buf_out->extended_data,
> > -                                     buf_out->linesize[0], nb_samples,
> > -                                     buf->extended_data, buf->linesize[0],
> > -                                     buf->audio->nb_samples);
> > +        ret     = avresample_convert(s->avr, out->extended_data,
> > +                                     out->linesize[0], nb_samples,
> > +                                     in->extended_data, in->linesize[0],
> > +                                     in->nb_samples);
> 
> can you go ahead and fix the spacing while you're at it?
> 

Sure, both done locally.

-- 
Anton Khirnov
_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to