diff options
author | Ingo Oppermann <ingo@datarhei.com> | 2024-02-12 15:53:19 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2024-02-15 00:34:16 +0100 |
commit | 86128bd07a8634fb4a19c1bab616bc16ce0567d3 (patch) | |
tree | c2cbc6908f22ba71a069af789479a246cb16f606 /libavformat/Makefile | |
parent | e7f9edb4698e94135aab24c302226734713548f0 (diff) | |
download | ffmpeg-86128bd07a8634fb4a19c1bab616bc16ce0567d3.tar.gz |
avformat/libsrt: Fix srt:// URL query string parsing
Add missing NULL check and use ff_urldecode for string query
parameters.
Signed-off-by: Ingo Oppermann <ingo@datarhei.com>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 05b9b8a115..9e8e7c9cb8 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -714,7 +714,7 @@ OBJS-$(CONFIG_LIBRTMPS_PROTOCOL) += librtmp.o OBJS-$(CONFIG_LIBRTMPT_PROTOCOL) += librtmp.o OBJS-$(CONFIG_LIBRTMPTE_PROTOCOL) += librtmp.o OBJS-$(CONFIG_LIBSMBCLIENT_PROTOCOL) += libsmbclient.o -OBJS-$(CONFIG_LIBSRT_PROTOCOL) += libsrt.o +OBJS-$(CONFIG_LIBSRT_PROTOCOL) += libsrt.o urldecode.o OBJS-$(CONFIG_LIBSSH_PROTOCOL) += libssh.o OBJS-$(CONFIG_LIBZMQ_PROTOCOL) += libzmq.o |