[FFmpeg-devel] [PATCH 06/18] avformat/tls: use non protocol specific error message

Steven Liu lingjiujianke at gmail.com
Thu Jul 3 17:03:25 EEST 2025


Timo Rothenpieler <timo at rothenpieler.org> 于2025年7月3日周四 00:59写道:
>
> ---
>  libavformat/tls.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavformat/tls.c b/libavformat/tls.c
> index da53835200..018b24cd48 100644
> --- a/libavformat/tls.c
> +++ b/libavformat/tls.c
> @@ -137,7 +137,7 @@ int ff_tls_open_underlying(TLSShared *c, URLContext *parent, const char *uri, AV
>                                 parent->protocol_whitelist, parent->protocol_blacklist, parent);
>      if (c->is_dtls) {
>          if (ret < 0) {
> -            av_log(c, AV_LOG_ERROR, "WHIP: Failed to connect udp://%s:%d\n", c->underlying_host, port);
> +            av_log(c, AV_LOG_ERROR, "Failed to open udp://%s:%d\n", c->underlying_host, port);
>              return ret;
>          }
>          /* Make the socket non-blocking, set to READ and WRITE mode after connected */
> --
> 2.49.0
>
> _______________________________________________
> 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".


LGTM

Thanks
Steven


More information about the ffmpeg-devel mailing list