summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vfcap.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-02 02:51:33 +0200
committerwm4 <wm4@nowhere>2012-08-02 02:51:33 +0200
commited3f0c3e4b91b672b3a16ef884cd5a4ec3f6a12c (patch)
tree1853c394df3935f5327f2b75e21bb31bb2f8071f /libmpcodecs/vfcap.h
parentd5315a678ea93110f8bde10fe83eca64202988d1 (diff)
downloadmpv-ed3f0c3e4b91b672b3a16ef884cd5a4ec3f6a12c.tar.bz2
mpv-ed3f0c3e4b91b672b3a16ef884cd5a4ec3f6a12c.tar.xz
vf: remove VFCAP_FLIPPED and VFCAP_CONSTANT
These were unused.
Diffstat (limited to 'libmpcodecs/vfcap.h')
-rw-r--r--libmpcodecs/vfcap.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/libmpcodecs/vfcap.h b/libmpcodecs/vfcap.h
index eca9b5ef7f..86c6f6e477 100644
--- a/libmpcodecs/vfcap.h
+++ b/libmpcodecs/vfcap.h
@@ -35,15 +35,11 @@
// driver/hardware handles timing (blocking)
#define VFCAP_TIMER 0x100
-// driver _always_ flip image upside-down (for ve_vfw)
-#define VFCAP_FLIPPED 0x200
// vf filter: accepts stride (put_image)
// vo driver: has draw_slice() support for the given csp
#define VFCAP_ACCEPT_STRIDE 0x400
// filter does postprocessing (so you shouldn't scale/filter image before it)
#define VFCAP_POSTPROC 0x800
-// filter cannot be reconfigured to different size & format
-#define VFCAP_CONSTANT 0x1000
// filter can draw EOSD
#define VFCAP_EOSD 0x2000
// filter will draw EOSD at screen resolution (without scaling)