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

Export input_resource_TerminateVout

LibVLC needs it.
(cherry picked from commit 12256be1f21c0eeb5aadb69397c50063ba38a088)
parent cf216a65
...@@ -668,4 +668,9 @@ VLC_EXPORT(input_resource_t *, input_DetachResource, ( input_thread_t * ) ); ...@@ -668,4 +668,9 @@ VLC_EXPORT(input_resource_t *, input_DetachResource, ( input_thread_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.
* *
......
...@@ -219,6 +219,7 @@ input_item_SetURI ...@@ -219,6 +219,7 @@ input_item_SetURI
input_item_WriteMeta input_item_WriteMeta
input_Read input_Read
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