[FFmpeg-devel] [PATCH] avformat/http: include version.h
James Almer
jamrial at gmail.com
Sat Jun 25 05:03:23 EEST 2022
This is needed to get LIBAVFORMAT_VERSION, used as part of the user agent.
Fixes a recent regression.
Signed-off-by: James Almer <jamrial at gmail.com>
---
I dislike the fact AV_STRINGIFY() silenced the warning that should have been
printed about LIBAVFORMAT_VERSION being undefined.
Before:
./ffmpeg -h protocol=http
-user_agent <string> .D......... override User-Agent header (default "Lavf/LIBAVFORMAT_VERSION")
After:
./ffmpeg -h protocol=http
-user_agent <string> .D......... override User-Agent header (default "Lavf/59.25.100")
I suppose this is a regression since the recent work to split the library
version defines into separate headers.
libavformat/http.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavformat/http.c b/libavformat/http.c
index f80ea7bf35..c5c48c7900 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -41,6 +41,7 @@
#include "network.h"
#include "os_support.h"
#include "url.h"
+#include "version.h"
/* XXX: POST protocol is not completely implemented because ffmpeg uses
* only a subset of it. */
--
2.36.1
More information about the ffmpeg-devel
mailing list