On Thu, Sep 08, 2016 at 04:07:19PM +0200, Vittorio Giovara wrote: > On Thu, Sep 8, 2016 at 2:13 PM, Diego Biurrun <[email protected]> wrote: > > --- a/libavcodec/svq3.c > > +++ b/libavcodec/svq3.c > > @@ -118,8 +118,9 @@ typedef struct SVQ3Context { > > int mb_width, mb_height; > > - int mb_stride, mb_num; > > - int b_stride; > > + ptrdiff_t mb_stride; > > + int mb_num; > > + ptrdiff_t b_stride; > > maybe you could coalesce this in > > + int mb_num; > + ptrdiff_t mb_stride, b_stride;
Changed locally. Diego _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
