diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-10-31 16:58:12 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-10-31 16:58:12 +0000 |
commit | 8434b64bf82e3f111ca461a9789707558dff5dd3 (patch) | |
tree | c03b8c5961715b410e0d55d1b116c39a797c45f5 /include | |
parent | a3608a5b290a41d0d9614e2316586c220fa7a5e9 (diff) | |
download | xine-lib-8434b64bf82e3f111ca461a9789707558dff5dd3.tar.gz xine-lib-8434b64bf82e3f111ca461a9789707558dff5dd3.tar.bz2 |
new syntax for MRLs
basic changes:
- MRLs are a subset of URIs
- important new delimiter is #
- everything before the # will be passed to the input plugin
- after the # you can add several ;-separated stream parameters:
novideo - video will be ignored
noaudio - audio will be ignored
nospu - spus will be ignored
demux:... - specify the demuxer to use (e.g. demux:mpeg_block)
entry:value - assign any config entry a new value
CVS patchset: 3112
CVS date: 2002/10/31 16:58:12
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index f48b4d508..1a84ff8bb 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.30 2002/10/28 03:24:42 miguelfreitas Exp $ + * $Id: xine.h.in,v 1.31 2002/10/31 16:58:13 mroi Exp $ * * public xine-lib (libxine) interface and documentation * @@ -293,6 +293,7 @@ void xine_register_log_cb (xine_t *self, xine_log_cb_t cb, #define XINE_ERROR_NO_INPUT_PLUGIN 1 #define XINE_ERROR_NO_DEMUX_PLUGIN 2 #define XINE_ERROR_DEMUX_FAILED 3 +#define XINE_ERROR_MALFORMED_MRL 4 /* * xine engine parameters @@ -369,6 +370,9 @@ void xine_register_log_cb (xine_t *self, xine_log_cb_t cb, #define XINE_STREAM_INFO_HAS_CHAPTERS 17 #define XINE_STREAM_INFO_HAS_VIDEO 18 #define XINE_STREAM_INFO_HAS_AUDIO 19 +#define XINE_STREAM_INFO_IGNORE_VIDEO 20 +#define XINE_STREAM_INFO_IGNORE_AUDIO 21 +#define XINE_STREAM_INFO_IGNORE_SPU 22 /* xine_get_meta_info */ |