Hello. Here is a patch which allows libav to support urlencoded credentials with http(s) connections.
E.g. avplay http://email%40address.foo:password@video-url/video-file.ts does not succeed without this patch. This patch comes especially handy if the username happens to contain '@' character. Antti Seppälä (1): Added urldecode support to http authentication. libavformat/Makefile | 11 +++--- libavformat/httpauth.c | 23 +++++++++--- libavformat/urldecode.c | 86 +++++++++++++++++++++++++++++++++++++++++++++++ libavformat/urldecode.h | 35 +++++++++++++++++++ 4 files changed, 144 insertions(+), 11 deletions(-) create mode 100644 libavformat/urldecode.c create mode 100644 libavformat/urldecode.h -- 1.7.8.6 _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
