summaryrefslogtreecommitdiffstats
path: root/video/vt.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-09-26 19:13:26 +0200
committerwm4 <wm4@nowhere>2017-09-26 19:13:26 +0200
commit9b60398f4e2710e304eb4bbb51ed70e0b8523845 (patch)
tree9af483e3ac1fb5a7cdc0b4420a4c1b86fd21135c /video/vt.h
parenta730717281c08934c3b6a00313881ecc9280ad5c (diff)
downloadmpv-9b60398f4e2710e304eb4bbb51ed70e0b8523845.tar.bz2
mpv-9b60398f4e2710e304eb4bbb51ed70e0b8523845.tar.xz
video: remove old videotoolbox support
Like as in previous commits, you need a very recent FFmpeg (probably git master).
Diffstat (limited to 'video/vt.h')
-rw-r--r--video/vt.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/video/vt.h b/video/vt.h
deleted file mode 100644
index e488f29cf0..0000000000
--- a/video/vt.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef MPV_VT_H
-#define MPV_VT_H
-
-#include <stdint.h>
-
-int mp_imgfmt_from_cvpixelformat(uint32_t cvpixfmt);
-uint32_t mp_imgfmt_to_cvpixelformat(int mpfmt);
-
-struct mp_image;
-struct mp_image_pool;
-struct mp_hwdec_ctx;
-struct mp_image *mp_vt_download_image(struct mp_hwdec_ctx *ctx,
- struct mp_image *hw_image,
- struct mp_image_pool *swpool);
-
-#endif