diff options
author | James Almer <jamrial@gmail.com> | 2022-06-24 22:59:03 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-06-24 23:07:33 -0300 |
commit | c7ce03d826e9c7914876333f4ca1445394bd22fd (patch) | |
tree | d73dc67ec0f00caae33051a783cd8592ecc52266 | |
parent | a44fba0b5b3b4090f9238751736198ddd1f0f1d5 (diff) | |
download | ffmpeg-c7ce03d826e9c7914876333f4ca1445394bd22fd.tar.gz |
avformat/http: include version.h
This is needed to get LIBAVFORMAT_VERSION, used as part of the user agent.
Fixes a recent regression.
Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavformat/http.c | 1 |
1 files changed, 1 insertions, 0 deletions
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. */ |