summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/mpeg_settings.h
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2010-11-26 12:32:00 +0000
committerTeruaki Kawashima <teru@rockbox.org>2010-11-26 12:32:00 +0000
commit043ebca136cfb38fc9ff1610540100729b4c96db (patch)
tree3f12b7aced03d439223ee14a65e1cf7e45c44b1b /apps/plugins/mpegplayer/mpeg_settings.h
parentb397fe5ae373e3b62fee9150ab786c344c2084cd (diff)
downloadrockbox-043ebca136cfb38fc9ff1610540100729b4c96db.zip
rockbox-043ebca136cfb38fc9ff1610540100729b4c96db.tar.gz
rockbox-043ebca136cfb38fc9ff1610540100729b4c96db.tar.bz2
rockbox-043ebca136cfb38fc9ff1610540100729b4c96db.tar.xz
FS#8607: MPEG video playlist
Add mode to play multiple mpeg files in the same directory in the order the file browser shows. In this mode, Mpegplayer exits after finishing the last .mpg file. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28667 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer/mpeg_settings.h')
-rw-r--r--apps/plugins/mpegplayer/mpeg_settings.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_settings.h b/apps/plugins/mpegplayer/mpeg_settings.h
index 6c8b69a..0910116 100644
--- a/apps/plugins/mpegplayer/mpeg_settings.h
+++ b/apps/plugins/mpegplayer/mpeg_settings.h
@@ -62,6 +62,7 @@ enum mpeg_setting_id
MPEG_SETTING_DISPLAY_SETTINGS,
MPEG_SETTING_AUDIO_SETTINGS,
MPEG_SETTING_ENABLE_START_MENU,
+ MPEG_SETTING_PLAY_MODE,
MPEG_SETTING_CLEAR_RESUMES,
};
@@ -83,6 +84,7 @@ struct mpeg_settings {
#if MPEG_OPTION_DITHERING_ENABLED
int displayoptions;
#endif
+ int play_mode; /* play single file or all files in directory */
/* Audio options - simple on/off specification */
int tone_controls;
int channel_modes;