Commit a6e200e9 authored by Rémi Duraffort's avatar Rémi Duraffort

add libvlc_media_player_(get|set)_agl to the hearder and symbole list.

parent cd97914e
...@@ -555,6 +555,22 @@ VLC_PUBLIC_API void libvlc_media_player_pause ( libvlc_media_player_t *, libvlc_ ...@@ -555,6 +555,22 @@ VLC_PUBLIC_API void libvlc_media_player_pause ( libvlc_media_player_t *, libvlc_
*/ */
VLC_PUBLIC_API void libvlc_media_player_stop ( libvlc_media_player_t *, libvlc_exception_t * ); VLC_PUBLIC_API void libvlc_media_player_stop ( libvlc_media_player_t *, libvlc_exception_t * );
/**
* Set the agl handler where the media player should render its video output.
*
* \param p_mi the Media Player
* \param drawable the agl handler
* \param p_e an initialized exception pointer
*/
VLC_PUBLIC_API void libvlc_media_player_set_agl ( libvlc_media_player_t *p_mi, uint32_t drawable, libvlc_exception_t *p_e );
/**
* Get the agl handler previously set with libvlc_media_player_set_agl().
*
* \return the agl handler or 0 if none where set
*/
VLC_PUBLIC_API uint32_t libvlc_media_player_get_agl ( libvlc_media_player_t *p_mi );
/** /**
* Set an X Window System drawable where the media player should render its * Set an X Window System drawable where the media player should render its
* video output. If LibVLC was built without X11 output support, then this has * video output. If LibVLC was built without X11 output support, then this has
......
...@@ -121,6 +121,7 @@ libvlc_media_new_from_input_item ...@@ -121,6 +121,7 @@ libvlc_media_new_from_input_item
libvlc_media_player_can_pause libvlc_media_player_can_pause
libvlc_media_player_destroy libvlc_media_player_destroy
libvlc_media_player_event_manager libvlc_media_player_event_manager
libvlc_media_player_get_agl
libvlc_media_player_get_chapter libvlc_media_player_get_chapter
libvlc_media_player_get_chapter_count libvlc_media_player_get_chapter_count
libvlc_media_player_get_chapter_count_for_title libvlc_media_player_get_chapter_count_for_title
...@@ -148,6 +149,7 @@ libvlc_media_player_play ...@@ -148,6 +149,7 @@ libvlc_media_player_play
libvlc_media_player_previous_chapter libvlc_media_player_previous_chapter
libvlc_media_player_release libvlc_media_player_release
libvlc_media_player_retain libvlc_media_player_retain
libvlc_media_player_set_agl
libvlc_media_player_set_chapter libvlc_media_player_set_chapter
libvlc_media_player_set_drawable libvlc_media_player_set_drawable
libvlc_media_player_set_hwnd libvlc_media_player_set_hwnd
......
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