a222f27c4a
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15977 a1c6a512-1295-4272-9138-f99709370657
58 lines
1.5 KiB
C
58 lines
1.5 KiB
C
|
|
#include "plugin.h"
|
|
|
|
#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200)
|
|
#define MPEG_OPTION_DITHERING_ENABLED 1
|
|
#endif
|
|
|
|
#ifndef MPEG_OPTION_DITHERING_ENABLED
|
|
#define MPEG_OPTION_DITHERING_ENABLED 0
|
|
#endif
|
|
|
|
enum mpeg_option_id
|
|
{
|
|
#if MPEG_OPTION_DITHERING_ENABLED
|
|
MPEG_OPTION_DITHERING,
|
|
#endif
|
|
MPEG_OPTION_DISPLAY_FPS,
|
|
MPEG_OPTION_LIMIT_FPS,
|
|
MPEG_OPTION_SKIP_FRAMES,
|
|
};
|
|
|
|
enum mpeg_start_id
|
|
{
|
|
MPEG_START_RESTART,
|
|
MPEG_START_RESUME,
|
|
MPEG_START_SEEK,
|
|
MPEG_START_QUIT,
|
|
};
|
|
|
|
enum mpeg_menu_id
|
|
{
|
|
MPEG_MENU_DISPLAY_SETTINGS,
|
|
MPEG_MENU_ENABLE_START_MENU,
|
|
MPEG_MENU_CLEAR_RESUMES,
|
|
MPEG_MENU_QUIT,
|
|
};
|
|
|
|
struct mpeg_settings {
|
|
int showfps; /* flag to display fps */
|
|
int limitfps; /* flag to limit fps */
|
|
int skipframes; /* flag to skip frames */
|
|
int enable_start_menu; /* flag to enable/disable start menu */
|
|
int resume_count; /* total # of resumes in config file */
|
|
int resume_time; /* resume time for current mpeg (in half minutes) */
|
|
char resume_filename[MAX_PATH]; /* filename of current mpeg */
|
|
#if MPEG_OPTION_DITHERING_ENABLED
|
|
int displayoptions;
|
|
#endif
|
|
};
|
|
|
|
extern struct mpeg_settings settings;
|
|
|
|
int get_start_time(uint32_t duration);
|
|
enum mpeg_start_id mpeg_start_menu(uint32_t duration);
|
|
enum mpeg_menu_id mpeg_menu(void);
|
|
void init_settings(const char* filename);
|
|
void save_settings(void);
|
|
void clear_resume_count(void);
|