diff options
| author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-16 10:34:40 +0000 |
|---|---|---|
| committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-16 10:34:40 +0000 |
| commit | 23d9812273d9c74af72ccdc3aa4cfea971f220a4 (patch) | |
| tree | 8e60c3a2a41879f8b2a52516fa416b3ab906e239 /apps/plugins/mpegplayer/mpeg_settings.c | |
| parent | 35677cbc54bbe400ebbff59b489dda7ca7f04916 (diff) | |
| download | rockbox-23d9812273d9c74af72ccdc3aa4cfea971f220a4.zip rockbox-23d9812273d9c74af72ccdc3aa4cfea971f220a4.tar.gz rockbox-23d9812273d9c74af72ccdc3aa4cfea971f220a4.tar.bz2 rockbox-23d9812273d9c74af72ccdc3aa4cfea971f220a4.tar.xz | |
loader-initialized global plugin API:
struct plugin_api *rb is declared in PLUGIN_HEADER, and pointed to by
__header.api
the loader uses this pointer to initialize rb before calling entry_point
entry_point is no longer passed a pointer to the plugin API
all plugins, and pluginlib functions, are modified to refer to the
global rb
pluginlib functions which only served to copy the API pointer are
removed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19776 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer/mpeg_settings.c')
| -rw-r--r-- | apps/plugins/mpegplayer/mpeg_settings.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_settings.c b/apps/plugins/mpegplayer/mpeg_settings.c index cf7af09..3e83f8b 100644 --- a/apps/plugins/mpegplayer/mpeg_settings.c +++ b/apps/plugins/mpegplayer/mpeg_settings.c @@ -308,11 +308,11 @@ void mpeg_backlight_update_brightness(int value) if (value >= 0) { value += MIN_BRIGHTNESS_SETTING; - backlight_brightness_set(rb, value); + backlight_brightness_set(value); } else { - backlight_brightness_use_setting(rb); + backlight_brightness_use_setting(); } } @@ -820,7 +820,7 @@ static int show_start_menu(uint32_t duration) format_menu_item(&items[MPEG_START_RESUME], sizeof (resume_str), "Resume at: %s", hms_str); - menu_id = menu_init(rb, items, ARRAYLEN(items), + menu_id = menu_init(items, ARRAYLEN(items), mpeg_menu_sysevent_callback, NULL, NULL, NULL); rb->button_clear_queue(); @@ -925,7 +925,7 @@ static void display_options(void) #endif }; - menu_id = menu_init(rb, items, ARRAYLEN(items), + menu_id = menu_init(items, ARRAYLEN(items), mpeg_menu_sysevent_callback, NULL, NULL, NULL); rb->button_clear_queue(); @@ -1007,7 +1007,7 @@ static void audio_options(void) { "Dithering", NULL }, }; - menu_id = menu_init(rb, items, ARRAYLEN(items), + menu_id = menu_init(items, ARRAYLEN(items), mpeg_menu_sysevent_callback, NULL, NULL, NULL); rb->button_clear_queue(); @@ -1115,7 +1115,7 @@ int mpeg_menu(unsigned flags) if (flags & MPEG_MENU_HIDE_QUIT_ITEM) item_count--; - menu_id = menu_init(rb, items, item_count, + menu_id = menu_init(items, item_count, mpeg_menu_sysevent_callback, NULL, NULL, NULL); rb->button_clear_queue(); @@ -1189,8 +1189,6 @@ void init_settings(const char* filename) settings.equalizer = false; settings.dithering = false; - configfile_init(rb); - if (configfile_load(SETTINGS_FILENAME, config, sizeof(config)/sizeof(*config), SETTINGS_MIN_VERSION) < 0) |