On Thu, Jul 19, 2012 at 11:22:44AM -0400, Justin Ruggles wrote:
> On 07/09/2012 05:24 PM, Justin Ruggles wrote:
> > ---
> > libavcodec/alac.c | 10 +++++-----
> > 1 files changed, 5 insertions(+), 5 deletions(-)
> >
> > diff --git a/libavcodec/alac.c b/libavcodec/alac.c
> > index db5633c..cf95959 100644
> > --- a/libavcodec/alac.c
> > +++ b/libavcodec/alac.c
> > @@ -262,8 +262,8 @@ static void lpc_prediction(int32_t *error_buffer,
> > int32_t *buffer_out,
> > }
> >
> > static void decorrelate_stereo(int32_t *buffer[2],
> > - int nb_samples, uint8_t decorr_shift,
> > - uint8_t decorr_left_weight)
> > + int nb_samples, int decorr_shift,
> > + int decorr_left_weight)
> > {
> > int i;
> >
> > @@ -297,10 +297,10 @@ static int decode_element(AVCodecContext *avctx, void
> > *data, int ch_index,
> > {
> > ALACContext *alac = avctx->priv_data;
> > int has_size;
> > - unsigned int bps;
> > + int bps;
> > int is_compressed;
> > - uint8_t decorr_shift;
> > - uint8_t decorr_left_weight;
> > + int decorr_shift;
> > + int decorr_left_weight;
> > uint32_t output_samples;
> > int i, ch, ret;
> >
>
> ping
LGTM
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel