Commit 87ffb90b authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

Revert "libvlc: Export libvlc_media_player_get_input_thread()."

This reverts commit 714ef56a.

By popular demand.
parent 6dcfe3c4
......@@ -502,15 +502,6 @@ VLC_PUBLIC_API void libvlc_media_player_next_frame( libvlc_media_player_t *p_
libvlc_exception_t *p_e );
/**
* Access to libvlc core internal structure.
*
* This enables nasty hack. Use of this method is discouraged.
*
* \param player the libvlc_media_player_t instance
* \return a libvlccore input_thread_t or NULL. The actual behaviour is not specified.
*/
VLC_PUBLIC_API struct input_thread_t *libvlc_media_player_get_input_thread( libvlc_media_player_t *player );
/**
* Release (free) libvlc_track_description_t
......
......@@ -1223,15 +1223,3 @@ void libvlc_media_player_next_frame( libvlc_media_player_t *p_mi, libvlc_excepti
libvlc_printerr( "No active input" );
}
}
/**************************************************************************
* get_input_thread (Public API version)
**************************************************************************/
struct input_thread_t *libvlc_media_player_get_input_thread( libvlc_media_player_t *player )
{
libvlc_exception_t e;
libvlc_exception_init(&e);
input_thread_t *input = libvlc_get_input_thread(player, &e);
clear_if_needed(&e);
return input;
}
......@@ -133,7 +133,6 @@ libvlc_media_player_get_chapter_count
libvlc_media_player_get_chapter_count_for_title
libvlc_media_player_get_fps
libvlc_media_player_get_hwnd
libvlc_media_player_get_input_thread
libvlc_media_player_get_length
libvlc_media_player_get_media
libvlc_media_player_get_nsobject
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment