summaryrefslogtreecommitdiff
path: root/src/xine-engine/xine_plugin.h
diff options
context:
space:
mode:
authorThibaut Mattern <tmattern@users.sourceforge.net>2004-05-16 17:58:16 +0000
committerThibaut Mattern <tmattern@users.sourceforge.net>2004-05-16 17:58:16 +0000
commitc3f652ce281a3276a0930e9e0a3db4a13d5ed12e (patch)
treef917e91a2f0f6d15d9c2564b56735c018f55b772 /src/xine-engine/xine_plugin.h
parent7464c31461168cf48dc1de6d6b8b61200ff272d3 (diff)
downloadxine-lib-c3f652ce281a3276a0930e9e0a3db4a13d5ed12e.tar.gz
xine-lib-c3f652ce281a3276a0930e9e0a3db4a13d5ed12e.tar.bz2
Priority support for demuxer and input plugins (engine part).
CVS patchset: 6552 CVS date: 2004/05/16 17:58:16
Diffstat (limited to 'src/xine-engine/xine_plugin.h')
-rw-r--r--src/xine-engine/xine_plugin.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/xine-engine/xine_plugin.h b/src/xine-engine/xine_plugin.h
index fca4c8aed..87662595f 100644
--- a/src/xine-engine/xine_plugin.h
+++ b/src/xine-engine/xine_plugin.h
@@ -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_plugin.h,v 1.12 2003/12/09 00:02:38 f1rmb Exp $
+ * $Id: xine_plugin.h,v 1.13 2004/05/16 17:58:16 tmattern Exp $
*
* generic plugin definitions
*
@@ -75,4 +75,14 @@ typedef struct {
uint32_t type; /* type of the post plugin, use one of XINE_POST_TYPE_* */
} post_info_t;
+/* special info for a demuxer plugin */
+typedef struct {
+ int priority;
+} demuxer_info_t;
+
+/* special info for an input plugin */
+typedef struct {
+ int priority;
+} input_info_t;
+
#endif