summaryrefslogtreecommitdiffstats
path: root/video/zimg.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-05-01 00:55:13 +0200
committerwm4 <wm4@nowhere>2020-05-01 00:59:57 +0200
commit008faa3d7fd62c9e8af00281a04ed76db1b41391 (patch)
tree743eb383362e47200d7fd142b6d7470e8ce562db /video/zimg.h
parent4f0206ab045e65798eef7e6e1efe0d862fe7b7f7 (diff)
downloadmpv-008faa3d7fd62c9e8af00281a04ed76db1b41391.tar.bz2
mpv-008faa3d7fd62c9e8af00281a04ed76db1b41391.tar.xz
zimg: remove C11 aligned_alloc() requirement
It's not available on Windows because MinGW is fucking horrible and Microsoft are fucking assholes.
Diffstat (limited to 'video/zimg.h')
-rw-r--r--video/zimg.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/zimg.h b/video/zimg.h
index 0ef9c5a3a0..ef2aeaa112 100644
--- a/video/zimg.h
+++ b/video/zimg.h
@@ -40,6 +40,7 @@ struct mp_zimg_context {
struct m_config_cache *opts_cache;
zimg_filter_graph *zimg_graph;
void *zimg_tmp;
+ void *zimg_tmp_alloc;
struct mp_zimg_repack *zimg_src;
struct mp_zimg_repack *zimg_dst;
};