diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-05-05 22:59:36 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-05-05 22:59:36 +0200 |
commit | d2131a4d4264a86a98722e9da123dceb43063dbf (patch) | |
tree | 4420c9be44039f17de8890aa1e34c6dd0fd1d7f5 /include | |
parent | 320cc34222fef16354967fedd031a96bc8cf72d2 (diff) | |
download | xine-lib-d2131a4d4264a86a98722e9da123dceb43063dbf.tar.gz xine-lib-d2131a4d4264a86a98722e9da123dceb43063dbf.tar.bz2 |
Replace load_plugins.h with a more generic xine_private.h, move the functions that are now hidden from xine_internal.h to xine_private.h.
Diffstat (limited to 'include')
-rw-r--r-- | include/xine/xine_internal.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/include/xine/xine_internal.h b/include/xine/xine_internal.h index 40c1b75ed..eecae9c30 100644 --- a/include/xine/xine_internal.h +++ b/include/xine/xine_internal.h @@ -377,26 +377,6 @@ int _x_message(xine_stream_t *stream, int type, ...) XINE_SENTINEL XINE_PROTECTE void _x_flush_events_queues (xine_stream_t *stream) XINE_PROTECTED; - -/* find and instantiate input and demux plugins */ - -input_plugin_t *_x_find_input_plugin (xine_stream_t *stream, const char *mrl); -demux_plugin_t *_x_find_demux_plugin (xine_stream_t *stream, input_plugin_t *input); -demux_plugin_t *_x_find_demux_plugin_by_name (xine_stream_t *stream, const char *name, input_plugin_t *input); -demux_plugin_t *_x_find_demux_plugin_last_probe(xine_stream_t *stream, const char *last_demux_name, input_plugin_t *input); -input_plugin_t *_x_rip_plugin_get_instance (xine_stream_t *stream, const char *filename); -input_plugin_t *_x_cache_plugin_get_instance (xine_stream_t *stream); -void _x_free_input_plugin (xine_stream_t *stream, input_plugin_t *input); -void _x_free_demux_plugin (xine_stream_t *stream, demux_plugin_t *demux); - -/* create decoder fifos and threads */ - -int _x_video_decoder_init (xine_stream_t *stream); -void _x_video_decoder_shutdown (xine_stream_t *stream); - -int _x_audio_decoder_init (xine_stream_t *stream); -void _x_audio_decoder_shutdown (xine_stream_t *stream); - /* extra_info operations */ void _x_extra_info_reset( extra_info_t *extra_info ) XINE_PROTECTED; |