summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/stream_mgr.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/stream_mgr.c')
-rw-r--r--apps/plugins/mpegplayer/stream_mgr.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/stream_mgr.c b/apps/plugins/mpegplayer/stream_mgr.c
index 096ac4b0f9..2d4cfb2650 100644
--- a/apps/plugins/mpegplayer/stream_mgr.c
+++ b/apps/plugins/mpegplayer/stream_mgr.c
@@ -742,7 +742,11 @@ void stream_gray_pause(bool pause)
742 if (_grey_info.flags & _GREY_RUNNING) 742 if (_grey_info.flags & _GREY_RUNNING)
743 { 743 {
744 rb->timer_unregister(); 744 rb->timer_unregister();
745#if defined(CPU_PP) && defined(HAVE_ADJUSTABLE_CPU_FREQ)
746 rb->cpu_boost(false);
747#endif
745 _grey_info.flags &= ~_GREY_RUNNING; 748 _grey_info.flags &= ~_GREY_RUNNING;
749 rb->screen_dump_set_hook(NULL);
746 gray_paused = true; 750 gray_paused = true;
747 } 751 }
748 } 752 }
@@ -754,7 +758,7 @@ void stream_gray_pause(bool pause)
754} 758}
755#endif 759#endif
756 760
757#endif 761#endif /* !HAVE_LCD_COLOR */
758 762
759/* Display a thumbnail at the last seek point */ 763/* Display a thumbnail at the last seek point */
760bool stream_display_thumb(const struct vo_rect *rc) 764bool stream_display_thumb(const struct vo_rect *rc)