Diego Biurrun <[email protected]> writes:

> ---
>  libavcodec/qcelpdec.c |   15 +++++++--------
>  1 files changed, 7 insertions(+), 8 deletions(-)
>
> diff --git a/libavcodec/qcelpdec.c b/libavcodec/qcelpdec.c
> index 20a0484..5263223 100644
> --- a/libavcodec/qcelpdec.c
> +++ b/libavcodec/qcelpdec.c
> @@ -122,9 +122,8 @@ static int decode_lspf(QCELPContext *q, float *lspf)
>      const float *predictors;
>
>      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.

-- 
Måns Rullgård
[email protected]
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to