diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-03 02:06:09 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-03 02:06:09 +0000 |
commit | 6405b0b5dcf375b3369285ae0bbf457d58fe13c2 (patch) | |
tree | a6734692515cb5d96e3e7c71615ca2465487478c | |
parent | 5ff2be1b878d481cbfcce5f41a5fb679c45824ec (diff) | |
download | xine-lib-6405b0b5dcf375b3369285ae0bbf457d58fe13c2.tar.gz xine-lib-6405b0b5dcf375b3369285ae0bbf457d58fe13c2.tar.bz2 |
Reduce priority of aac demuxer, so that it doesn't crash when playing online streams that are mp3s (as well as other nasty things that happened before).
CVS patchset: 8638
CVS date: 2007/03/03 02:06:09
-rw-r--r-- | src/demuxers/group_audio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/group_audio.c b/src/demuxers/group_audio.c index bd8a291bb..b8f0e1ed4 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.25 2006/12/26 16:59:55 dgp85 Exp $ + * $Id: group_audio.c,v 1.26 2007/03/03 02:06:09 dgp85 Exp $ */ #ifdef HAVE_CONFIG_H @@ -36,7 +36,7 @@ */ static const demuxer_info_t demux_info_aac = { - 0 /* priority */ + -1 /* priority */ }; static const demuxer_info_t demux_info_ac3 = { |