Commit 12256be1 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Export input_resource_TerminateVout

LibVLC needs it.
parent f90eeab1
...@@ -667,4 +667,9 @@ VLC_EXPORT( input_resource_t *, input_resource_New, ( vlc_object_t * ) ); ...@@ -667,4 +667,9 @@ VLC_EXPORT( input_resource_t *, input_resource_New, ( vlc_object_t * ) );
*/ */
VLC_EXPORT(void, input_resource_Delete, ( input_resource_t * ) ); VLC_EXPORT(void, input_resource_Delete, ( input_resource_t * ) );
/**
* Forcefully destroys the video output (e.g. when the playlist is stopped).
*/
VLC_EXPORT(void, input_resource_TerminateVout, ( input_resource_t * ) );
#endif #endif
...@@ -51,11 +51,6 @@ input_stats_t *stats_NewInputStats( input_thread_t *p_input ); ...@@ -51,11 +51,6 @@ input_stats_t *stats_NewInputStats( input_thread_t *p_input );
*/ */
void input_resource_TerminateSout( input_resource_t *p_resource ); void input_resource_TerminateSout( input_resource_t *p_resource );
/**
* This function deletes the current vout in the resources.
*/
void input_resource_TerminateVout( input_resource_t *p_resource );
/** /**
* This function return true if there is at least one vout in the resources. * This function return true if there is at least one vout in the resources.
* *
......
...@@ -220,6 +220,7 @@ input_item_WriteMeta ...@@ -220,6 +220,7 @@ input_item_WriteMeta
input_Read input_Read
input_resource_New input_resource_New
input_resource_Delete input_resource_Delete
input_resource_TerminateVout
input_SplitMRL input_SplitMRL
input_Start input_Start
input_Stop input_Stop
......
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