summaryrefslogtreecommitdiffstats
path: root/libvo/video_out_internal.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-02 19:38:34 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-23 13:41:03 +0300
commitde56d2d9f5b3c5b11c73fba0d01323197d009e04 (patch)
treeb4bf2e9d6da4bb881d1913458a880d34a9da840b /libvo/video_out_internal.h
parentdbe080ec9f05cd216f4217c81409a37d3f4db969 (diff)
downloadmpv-de56d2d9f5b3c5b11c73fba0d01323197d009e04.tar.bz2
mpv-de56d2d9f5b3c5b11c73fba0d01323197d009e04.tar.xz
Remove variable arguments from vo control() functions
No voctrl uses them any more, and using them would not be a good idea because it makes forwarding arguments to other functions harder.
Diffstat (limited to 'libvo/video_out_internal.h')
-rw-r--r--libvo/video_out_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/video_out_internal.h b/libvo/video_out_internal.h
index 83f38d5771..1bfb91d18c 100644
--- a/libvo/video_out_internal.h
+++ b/libvo/video_out_internal.h
@@ -30,7 +30,7 @@
#include "libmpcodecs/mp_image.h"
#include "geometry.h"
-static int control(uint32_t request, void *data, ...);
+static int control(uint32_t request, void *data);
static int config(uint32_t width, uint32_t height, uint32_t d_width,
uint32_t d_height, uint32_t fullscreen, char *title,
uint32_t format);