summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-01-10 19:38:38 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-01-10 19:38:38 +0000
commitea5d196c7bf6aad50c875841b9369bb192b8fa06 (patch)
tree6518a985331dfdc1b56d55b919b526866cc77357
parentcfdbbc49147aa48b9e1e369211923b6c5f1f5421 (diff)
downloadrockbox-ea5d196c7bf6aad50c875841b9369bb192b8fa06.tar.gz
rockbox-ea5d196c7bf6aad50c875841b9369bb192b8fa06.zip
Fully clone the gray_show(false) procedure without the forced lcd update.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16048 a1c6a512-1295-4272-9138-f99709370657
-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)