mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-14 07:32:35 -05:00
We need to increase MAX_EXTTYPES for software codecs - but maybe we should use a different #if test (the same test is made in tree.c)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6599 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
02e22ea1d5
commit
3ac03bfc80
1 changed files with 5 additions and 0 deletions
|
|
@ -43,7 +43,12 @@
|
|||
#define MAX_FILETYPES 32
|
||||
|
||||
/* max exttypes (extensions stored here) */
|
||||
#if CONFIG_HWCODEC == MASNONE
|
||||
/* Software codecs require more file extensions */
|
||||
#define MAX_EXTTYPES 64
|
||||
#else
|
||||
#define MAX_EXTTYPES 32
|
||||
#endif
|
||||
|
||||
/* string buffer length */
|
||||
#define STRING_BUFFER_SIZE 512
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue