summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/xine.h.in6
-rw-r--r--src/xine-engine/xine_interface.c9
2 files changed, 0 insertions, 15 deletions
diff --git a/include/xine.h.in b/include/xine.h.in
index 1d54035fe..87ca001ba 100644
--- a/include/xine.h.in
+++ b/include/xine.h.in
@@ -1068,12 +1068,6 @@ void xine_plugins_garbage_collector(xine_t *self) XINE_PROTECTED;
* visual specific gui <-> xine engine communication *
*********************************************************************/
-#ifndef XINE_DISABLE_DEPRECATED_FEATURES
-/* talk to video output driver - old method */
-int xine_gui_send_vo_data (xine_stream_t *self,
- int type, void *data) XINE_PROTECTED;
-#endif
-
/* new (preferred) method to talk to video driver. */
int xine_port_send_gui_data (xine_video_port_t *vo,
int type, void *data) XINE_PROTECTED;
diff --git a/src/xine-engine/xine_interface.c b/src/xine-engine/xine_interface.c
index 50d8796e8..7913a18d6 100644
--- a/src/xine-engine/xine_interface.c
+++ b/src/xine-engine/xine_interface.c
@@ -322,15 +322,6 @@ void xine_config_reset (xine_t *this) {
pthread_mutex_unlock(&config->config_lock);
}
-#ifndef XINE_DISABLE_DEPRECATED_FEATURES
-int xine_gui_send_vo_data (xine_stream_t *stream,
- int type, void *data) {
-
- return stream->video_driver->gui_data_exchange (stream->video_driver,
- type, data);
-}
-#endif
-
int xine_port_send_gui_data (xine_video_port_t *vo,
int type, void *data) {