summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-07 17:42:31 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-07 17:42:31 +0000
commit0c9392449485c088d8aa25cb8b510c1489050537 (patch)
tree0a3d52a9c5496a168fe97bd97bb0c60af64b55eb /libmpcodecs/vf.h
parent76756940e4d6e57009e1385b71c614cc5df304e6 (diff)
downloadmpv-0c9392449485c088d8aa25cb8b510c1489050537.tar.bz2
mpv-0c9392449485c088d8aa25cb8b510c1489050537.tar.xz
vf control codes added, autoq support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5520 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf.h')
-rw-r--r--libmpcodecs/vf.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libmpcodecs/vf.h b/libmpcodecs/vf.h
index 861393fc72..27ac46bd4e 100644
--- a/libmpcodecs/vf.h
+++ b/libmpcodecs/vf.h
@@ -40,6 +40,13 @@ typedef struct vf_instance_s {
struct vf_priv_s* priv;
} vf_instance_t;
+// control codes:
+#include "mpc_info.h"
+
+#define VFCTRL_QUERY_MAX_PP_LEVEL 4 /* test for postprocessing support (max level) */
+#define VFCTRL_SET_PP_LEVEL 5 /* set postprocessing level */
+#define VFCTRL_SET_EQUALIZER 6 /* set color options (brightness,contrast etc) */
+
// functions:
mp_image_t* vf_get_image(vf_instance_t* vf, unsigned int outfmt, int mp_imgtype, int mp_imgflag, int w, int h);
vf_instance_t* vf_open_filter(vf_instance_t* next, char *name, char *args);