summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2021-11-24 13:43:55 +0100
committerAidan MacDonald <amachronic@protonmail.com>2021-11-24 19:17:33 -0500
commit4052a9ddcfedcb6bc55f94e4ec5bc8e803e2dc7e (patch)
treeb4fb0f09b161a1ed523b55c71681633483609ead
parent871572b6c3a3125f4958cdc1c4b6d101da60324e (diff)
downloadrockbox-4052a9ddcfedcb6bc55f94e4ec5bc8e803e2dc7e.tar.gz
rockbox-4052a9ddcfedcb6bc55f94e4ec5bc8e803e2dc7e.zip
Manual: Update Metadata limitations
Limit for devices with more than 8MB of memory had previously been increased from 300 to 500 bytes for individual fields, and to 1800 from 900 bytes for buffer containing all fields. See a8846e3 Change-Id: I63305c50f6f486ad321664babdb94052ea9209a9
-rw-r--r--apps/features.txt2
-rw-r--r--manual/appendix/file_formats.tex9
2 files changed, 9 insertions, 2 deletions
diff --git a/apps/features.txt b/apps/features.txt
index 83c3f0a65f..ec2113cbc8 100644
--- a/apps/features.txt
+++ b/apps/features.txt
@@ -262,6 +262,8 @@ recording_digital
262 262
263#if MEMORYSIZE <= 2 263#if MEMORYSIZE <= 2
264lowmem 264lowmem
265#elif MEMORYSIZE > 8
266himem
265#endif 267#endif
266 268
267#if defined(HAVE_HARDWARE_CLICK) 269#if defined(HAVE_HARDWARE_CLICK)
diff --git a/manual/appendix/file_formats.tex b/manual/appendix/file_formats.tex
index 4d64cf6bc6..0e77676305 100644
--- a/manual/appendix/file_formats.tex
+++ b/manual/appendix/file_formats.tex
@@ -357,12 +357,17 @@
357 \item Multiple tags (e.g. for Genre) are not supported. The first tag 357 \item Multiple tags (e.g. for Genre) are not supported. The first tag
358 item of a set of multiple tags is used. 358 item of a set of multiple tags is used.
359 \item Only one tag type is supported for each audio format. 359 \item Only one tag type is supported for each audio format.
360 \nopt{clipv1,c200v2}{ 360 \nopt{lowmem,himem}{
361 \item Overall there are 900 bytes available to load metadata strings. 361 \item Overall there are 900 bytes available to load metadata strings.
362 \item The maximum size of each metadata item (e.g. Artists) is limited 362 \item The maximum size of each metadata item (e.g. Artists) is limited
363 to 240 bytes. 363 to 240 bytes.
364 } 364 }
365 \opt{clipv1,c200v2}{ 365 \opt{himem}{
366 \item Overall there are 1800 bytes available to load metadata strings.
367 \item The maximum size of each metadata item (e.g. Artists) is limited
368 to 500 bytes.
369 }
370 \opt{lowmem}{
366 \item Overall there are 300 bytes available to load metadata strings. 371 \item Overall there are 300 bytes available to load metadata strings.
367 \item The maximum size of each metadata item (e.g. Artists) is limited 372 \item The maximum size of each metadata item (e.g. Artists) is limited
368 to 90 bytes. 373 to 90 bytes.