diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-06-14 13:43:11 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-06-14 13:43:11 +0000 |
commit | adf8bd9cda8ab5b6a644dc537943749a1c295d86 (patch) | |
tree | 2301701c243d9a2b0e06020c8096dea9b66370c8 | |
parent | 09bdd7a2270c231128c622fe7ef3a2a5016a67a4 (diff) | |
download | xine-lib-adf8bd9cda8ab5b6a644dc537943749a1c295d86.tar.gz xine-lib-adf8bd9cda8ab5b6a644dc537943749a1c295d86.tar.bz2 |
decrease the prio of demux_mpeg to try mpeg_pes first
(it only handles very few files by content detection but is cleaner and
has more features)
CVS patchset: 6688
CVS date: 2004/06/14 13:43:11
-rw-r--r-- | src/demuxers/demux_mpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_mpeg.c b/src/demuxers/demux_mpeg.c index c4f057a56..9ecbbce0c 100644 --- a/src/demuxers/demux_mpeg.c +++ b/src/demuxers/demux_mpeg.c @@ -19,7 +19,7 @@ */ /* - * $Id: demux_mpeg.c,v 1.142 2004/06/13 21:28:53 miguelfreitas Exp $ + * $Id: demux_mpeg.c,v 1.143 2004/06/14 13:43:11 mroi Exp $ * * demultiplexer for mpeg 1/2 program streams * reads streams of variable blocksizes @@ -1235,7 +1235,7 @@ static void *init_plugin (xine_t *xine, void *data) { * exported plugin catalog entry */ demuxer_info_t demux_info_mpeg = { - 10 /* priority */ + 9 /* priority */ }; plugin_info_t xine_plugin_info[] = { |