blob: 7721c46f64a479ca61f0a800787f35be986cf86a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "plugin.h"
struct mpeg_settings {
int showfps;
int limitfps;
int skipframes;
#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200)
unsigned displayoptions;
#endif
};
extern struct mpeg_settings settings;
bool mpeg_menu(void);
void init_settings(void);
void save_settings(void);
|