long policy
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5713 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
98a8132155
commit
3f65c3f42f
2 changed files with 3 additions and 3 deletions
|
@ -284,8 +284,8 @@ struct plugin_api {
|
|||
unsigned char *buf, int num_frames,
|
||||
unsigned long header_template,
|
||||
void (*progressfunc)(int), bool generate_toc);
|
||||
unsigned long (*find_next_frame)(int fd, int *offset,
|
||||
int max_offset, unsigned long last_header);
|
||||
unsigned long (*find_next_frame)(int fd, long *offset,
|
||||
long max_offset, unsigned long last_header);
|
||||
int (*battery_level)(void);
|
||||
bool (*battery_level_safe)(void);
|
||||
#if (CONFIG_HWCODEC == MAS3587F) || (CONFIG_HWCODEC == MAS3539F)
|
||||
|
|
|
@ -1026,7 +1026,7 @@ static void mpeg_thread(void)
|
|||
unsigned long saved_header = 0;
|
||||
int startpos;
|
||||
int rc;
|
||||
int offset;
|
||||
long offset;
|
||||
int countdown;
|
||||
#endif /* #if CONFIG_HWCODEC == MAS3587F */
|
||||
|
||||
|
|
Loading…
Reference in a new issue