summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.h
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-07-24 18:14:21 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-07-24 18:14:21 +0000
commit2de7e088118b83235262483041d556c16410cbce (patch)
tree6fd692aada4fd7c1c4488c86dd1b3f5103123ffe /libmpcodecs/vf.h
parentee5c104bd4f1da26ac689375feaf229b56f98eee (diff)
downloadmpv-2de7e088118b83235262483041d556c16410cbce.tar.bz2
mpv-2de7e088118b83235262483041d556c16410cbce.tar.xz
equalizer reworked
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6781 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf.h')
-rw-r--r--libmpcodecs/vf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/vf.h b/libmpcodecs/vf.h
index d0cb56c765..bca3451c1c 100644
--- a/libmpcodecs/vf.h
+++ b/libmpcodecs/vf.h
@@ -24,7 +24,7 @@ typedef struct vf_instance_s {
int width, int height, int d_width, int d_height,
unsigned int flags, unsigned int outfmt);
int (*control)(struct vf_instance_s* vf,
- int request, void* data);
+ int request, void* data, ...);
int (*query_format)(struct vf_instance_s* vf,
unsigned int fmt);
void (*get_image)(struct vf_instance_s* vf,
@@ -49,7 +49,7 @@ typedef struct vf_instance_s {
#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) */
-
+#define VFCTRL_GET_EQUALIZER 8 /* gset color options (brightness,contrast etc) */
#define VFCTRL_DRAW_OSD 7
#include "vfcap.h"