summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-11-02 23:05:55 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-11-02 23:05:55 +0000
commite68c06c404adf0da953d71d5ff11c7fd71f80c1c (patch)
tree61a1d2bf3257948642efae9d6c859b4e17c56c4b /include
parent286fe9526355b2ac06890478edc955129d11742e (diff)
downloadxine-lib-e68c06c404adf0da953d71d5ff11c7fd71f80c1c.tar.gz
xine-lib-e68c06c404adf0da953d71d5ff11c7fd71f80c1c.tar.bz2
add some missing plugins listing functions.
CVS patchset: 5680 CVS date: 2003/11/02 23:05:55
Diffstat (limited to 'include')
-rw-r--r--include/xine.h.in15
1 files changed, 14 insertions, 1 deletions
diff --git a/include/xine.h.in b/include/xine.h.in
index c31b0506a..4c97ed829 100644
--- a/include/xine.h.in
+++ b/include/xine.h.in
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine.h.in,v 1.102 2003/11/01 18:32:48 miguelfreitas Exp $
+ * $Id: xine.h.in,v 1.103 2003/11/02 23:05:55 f1rmb Exp $
*
* public xine-lib (libxine) interface and documentation
*
@@ -950,6 +950,19 @@ const char *xine_get_input_plugin_description (xine_t *self,
const char *const *xine_list_audio_output_plugins (xine_t *self) ;
const char *const *xine_list_video_output_plugins (xine_t *self) ;
+/* get list of available demultiplexor plugins */
+const char *const *xine_list_demuxer_plugins(xine_t *self);
+
+/* get list of available input plugins */
+const char *const *xine_list_input_plugins(xine_t *self);
+
+/* get list of available subpicture plugins */
+const char *const *xine_list_spu_plugins(xine_t *self);
+
+/* get list of available audio and video decoder plugins */
+const char *const *xine_list_audio_decoder_plugins(xine_t *self);
+const char *const *xine_list_video_decoder_plugins(xine_t *self);
+
/*********************************************************************
* visual specific gui <-> xine engine communication *