On Mon, Dec 19, 2011 at 02:09:10PM +0000, Måns Rullgård wrote:
> Diego Biurrun <[email protected]> writes:
> >
> > --- a/libavcodec/qcelpdec.c
> > +++ b/libavcodec/qcelpdec.c
> > @@ -122,9 +122,8 @@ static int decode_lspf(QCELPContext *q, float *lspf)
> >
> >      if (q->bitrate == RATE_OCTAVE || q->bitrate == I_F_Q) {
> > -        predictors = (q->prev_bitrate != RATE_OCTAVE &&
> > -                       q->prev_bitrate != I_F_Q ?
> > -                       q->prev_lspf : q->predictor_lspf);
> > +        predictors = q->prev_bitrate != RATE_OCTAVE &&
> > +                     q->prev_bitrate != I_F_Q ? q->prev_lspf : 
> > q->predictor_lspf;
> 
> OK as such, but that line is 81 columns, probably the ugliest length of all.
> 
> Rest of patch OK.

Pushed with that line broken.

Diego
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to