[FFmpeg-devel] [PATCH] avformat/libsrt: use a larger buffer for find_info_tag

"zhilizhao(赵志立)" quinkblack at foxmail.com
Tue Mar 29 05:21:31 EEST 2022


Ping.

> On Aug 14, 2021, at 6:43 PM, Zhao Zhili <quinkblack at foxmail.com> 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
> 
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
> 
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request at ffmpeg.org with subject "unsubscribe".
> 



More information about the ffmpeg-devel mailing list