On Sat, Sep 17, 2011 at 10:18:13PM +0200, Laurent Aimar wrote: > On Sat, Sep 17, 2011 at 04:56:31PM +0200, [email protected] wrote: > > From: Laurent Aimar <[email protected]> > > > > --- > > libavcodec/golomb.h | 2 +- > > 1 files changed, 1 insertions(+), 1 deletions(-) > > > > diff --git a/libavcodec/golomb.h b/libavcodec/golomb.h > > index 83d277f..58707ed 100644 > > --- a/libavcodec/golomb.h > > +++ b/libavcodec/golomb.h > > @@ -124,7 +124,7 @@ static inline int svq3_get_ue_golomb(GetBitContext *gb){ > > } > > > > CLOSE_READER(re, gb); > > - return ret - 1; > > + return (ret - 1) & INT_MAX; > > A better patch from ffmpeg is attached.
Ping. -- fenrir _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
