diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2005-09-11 22:07:48 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2005-09-11 22:07:48 +0000 |
commit | 52988af60fda1094a8a5a1bc0349bdcbb3e7d0d1 (patch) | |
tree | 961aae41b31fd342cc9397968c4719be90712cfc /src/xine-engine/load_plugins.c | |
parent | 9dbffde07fe79acb409f42393c7e1171cec7c220 (diff) | |
download | xine-lib-52988af60fda1094a8a5a1bc0349bdcbb3e7d0d1.tar.gz xine-lib-52988af60fda1094a8a5a1bc0349bdcbb3e7d0d1.tar.bz2 |
make Alien happier ;-)
audio can be heard with non-1X speeds if audio.synchronization.slow_fast_audio is set
CVS patchset: 7726
CVS date: 2005/09/11 22:07:48
Diffstat (limited to 'src/xine-engine/load_plugins.c')
-rw-r--r-- | src/xine-engine/load_plugins.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 43c2d9da3..d7005b733 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.c @@ -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: load_plugins.c,v 1.214 2005/09/11 00:11:09 miguelfreitas Exp $ + * $Id: load_plugins.c,v 1.215 2005/09/11 22:07:48 miguelfreitas Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -180,7 +180,7 @@ static void map_decoder_list (xine_t *this, node = xine_list_first_content (decoder_list); while (node) { - int *type = ((decoder_info_t *)node->info->special_info)->supported_types; + uint32_t *type = ((decoder_info_t *)node->info->special_info)->supported_types; int priority = get_decoder_priority(this, node); lprintf ("mapping decoder %s\n", node->info->id); |