summaryrefslogtreecommitdiffstats
path: root/video/out
diff options
context:
space:
mode:
authorCoelacanthus <coelacanthus@outlook.com>2022-07-16 14:20:18 +0800
committerJan Ekström <jeebjp@gmail.com>2022-07-16 13:06:21 +0300
commit70fa9502f35014db5e6989af2947f5b61d4a7cf1 (patch)
tree54166ed47f144499a054d957d3e9dfb2bc18b727 /video/out
parent59ee10e3c70151f02c0bed85abbea9ca18ff8c28 (diff)
downloadmpv-70fa9502f35014db5e6989af2947f5b61d4a7cf1.tar.bz2
mpv-70fa9502f35014db5e6989af2947f5b61d4a7cf1.tar.xz
libplacebo: fix compatibility with libplacebo >= 5
libplacebo 4.157 [1] rename context.h to log.h, and left a compatibility header. In 5.x, this header has been removed. Since we require libplacebo 4.157 to build mpv, we can just use log.h to fix compatibility with 5.x. [1]: https://github.com/haasn/libplacebo/commit/2459200a133d1a0f36f092a32a2d5d443cfbee55 Signed-off-by: Coelacanthus <coelacanthus@outlook.com>
Diffstat (limited to 'video/out')
-rw-r--r--video/out/placebo/utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/placebo/utils.h b/video/out/placebo/utils.h
index b00fe9cbd9..c897b5e013 100644
--- a/video/out/placebo/utils.h
+++ b/video/out/placebo/utils.h
@@ -5,7 +5,7 @@
#include "video/csputils.h"
#include <libplacebo/common.h>
-#include <libplacebo/context.h>
+#include <libplacebo/log.h>
#include <libplacebo/colorspace.h>
pl_log mppl_log_create(struct mp_log *log);