diff options
author | Uoti Urpala <uau@symbol.nonexistent.invalid> | 2008-04-02 19:38:34 +0300 |
---|---|---|
committer | Uoti Urpala <uau@symbol.nonexistent.invalid> | 2008-04-23 13:41:03 +0300 |
commit | de56d2d9f5b3c5b11c73fba0d01323197d009e04 (patch) | |
tree | b4bf2e9d6da4bb881d1913458a880d34a9da840b /libvo/vo_xvmc.c | |
parent | dbe080ec9f05cd216f4217c81409a37d3f4db969 (diff) | |
download | mpv-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/vo_xvmc.c')
-rw-r--r-- | libvo/vo_xvmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_xvmc.c b/libvo/vo_xvmc.c index efa4e5dd0d..d2875104bd 100644 --- a/libvo/vo_xvmc.c +++ b/libvo/vo_xvmc.c @@ -1355,7 +1355,7 @@ assert(rndr->next_free_data_block_num == 0); return VO_TRUE; } -static int control(uint32_t request, void *data, ... ) +static int control(uint32_t request, void *data) { switch (request){ case VOCTRL_GET_DEINTERLACE: |