mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 10:37:38 -04:00
Greyscale mpegplayer: * Use uncached greyscale buffers on dual core targets, removing the need for special cache handling. * Make the OSD properly disappear when viewing a widescreen or small video.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16052 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
59f0e7023c
commit
753b65737f
7 changed files with 9 additions and 96 deletions
|
@ -1032,28 +1032,7 @@ intptr_t parser_send_video_msg(long id, intptr_t data)
|
|||
break;
|
||||
}
|
||||
|
||||
switch (id)
|
||||
{
|
||||
#ifdef GRAY_CACHE_MAINT
|
||||
/* This must be done internally here or refresh may be delayed far
|
||||
* too long */
|
||||
case VIDEO_DISPLAY_SHOW:
|
||||
case VIDEO_PRINT_FRAME:
|
||||
case VIDEO_PRINT_THUMBNAIL:
|
||||
stream_gray_pause(true);
|
||||
|
||||
GRAY_INVALIDATE_ICACHE();
|
||||
|
||||
retval = str_send_msg(&video_str, id, data);
|
||||
|
||||
GRAY_VIDEO_FLUSH_ICACHE();
|
||||
|
||||
stream_gray_pause(false);
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
retval = str_send_msg(&video_str, id, data);
|
||||
}
|
||||
retval = str_send_msg(&video_str, id, data);
|
||||
}
|
||||
|
||||
return retval;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue