summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer')
-rw-r--r--apps/plugins/mpegplayer/mpeg_settings.c5
-rw-r--r--apps/plugins/mpegplayer/mpegplayer.c5
2 files changed, 6 insertions, 4 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_settings.c b/apps/plugins/mpegplayer/mpeg_settings.c
index bcef4c66bf..b5c9c6bbc8 100644
--- a/apps/plugins/mpegplayer/mpeg_settings.c
+++ b/apps/plugins/mpegplayer/mpeg_settings.c
@@ -677,8 +677,9 @@ static uint32_t increment_time(uint32_t val, int32_t amount, uint32_t range)
677} 677}
678 678
679#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) 679#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
680static void get_start_time_lcd_enable_hook(void *param) 680static void get_start_time_lcd_enable_hook(unsigned short id, void *param)
681{ 681{
682 (void)id;
682 (void)param; 683 (void)param;
683 rb->queue_post(rb->button_queue, LCD_ENABLE_EVENT_0, 0); 684 rb->queue_post(rb->button_queue, LCD_ENABLE_EVENT_0, 0);
684} 685}
@@ -698,7 +699,7 @@ static int get_start_time(uint32_t duration)
698 mylcd_update(); 699 mylcd_update();
699 700
700#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) 701#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
701 rb->add_event(LCD_EVENT_ACTIVATION, false, get_start_time_lcd_enable_hook); 702 rb->add_event(LCD_EVENT_ACTIVATION, get_start_time_lcd_enable_hook);
702#endif 703#endif
703 704
704 draw_slider(0, 100, &rc_bound); 705 draw_slider(0, 100, &rc_bound);
diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c
index 928c48ab11..467c961912 100644
--- a/apps/plugins/mpegplayer/mpegplayer.c
+++ b/apps/plugins/mpegplayer/mpegplayer.c
@@ -1026,8 +1026,9 @@ static void fps_init(void)
1026 1026
1027#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) 1027#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
1028/* So we can refresh the overlay */ 1028/* So we can refresh the overlay */
1029static void osd_lcd_enable_hook(void* param) 1029static void osd_lcd_enable_hook(unsigned short id, void* param)
1030{ 1030{
1031 (void)id;
1031 (void)param; 1032 (void)param;
1032 rb->queue_post(rb->button_queue, LCD_ENABLE_EVENT_1, 0); 1033 rb->queue_post(rb->button_queue, LCD_ENABLE_EVENT_1, 0);
1033} 1034}
@@ -1043,7 +1044,7 @@ static void osd_backlight_on_video_mode(bool video_on)
1043#endif 1044#endif
1044 } else { 1045 } else {
1045#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) 1046#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
1046 rb->add_event(LCD_EVENT_ACTIVATION, false, osd_lcd_enable_hook); 1047 rb->add_event(LCD_EVENT_ACTIVATION, osd_lcd_enable_hook);
1047#endif 1048#endif
1048 /* Revert to user's backlight settings */ 1049 /* Revert to user's backlight settings */
1049 backlight_use_settings(); 1050 backlight_use_settings();