diff options
author | Jorg Schuler <jcsjcs@users.sourceforge.net> | 2007-02-09 16:01:59 +0000 |
---|---|---|
committer | Jorg Schuler <jcsjcs@users.sourceforge.net> | 2007-02-09 16:01:59 +0000 |
commit | b3a2423d8b9cb84b720f364ac8f33b89bfcb32c5 (patch) | |
tree | e4a4d40c0ab6339f35fa56e990c474519686733a | |
parent | 69112a19193354e996bdc29d866af797895dbe76 (diff) | |
download | libgpod-b3a2423d8b9cb84b720f364ac8f33b89bfcb32c5.tar.gz libgpod-b3a2423d8b9cb84b720f364ac8f33b89bfcb32c5.tar.xz libgpod-b3a2423d8b9cb84b720f364ac8f33b89bfcb32c5.zip |
* src/ithumb-writer.c: reduced maximum size for ithmb files from
500 MB to 256 MB after reports of slow iPod interface behavior.
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1391 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/ithumb-writer.c | 6 |
2 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2007-02-09 Jorg Schuler <jcsjcs at users.sourceforge.net> + + * src/ithumb-writer.c: reduced maximum size for ithmb files from + 500 MB to 256 MB after reports of slow iPod interface behavior. + 2007-01-18 Jorg Schuler <jcsjcs at users.sourceforge.net> * src/itdb.h diff --git a/src/ithumb-writer.c b/src/ithumb-writer.c index 6bbb5c3..9ee8122 100644 --- a/src/ithumb-writer.c +++ b/src/ithumb-writer.c @@ -1,4 +1,4 @@ -/* Time-stamp: <2007-01-09 22:00:03 jcs> +/* Time-stamp: <2007-02-10 01:00:40 jcs> * * Copyright (C) 2005 Christophe Fergeau * @@ -46,7 +46,9 @@ #include <fcntl.h> -#define ITHUMB_MAX_SIZE (500L*1000L*1000L) +/* Maximum size for .ithmb files. Reduced from 500 MB to 256 MB after + reports of slow iPod interface behavior */ +#define ITHUMB_MAX_SIZE (256L*1000L*1000L) /* for testing: */ /*#define ITHUMB_MAX_SIZE (1L*1000L*1000L)*/ |