[vlc-commits] android: remove stray code
Rémi Denis-Courmont
git at videolan.org
Sun Dec 2 19:51:14 CET 2018
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Dec 2 20:49:55 2018 +0200| [ac3e3e728f6853d657f83b609d1a74172997a0d3] | committer: Rémi Denis-Courmont
android: remove stray code
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ac3e3e728f6853d657f83b609d1a74172997a0d3
---
modules/video_output/android/window.c | 13 -------------
1 file changed, 13 deletions(-)
diff --git a/modules/video_output/android/window.c b/modules/video_output/android/window.c
index f20a41502a..602c8204b5 100644
--- a/modules/video_output/android/window.c
+++ b/modules/video_output/android/window.c
@@ -39,7 +39,6 @@
static int Open(vout_window_t *, const vout_window_cfg_t *);
static void Close(vout_window_t *);
-static int Control(vout_window_t *, int, va_list ap);
/*
* Module descriptor
@@ -78,7 +77,6 @@ static void OnNewMouseCoords(vout_window_t *wnd,
}
static const struct vout_window_operations ops = {
- .control = Control,
.destroy = Close,
};
@@ -107,14 +105,3 @@ static void Close(vout_window_t *wnd)
{
AWindowHandler_destroy(wnd->handle.anativewindow);
}
-
-
-/**
- * Window control.
- */
-static int Control(vout_window_t *wnd, int cmd, va_list ap)
-{
- (void) ap;
- msg_Err (wnd, "request %d not implemented", cmd);
- return VLC_EGENERIC;
-}
More information about the vlc-commits
mailing list