diff options
author | James Stembridge <jstembridge@users.sourceforge.net> | 2005-05-28 09:41:23 +0000 |
---|---|---|
committer | James Stembridge <jstembridge@users.sourceforge.net> | 2005-05-28 09:41:23 +0000 |
commit | 4ffc2ec2dba7ca1c0e4f880fbf2570861165082e (patch) | |
tree | e07def6214405562f3ed00d889d498cf160ebffe /src | |
parent | a005324bfbc219240853af006f369aabee6a7d53 (diff) | |
download | xine-lib-4ffc2ec2dba7ca1c0e4f880fbf2570861165082e.tar.gz xine-lib-4ffc2ec2dba7ca1c0e4f880fbf2570861165082e.tar.bz2 |
Give DTS demuxer higher priority than CDDA and WAV, allowing it to detect by content for DTS audio cds and DTS
wav files
CVS patchset: 7577
CVS date: 2005/05/28 09:41:23
Diffstat (limited to 'src')
-rw-r--r-- | src/demuxers/group_audio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/demuxers/group_audio.c b/src/demuxers/group_audio.c index af5a7ce41..2fb7dbfe5 100644 --- a/src/demuxers/group_audio.c +++ b/src/demuxers/group_audio.c @@ -19,7 +19,7 @@ * * This file contains plugin entries for several demuxers used in games * - * $Id: group_audio.c,v 1.18 2005/05/26 22:09:23 jstembridge Exp $ + * $Id: group_audio.c,v 1.19 2005/05/28 09:41:23 jstembridge Exp $ */ #ifdef HAVE_CONFIG_H @@ -52,11 +52,11 @@ demuxer_info_t demux_info_aiff = { }; demuxer_info_t demux_info_cdda = { - 10 /* priority */ + 6 /* priority */ }; demuxer_info_t demux_info_dts = { - 0 /* priority */ + 8 /* priority */ }; demuxer_info_t demux_info_flac = { @@ -92,7 +92,7 @@ demuxer_info_t demux_info_vox = { }; demuxer_info_t demux_info_wav = { - 10 /* priority */ + 6 /* priority */ }; #ifdef HAVE_MODPLUG |