mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-12 14:42:31 -05:00
mpegplayer: Hopefully help some problems on dual core. Make USB mode exit correctly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13109 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7c4b786851
commit
dfa9f44034
2 changed files with 22 additions and 22 deletions
|
|
@ -40,7 +40,7 @@ bool mpeg_menu(void)
|
|||
{ "Skip frames", NULL },
|
||||
{ "Quit mpegplayer", NULL },
|
||||
};
|
||||
|
||||
|
||||
m = rb->menu_init(items, sizeof(items) / sizeof(*items),
|
||||
NULL, NULL, NULL, NULL);
|
||||
|
||||
|
|
@ -52,19 +52,21 @@ bool mpeg_menu(void)
|
|||
switch(result)
|
||||
{
|
||||
case 0: /* Show FPS */
|
||||
rb->set_option("Display FPS",&settings.showfps,INT,
|
||||
rb->set_option("Display FPS",&settings.showfps,INT,
|
||||
noyes, 2, NULL);
|
||||
break;
|
||||
case 1: /* Limit FPS */
|
||||
rb->set_option("Limit FPS",&settings.limitfps,INT,
|
||||
rb->set_option("Limit FPS",&settings.limitfps,INT,
|
||||
noyes, 2, NULL);
|
||||
break;
|
||||
case 2: /* Skip frames */
|
||||
rb->set_option("Skip frames",&settings.skipframes,INT,
|
||||
rb->set_option("Skip frames",&settings.skipframes,INT,
|
||||
noyes, 2, NULL);
|
||||
break;
|
||||
default:
|
||||
menu_quit=1;
|
||||
if (result == MENU_ATTACHED_USB)
|
||||
result = 3;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
@ -99,7 +101,7 @@ void init_settings(void)
|
|||
SETTINGS_VERSION);
|
||||
}
|
||||
|
||||
/* Keep a copy of the saved version of the settings - so we can check if
|
||||
/* Keep a copy of the saved version of the settings - so we can check if
|
||||
the settings have changed when we quit */
|
||||
old_settings = settings;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -929,7 +929,6 @@ static inline int32_t clip_sample(int32_t sample)
|
|||
return sample;
|
||||
}
|
||||
|
||||
static void audio_thread(void) __attribute__((noreturn));
|
||||
static void audio_thread(void)
|
||||
{
|
||||
uint8_t *mpabuf = mpa_buffer;
|
||||
|
|
@ -1197,12 +1196,10 @@ done:
|
|||
rb->sleep(HZ/4);
|
||||
}
|
||||
|
||||
/* Don't really terminate but just signal that it's ok for this thread
|
||||
to be killed */
|
||||
audiostatus = THREAD_TERMINATED;
|
||||
pcm_playback_stop();
|
||||
|
||||
while (1)
|
||||
rb->yield();
|
||||
audiostatus = THREAD_TERMINATED;
|
||||
rb->remove_thread(NULL);
|
||||
}
|
||||
|
||||
/* End of libmad stuff */
|
||||
|
|
@ -1744,20 +1741,21 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|||
#endif
|
||||
|
||||
/* Stop the threads and wait for them to terminate */
|
||||
if (audiothread_id != NULL)
|
||||
audiostatus = PLEASE_STOP;
|
||||
|
||||
if (videothread_id != NULL)
|
||||
if (videostatus != THREAD_TERMINATED)
|
||||
{
|
||||
videostatus = PLEASE_STOP;
|
||||
while (videostatus != THREAD_TERMINATED)
|
||||
rb->yield();
|
||||
}
|
||||
|
||||
while (audiostatus != THREAD_TERMINATED ||
|
||||
videostatus != THREAD_TERMINATED)
|
||||
rb->yield();
|
||||
if (audiostatus != THREAD_TERMINATED)
|
||||
{
|
||||
audiostatus = PLEASE_STOP;
|
||||
while (audiostatus != THREAD_TERMINATED)
|
||||
rb->yield();
|
||||
}
|
||||
|
||||
if (audiothread_id != NULL)
|
||||
rb->remove_thread(audiothread_id);
|
||||
|
||||
pcm_playback_stop();
|
||||
rb->sleep(HZ/10);
|
||||
|
||||
rb->lcd_clear_display();
|
||||
rb->lcd_update();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue