summaryrefslogtreecommitdiff
path: root/src/xine-engine/xine_internal.h
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-02-14 00:35:29 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-02-14 00:35:29 +0000
commitdd7b5d84dddb0454525832384f6d81ebbe98edf8 (patch)
tree2f3fbf82ef8070021f258cb332ab64e6b130d395 /src/xine-engine/xine_internal.h
parent728634712f368899a599629aad9521b3ada874cf (diff)
downloadxine-lib-dd7b5d84dddb0454525832384f6d81ebbe98edf8.tar.gz
xine-lib-dd7b5d84dddb0454525832384f6d81ebbe98edf8.tar.bz2
introduce a new mrl key, example "stream.ext#lastdemuxprobe:demux_id"
- xine will try to open stream.ext using all demuxers _except_ demux_id. - then it will be finally probed by content for demux_id. why? this is the mechanism to catch buggy content probing demuxers. it's is not intended for end users, but rather to make possible some kind of script testing of xine-lib and QA before releases. CVS patchset: 4149 CVS date: 2003/02/14 00:35:29
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r--src/xine-engine/xine_internal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h
index 2ca6a26b9..b4c786c1c 100644
--- a/src/xine-engine/xine_internal.h
+++ b/src/xine-engine/xine_internal.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_internal.h,v 1.126 2003/01/13 16:26:48 mroi Exp $
+ * $Id: xine_internal.h,v 1.127 2003/02/14 00:35:30 miguelfreitas Exp $
*
*/
@@ -264,6 +264,7 @@ void xine_handle_stream_end (xine_stream_t *stream, int non_user);
input_plugin_t *find_input_plugin (xine_stream_t *stream, const char *mrl);
demux_plugin_t *find_demux_plugin (xine_stream_t *stream, input_plugin_t *input);
demux_plugin_t *find_demux_plugin_by_name (xine_stream_t *stream, const char *name, input_plugin_t *input);
+demux_plugin_t *find_demux_plugin_last_probe(xine_stream_t *stream, const char *last_demux_name, input_plugin_t *input);
/* create decoder fifos and threads */