1
0
Fork 0
forked from len0rd/rockbox

disable on archos units till the events are implemented

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7003 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michiel Van Der Kolk 2005-07-03 22:33:04 +00:00
parent ca20abf66a
commit 75d16eeb5a

View file

@ -376,9 +376,13 @@ int rundb_init(void)
}
rundb_initialized = 1;
/* hooks disabled for archos, rendering the runtime database not working,
* re enable when these callbacks are implemented in mpeg.c */
#if CONFIG_HWCODEC == MASNONE
audio_set_track_buffer_event(&rundb_buffer_track);
audio_set_track_changed_event(&rundb_track_change);
audio_set_track_unbuffer_event(&rundb_unbuffer_track);
#endif
rundbsize=lseek(rundb_fd,0,SEEK_END);
return 0;
#endif