On Wed, May 27, 2020 at 07:10:45PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang <lance.lmw...@gmail.com> > > Signed-off-by: Limin Wang <lance.lmw...@gmail.com> > --- > libavformat/rtspdec.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c > index bd2e8f4..dfa2991 100644 > --- a/libavformat/rtspdec.c > +++ b/libavformat/rtspdec.c > @@ -289,9 +289,7 @@ static int rtsp_read_setup(AVFormatContext *s, char* > host, char *controlurl) > } else { > do { > AVDictionary *opts = NULL; > - char buf[256]; > - snprintf(buf, sizeof(buf), "%d", rt->buffer_size); > - av_dict_set(&opts, "buffer_size", buf, 0); > + av_dict_set_int(&opts, "buffer_size", rt->buffer_size, 0); > ff_url_join(url, sizeof(url), "rtp", NULL, host, localport, > NULL); > av_log(s, AV_LOG_TRACE, "Opening: %s", url); > ret = ffurl_open_whitelist(&rtsp_st->rtp_handle, url, > AVIO_FLAG_READ_WRITE, > -- > 1.8.3.1 >
will apply the patchset tomorrow if no further comments. -- Thanks, Limin Wang _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".