mailer | 1 Apr 2008 03:03
Favicon

pixelma: r16905 - in trunk/wps: . iCatcher

Date: 2008-04-01 03:03:57 +0200 (Tue, 01 Apr 2008)
New Revision: 16905

Log Message:
Next set of bitmap strips for the iCatcher theme, this time it's the 'small monochrome' icons for the Archos
and all the remote screens. There's a little exception to the rule here - there already was a 'hold-s.bmp'
which now becane 'hold1-s.bmp' because it's a single icon, only used on the Archos screens and named the
bitmap strip hold-s.bmp to make it consistent with the other versions. Also simplified the code for
displaying the static background images.

Added:
   trunk/wps/iCatcher/animation-s.bmp
   trunk/wps/iCatcher/battery-s.bmp
   trunk/wps/iCatcher/hold-s.bmp
   trunk/wps/iCatcher/hold1-s.bmp
   trunk/wps/iCatcher/playmode-s.bmp
   trunk/wps/iCatcher/repeat-s.bmp
   trunk/wps/iCatcher/shuffle-s.bmp
   trunk/wps/iCatcher/volume-s.bmp
Removed:
   trunk/wps/iCatcher/ani1-s.bmp
   trunk/wps/iCatcher/ani2-s.bmp
   trunk/wps/iCatcher/ani3-s.bmp
   trunk/wps/iCatcher/ani4-s.bmp
   trunk/wps/iCatcher/ani5-s.bmp
   trunk/wps/iCatcher/ani6-s.bmp
   trunk/wps/iCatcher/ani7-s.bmp
   trunk/wps/iCatcher/ani8-s.bmp
   trunk/wps/iCatcher/bat0-s.bmp
   trunk/wps/iCatcher/bat1-s.bmp
(Continue reading)

mailer | 1 Apr 2008 05:55
Favicon

jethead71: r16906 - in trunk/firmware: . export target/arm/s3c2440/gigabeat-fx

Date: 2008-04-01 05:55:02 +0200 (Tue, 01 Apr 2008)
New Revision: 16906

Log Message:
Change a #define constant that conflicts with a mingw definition. Change "WAIT_*" to "OBJ_WAIT_*".

Modified:
   trunk/firmware/export/kernel.h
   trunk/firmware/kernel.c
   trunk/firmware/target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c

Modified: trunk/firmware/export/kernel.h
===================================================================
--- trunk/firmware/export/kernel.h	2008-04-01 01:03:57 UTC (rev 16905)
+++ trunk/firmware/export/kernel.h	2008-04-01 03:55:02 UTC (rev 16906)
 <at>  <at>  -240,9 +240,9  <at>  <at> 
 #define STATE_NONSIGNALED 0
 #define STATE_SIGNALED    1

-#define WAIT_TIMEDOUT     (-1)
-#define WAIT_FAILED       0
-#define WAIT_SUCCEEDED    1
+#define OBJ_WAIT_TIMEDOUT     (-1)
+#define OBJ_WAIT_FAILED       0
+#define OBJ_WAIT_SUCCEEDED    1

 extern void queue_init(struct event_queue *q, bool register_queue);
 extern void queue_delete(struct event_queue *q);

Modified: trunk/firmware/kernel.c
(Continue reading)

mailer | 1 Apr 2008 08:09
Favicon

jethead71: r16907 - trunk/apps/plugins/mpegplayer

Date: 2008-04-01 08:09:12 +0200 (Tue, 01 Apr 2008)
New Revision: 16907

Log Message:
Place a limit on the estimate fudging when searching timestamps in mpegplayer. It doesn't have to be very much.

Modified:
   trunk/apps/plugins/mpegplayer/mpeg_parser.c

Modified: trunk/apps/plugins/mpegplayer/mpeg_parser.c
===================================================================
--- trunk/apps/plugins/mpegplayer/mpeg_parser.c	2008-04-01 03:55:02 UTC (rev 16906)
+++ trunk/apps/plugins/mpegplayer/mpeg_parser.c	2008-04-01 06:09:12 UTC (rev 16907)
 <at>  <at>  -378,6 +378,8  <at>  <at> 

         if (currpts != INVALID_TIMESTAMP)
         {
+            ssize_t pos_adj; /* Adjustment to over or under-estimate */
+
             /* Found a valid timestamp - see were it lies in relation to
              * target */
             if (currpts < time)
 <at>  <at>  -401,11 +403,15  <at>  <at> 

                 pos_new = muldiv_uint32(time - time_left,
                                         pos_right - pos_left,
-                                        time_right - time_left) + pos_left;
+                                        time_right - time_left);
                 /* Point is ahead of us - fudge estimate a bit high */
-                pos_new = muldiv_uint32(11, pos_new - pos_left, 10)
(Continue reading)

mailer | 1 Apr 2008 09:26
Favicon

jethead71: r16908 - trunk/firmware/target/arm/imx31/gigabeat-s

Date: 2008-04-01 09:26:24 +0200 (Tue, 01 Apr 2008)
New Revision: 16908

Log Message:
Make the gigabeat S boot again.

Modified:
   trunk/firmware/target/arm/imx31/gigabeat-s/usb-imx31.c

Modified: trunk/firmware/target/arm/imx31/gigabeat-s/usb-imx31.c
===================================================================
--- trunk/firmware/target/arm/imx31/gigabeat-s/usb-imx31.c	2008-04-01 06:09:12 UTC (rev 16907)
+++ trunk/firmware/target/arm/imx31/gigabeat-s/usb-imx31.c	2008-04-01 07:26:24 UTC (rev 16908)
 <at>  <at>  -21,10 +21,11  <at>  <at> 
 #include "system.h"
 #include "kernel.h"
 #include "ata.h"
+#include "usb.h"

 inline int usb_detect(void)
 {
-    return 0;
+    return USB_EXTRACTED;
 }

 void usb_init_device(void)

_______________________________________________
rockbox-cvs mailing list
rockbox-cvs <at> cool.haxx.se
(Continue reading)

mailer | 1 Apr 2008 10:56
Favicon

bagder: r16909 - www

Date: 2008-04-01 10:56:36 +0200 (Tue, 01 Apr 2008)
New Revision: 16909

Log Message:
check for voices at the right place

Modified:
   www/dailymod.pl

Modified: www/dailymod.pl
===================================================================
--- www/dailymod.pl	2008-04-01 07:26:24 UTC (rev 16908)
+++ www/dailymod.pl	2008-04-01 08:56:36 UTC (rev 16909)
 <at>  <at>  -2,7 +2,7  <at>  <at> 

 require "rockbox.pm";

-my $basedir = "/home/dast/rockbox-build/daily-build";
+my $basedir = "/home/dast/rockbox-build/output";
 my $docbasedir = "/home/dast/rockbox-manual/output";

 my  <at> list=("player",
 <at>  <at>  -44,8 +44,8  <at>  <at> 

 for( <at> list) {
     my $dir = $_;
-    opendir(DIR, "$basedir/$dir") or next;
-    my  <at> files = sort grep { /^rockbox/ } readdir(DIR);
+    opendir(DIR, "$basedir") or next;
+    my  <at> files = sort grep { /^build-info/ } readdir(DIR);
(Continue reading)

mailer | 1 Apr 2008 11:23
Favicon

bagder: r16910 - www

Date: 2008-04-01 11:23:44 +0200 (Tue, 01 Apr 2008)
New Revision: 16910

Log Message:
support voice files in zips instead

Modified:
   www/dailymod.pl
   www/dl.cgi

Modified: www/dailymod.pl
===================================================================
--- www/dailymod.pl	2008-04-01 08:56:36 UTC (rev 16909)
+++ www/dailymod.pl	2008-04-01 09:23:44 UTC (rev 16910)
 <at>  <at>  -159,7 +159,7  <at>  <at> 
             $voicemod = "ipodvideo";
         }

-        my $voice="voices/${voicemod}-${d}-english.voice";
+        my $voice="voices/${voicemod}-${d}-english.zip";

         if ( -f $voice ) {
             my $size = (stat($voice))[7];

Modified: www/dl.cgi
===================================================================
--- www/dl.cgi	2008-04-01 08:56:36 UTC (rev 16909)
+++ www/dl.cgi	2008-04-01 09:23:44 UTC (rev 16910)
 <at>  <at>  -134,13 +134,19  <at>  <at> 
         }
(Continue reading)

mailer | 1 Apr 2008 14:47
Favicon

pixelma: r16911 - in trunk/wps: . iCatcher

Date: 2008-04-01 14:47:11 +0200 (Tue, 01 Apr 2008)
New Revision: 16911

Log Message:
Next set of iCatcher bitmap strips - this time the 'greyscale' icons for the 160x128x2 and 138x110x2
display. Again completing the codec icons and minor corrections while at it (a few dots and corrected the
light grey value in some places). * Reminder:  Since the used bitmaps now have a different name the old ones
won't get overwritten by unzipping a new build. To tidy up remove the 'iCatcher' directory in the
'.rockbox/wps' dir before updating. This applies to all converted WPSs (now and future). 

Added:
   trunk/wps/UniCatcher.128x96x2.wps
   trunk/wps/iCatcher.128x96x2.wps
   trunk/wps/iCatcher/animation-g.bmp
   trunk/wps/iCatcher/battery-g.bmp
   trunk/wps/iCatcher/codec-g.bmp
   trunk/wps/iCatcher/hold-g.bmp
   trunk/wps/iCatcher/playmode-g.bmp
   trunk/wps/iCatcher/repeat-g.bmp
   trunk/wps/iCatcher/shuffle-g.bmp
   trunk/wps/iCatcher/volume-g.bmp
Removed:
   trunk/wps/iCatcher/ani1-g.bmp
   trunk/wps/iCatcher/ani2-g.bmp
   trunk/wps/iCatcher/ani3-g.bmp
   trunk/wps/iCatcher/ani4-g.bmp
   trunk/wps/iCatcher/ani5-g.bmp
   trunk/wps/iCatcher/ani6-g.bmp
   trunk/wps/iCatcher/ani7-g.bmp
   trunk/wps/iCatcher/ani8-g.bmp
(Continue reading)

mailer | 1 Apr 2008 14:54
Favicon

pixelma: r16912 - trunk/wps

Date: 2008-04-01 14:54:29 +0200 (Tue, 01 Apr 2008)
New Revision: 16912

Log Message:
D'oh, revert accidental commit of a renaming experiment which I thought I had reverted in my tree before
(but it seems it was only reverted halfway)...

Removed:
   trunk/wps/UniCatcher.128x96x2.wps

Deleted: trunk/wps/UniCatcher.128x96x2.wps
===================================================================
--- trunk/wps/UniCatcher.128x96x2.wps	2008-04-01 12:47:11 UTC (rev 16911)
+++ trunk/wps/UniCatcher.128x96x2.wps	2008-04-01 12:54:29 UTC (rev 16912)
 <at>  <at>  -1,50 +0,0  <at>  <at> 
-%wd
-
-%t1
%?mp<%al%pp/%pe%ar-:--/-:--|%al%pp/%pe%ar%pc/%pt|%al%pp/%pe%ar%pc/%pt|%al%pp/%pe%ar%pc/%pt|%al%pp/%pe%ar%pc/%pt>;%t1 %?mp<%al%pp/%pe%ar-:--/-:--|%al%pp/%pe%ar%pc/%pt|%al%pp/%pe|%al%pp/%pe%ar%pc/%pt|%al%pp/%pe%ar%pc/%pt>
-%s%ac%?ia<%ia|%?d2<%d2|Unknown Artist>>
-%s%ac%?id<%id|%?d1<%d1|Unknown Album>>
-%pb|4|11|117|
-%s%ac%?in<%in|%pp> - %?it<%it|%fn>
-
-%xl|A|bat0-s.bmp|109|3|
-%xl|B|bat1-s.bmp|109|3|
-%xl|C|bat2-s.bmp|109|3|
-%xl|D|bat3-s.bmp|109|3|
-%xl|E|bat4-s.bmp|109|3|
-%t0.5 %?bp<%?bc<%xdA|%xdE>|%?bl<%xdA|%xdA|%xdB|%xdC|%xdD|%xdE|%xdE>>;%t0.5
(Continue reading)

mailer | 1 Apr 2008 15:01
Favicon

pixelma: r16913 - trunk/wps

Date: 2008-04-01 15:01:10 +0200 (Tue, 01 Apr 2008)
New Revision: 16913

Log Message:
Revert the other remnant of the renaming experiment... (I only do this to get the commit count up).

Removed:
   trunk/wps/iCatcher.128x96x2.wps

Deleted: trunk/wps/iCatcher.128x96x2.wps
===================================================================
--- trunk/wps/iCatcher.128x96x2.wps	2008-04-01 12:54:29 UTC (rev 16912)
+++ trunk/wps/iCatcher.128x96x2.wps	2008-04-01 13:01:10 UTC (rev 16913)
 <at>  <at>  -1,54 +0,0  <at>  <at> 
-%wd
-
-
-%t1 %?mp<%al %pp/%pe%ar-:--/-:-- |%al %pp/%pe%ar%pc/%pt |%al %pp/%pe%ar%pc/%pt |%al
%pp/%pe%ar%pc/%pt |%al %pp/%pe%ar%pc/%pt >;%t1 %?mp<%al %pp/%pe%ar-:--/-:-- |%al
%pp/%pe%ar%pc/%pt |%al %pp/%pe|%al %pp/%pe%ar%pc/%pt |%al %pp/%pe%ar%pc/%pt >
-
-%s%ac%?ia<%ia|%?d2<%d2|Unknown Artist>>
-%s%ac%?id<%id|%?d1<%d1|Unknown Album>>
-%s%ac%?in<%in|%pp> - %?it<%it|%fn>
-%pb|4|11|117|
-
-%s%acNext: %?It<%It|%?Fn<%Fn|?>>
-
-%xl|A|bat0-s.bmp|109|3|
-%xl|B|bat1-s.bmp|109|3|
(Continue reading)

mailer | 1 Apr 2008 19:35
Favicon

nicolasp: r16914 - trunk/apps/gui

Date: 2008-04-01 19:35:48 +0200 (Tue, 01 Apr 2008)
New Revision: 16914

Log Message:
WPS parser: also revert to the default WPS when there were bitmap loading errors. The reverting is moved
from wps_parse() to wps_data_load().

Modified:
   trunk/apps/gui/wps_parser.c

Modified: trunk/apps/gui/wps_parser.c
===================================================================
--- trunk/apps/gui/wps_parser.c	2008-04-01 13:01:10 UTC (rev 16913)
+++ trunk/apps/gui/wps_parser.c	2008-04-01 17:35:48 UTC (rev 16914)
 <at>  <at>  -1319,9 +1319,6  <at>  <at> 
     print_debug_info(data, fail, line);
 #endif

-    if (fail)
-        wps_reset(data);
-
     return (fail == 0);
 }

 <at>  <at>  -1564,8 +1561,10  <at>  <at> 
         wps_buffer = skip_utf8_bom(wps_buffer);

         /* parse the WPS source */
-        if (!wps_parse(wps_data, wps_buffer))
+        if (!wps_parse(wps_data, wps_buffer)) {
(Continue reading)


Gmane