> 2022年3月29日 下午2:11,[email protected] 写道: > > On Tue, Mar 29, 2022 at 10:21 AM "zhilizhao(赵志立)" > <[email protected]> wrote: >> >> Ping. >> >>> On Aug 14, 2021, at 6:43 PM, Zhao Zhili <[email protected]> wrote: >>> >>> The upper limit of strlen(streamid) is 512. Use a larger buffer for >>> future proof, for example, deal with percent-encoding. >>> --- >>> libavformat/libsrt.c | 2 +- >>> 1 file changed, 1 insertion(+), 1 deletion(-) >>> >>> diff --git a/libavformat/libsrt.c b/libavformat/libsrt.c >>> index e5701625b8..a66c85d3a2 100644 >>> --- a/libavformat/libsrt.c >>> +++ b/libavformat/libsrt.c >>> @@ -513,7 +513,7 @@ static int libsrt_open(URLContext *h, const char *uri, >>> int flags) >>> { >>> SRTContext *s = h->priv_data; >>> const char * p; >>> - char buf[256]; >>> + char buf[1024]; >>> int ret = 0; >>> >>> if (srt_startup() < 0) { >>> -- >>> 2.31.1 > > LGTM, thx
Applied as 3721aaeaaae9f817abb843117ae8dae1dc280a7f > _______________________________________________ > 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 Steven Liu _______________________________________________ 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".
