On Fri, Jun 26, 2020 at 05:16:03AM +0200, Andreas Rheinhardt wrote:
> [email protected]:
> > From: Limin Wang <[email protected]>
> > 
> > Signed-off-by: Limin Wang <[email protected]>
> > ---
> >  libavformat/aviobuf.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
> > index a77517d..1e32c0c 100644
> > --- a/libavformat/aviobuf.c
> > +++ b/libavformat/aviobuf.c
> > @@ -1191,7 +1191,7 @@ int avio_printf(AVIOContext *s, const char *fmt, ...)
> >      va_list ap;
> >      AVBPrint bp;
> >  
> > -    av_bprint_init(&bp, 0, INT_MAX);
> > +    av_bprint_init(&bp, 0, AV_BPRINT_SIZE_UNLIMITED);
> >      va_start(ap, fmt);
> >      av_vbprintf(&bp, fmt, ap);
> >      va_end(ap);
> > 
> This function returns an int containing either the number of bytes
> written or an error code. Ergo the number of bytes written must be in
> the range 0..INT_MAX.

Yes, please ignore the change.

> 
> - Andreas
> _______________________________________________
> ffmpeg-devel mailing list
> [email protected]
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
> 
> To unsubscribe, visit link above, or email
> [email protected] with subject "unsubscribe".

-- 
Thanks,
Limin Wang
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to