mailer | 1 Jan 2010 21:04
Favicon

Domonoky: r24132 - themes.rockbox.org/trunk/public

Date: 2010-01-01 21:04:04 +0100 (Fri, 01 Jan 2010)
New Revision: 24132

Log Message:
fix sorting by rating

Modified:
   themes.rockbox.org/trunk/public/index.php

Modified: themes.rockbox.org/trunk/public/index.php
===================================================================
--- themes.rockbox.org/trunk/public/index.php	2009-12-31 19:15:20 UTC (rev 24131)
+++ themes.rockbox.org/trunk/public/index.php	2010-01-01 20:04:04 UTC (rev 24132)
 <at>  <at>  -41,7 +41,7  <at>  <at> 
     else $values['themes'] = $site->listthemes($_REQUEST['target']);
     $t->assign('sortings',array('timestamp' => 'Submitted time',
                                 'downloadcnt' => 'Download count',
-                                'ratings' => 'Rating',
+                                'ratings/numratings' => 'Rating',
                                 'numratings' => 'Number of Votes',
                                 'name' => 'Themename',
                                 'author' => 'Author'));

_______________________________________________
rockbox-cvs mailing list
rockbox-cvs <at> cool.haxx.se
http://cool.haxx.se/cgi-bin/mailman/listinfo/rockbox-cvs

mailer | 1 Jan 2010 21:34
Favicon

stripwax: r24133 - in branches/mdctexp/apps/codecs: lib libtremor libwma

Date: 2010-01-01 21:34:54 +0100 (Fri, 01 Jan 2010)
New Revision: 24133

Log Message:
Update mdct with some recent ffmpeg changes so that imdct_calc is a wrapper around imdct_half, which in
turn does more work in just a single buffer and only needs both input and output buffer for the bitreverse
mangling. IMDCT can therefore operate with most work taking place in single IRAM buffer where applicable
(e.g. tremor, which now copies the input to scratchpad, briefly, and runs the imdct in IRAM pcm buffer).
Also paves way for imdct_half optimisations.  Plus some const correctness.  Tremor now only about 0.5%
slower than main trunk

Modified:
   branches/mdctexp/apps/codecs/lib/codeclib.h
   branches/mdctexp/apps/codecs/lib/mdct.c
   branches/mdctexp/apps/codecs/lib/mdct.h
   branches/mdctexp/apps/codecs/libtremor/mapping0.c
   branches/mdctexp/apps/codecs/libwma/wmadeci.c

Modified: branches/mdctexp/apps/codecs/lib/codeclib.h
===================================================================
--- branches/mdctexp/apps/codecs/lib/codeclib.h	2010-01-01 20:04:04 UTC (rev 24132)
+++ branches/mdctexp/apps/codecs/lib/codeclib.h	2010-01-01 20:34:54 UTC (rev 24133)
 <at>  <at>  -68,7 +68,8  <at>  <at> 
 extern void mdct_backward(int n, int32_t *in, int32_t *out);
 /* -2- ffmpeg fft-based mdct */
 extern int ff_mdct_init(MDCTContext *s, int nbits, int inverse);
-extern void ff_imdct_calc(MDCTContext *s, int32_t *output, int32_t *input);
+extern void ff_imdct_half(MDCTContext *s, int32_t *output, const int32_t *input);
+extern void ff_imdct_calc(MDCTContext *s, int32_t *output, const int32_t *input);
 extern int mdct_init_global(void);
(Continue reading)

mailer | 1 Jan 2010 21:41
Favicon

pamaury: r24134 - trunk/firmware/common

Date: 2010-01-01 21:41:29 +0100 (Fri, 01 Jan 2010)
New Revision: 24134

Log Message:
FS#9409: fix rename which didn't close file handles on error and enventually cause cut/paste to fail
between volumes.

Modified:
   trunk/firmware/common/file.c

Modified: trunk/firmware/common/file.c
===================================================================
--- trunk/firmware/common/file.c	2010-01-01 20:34:54 UTC (rev 24133)
+++ trunk/firmware/common/file.c	2010-01-01 20:41:29 UTC (rev 24134)
 <at>  <at>  -367,8 +367,10  <at>  <at> 
     nameptr = strrchr(newpath,'/');
     if (nameptr)
         nameptr++;
-    else
+    else {
+        close(fd);
         return - 3;
+    }

     /* Extract new path */
     strcpy(newpath2, newpath);
 <at>  <at>  -376,8 +378,10  <at>  <at> 
     dirptr = strrchr(newpath2,'/');
     if(dirptr)
         *dirptr = 0;
(Continue reading)

mailer | 1 Jan 2010 22:23
Favicon

mt: r24135 - trunk/apps

Date: 2010-01-01 22:23:17 +0100 (Fri, 01 Jan 2010)
New Revision: 24135

Log Message:
Make the delete_handler function return the actual result, instead of just 'false'.

Modified:
   trunk/apps/onplay.c

Modified: trunk/apps/onplay.c
===================================================================
--- trunk/apps/onplay.c	2010-01-01 20:41:29 UTC (rev 24134)
+++ trunk/apps/onplay.c	2010-01-01 21:23:17 UTC (rev 24135)
 <at>  <at>  -571,7 +571,7  <at>  <at> 
     if (!res)
         onplay_result = ONPLAY_RELOAD_DIR;

-    return false;
+    return ((res == 0) ? true:false);
 }

_______________________________________________
rockbox-cvs mailing list
rockbox-cvs <at> cool.haxx.se
http://cool.haxx.se/cgi-bin/mailman/listinfo/rockbox-cvs

mailer | 1 Jan 2010 23:47
Favicon

bertrik: r24136 - in trunk: apps apps/codecs apps/gui apps/plugins firmware/drivers firmware/target/arm/as3525 uisimulator/common

Date: 2010-01-01 23:47:25 +0100 (Fri, 01 Jan 2010)
New Revision: 24136

Log Message:
Simplify some expressions using the ? operator

Modified:
   trunk/apps/codecs/mod.c
   trunk/apps/gui/viewport.c
   trunk/apps/onplay.c
   trunk/apps/plugins/blackjack.c
   trunk/apps/plugins/clix.c
   trunk/firmware/drivers/ata_mmc.c
   trunk/firmware/target/arm/as3525/ata_sd_as3525.c
   trunk/uisimulator/common/fmradio.c

Modified: trunk/apps/codecs/mod.c
===================================================================
--- trunk/apps/codecs/mod.c	2010-01-01 21:23:17 UTC (rev 24135)
+++ trunk/apps/codecs/mod.c	2010-01-01 22:47:25 UTC (rev 24136)
 <at>  <at>  -250,7 +250,7  <at>  <at> 
     p_channel->channelactive = true;
     p_channel->samplepos = p_instrument->sampledataoffset;
     p_channel->samplefractpos = 0;
-    p_channel->loopsample = (p_instrument->repeatlength > 2) ? true : false;
+    p_channel->loopsample = (p_instrument->repeatlength > 2);
     if (p_channel->loopsample) {
         p_channel->loopstart = p_instrument->repeatoffset +
             p_instrument->sampledataoffset;
 <at>  <at>  -807,8 +807,7  <at>  <at> 
(Continue reading)

mailer | 2 Jan 2010 00:31
Favicon

tomers: r24137 - trunk/fonts

Date: 2010-01-02 00:31:09 +0100 (Sat, 02 Jan 2010)
New Revision: 24137

Log Message:
FS#10886 - Hebrew glyphs for 08-Rockfont.bdf 

This patch adds Hebrew glyphs for the 08-Rockfont font.
This font is the default font for all targets with LCD_HEIGHT<=64
The glyphs are copied from the Liquid Font Family for Very Small Displays
(Liquid Mean).
Henrik Theiling, the author of this font, explicitly approved to integrate his
font into Rockbox (thanks!).

Modified:
   trunk/fonts/08-Rockfont.bdf

Modified: trunk/fonts/08-Rockfont.bdf
===================================================================
--- trunk/fonts/08-Rockfont.bdf	2010-01-01 22:47:25 UTC (rev 24136)
+++ trunk/fonts/08-Rockfont.bdf	2010-01-01 23:31:09 UTC (rev 24137)
 <at>  <at>  -23,7 +23,7  <at>  <at> 
 CHARSET_REGISTRY "ISO10646"
 CHARSET_ENCODING "1"
 ENDPROPERTIES
-CHARS 491
+CHARS 522
 STARTCHAR <control>
 ENCODING 0
 SWIDTH 720 0
 <at>  <at>  -6639,7 +6639,377  <at>  <at> 
(Continue reading)

mailer | 2 Jan 2010 04:49
Favicon

kkurbjun: r24138 - trunk/apps/plugins/bitmaps/native

Date: 2010-01-02 04:49:11 +0100 (Sat, 02 Jan 2010)
New Revision: 24138

Log Message:
Brickmania: Scale bitmaps with the high-res bricks to fit them to the LCD width for the Gigabeat F/X/S.

Added:
   trunk/apps/plugins/bitmaps/native/brickmania_break.240x320x16.bmp
   trunk/apps/plugins/bitmaps/native/brickmania_bricks.240x320x16.bmp
   trunk/apps/plugins/bitmaps/native/brickmania_long_pads.240x320x16.bmp
   trunk/apps/plugins/bitmaps/native/brickmania_pads.240x320x16.bmp
   trunk/apps/plugins/bitmaps/native/brickmania_powerups.240x320x16.bmp
   trunk/apps/plugins/bitmaps/native/brickmania_short_pads.240x320x16.bmp
Modified:
   trunk/apps/plugins/bitmaps/native/SOURCES

Modified: trunk/apps/plugins/bitmaps/native/SOURCES
===================================================================
--- trunk/apps/plugins/bitmaps/native/SOURCES	2010-01-01 23:31:09 UTC (rev 24137)
+++ trunk/apps/plugins/bitmaps/native/SOURCES	2010-01-02 03:49:11 UTC (rev 24138)
 <at>  <at>  -31,6 +31,15  <at>  <at> 
 brickmania_break.320x240x16.bmp
 brickmania_powerups.320x240x16.bmp

+#elif (LCD_WIDTH == 240) && (LCD_HEIGHT == 320) /* Gigabeat F/X/S */
+brickmania_ball.7x7x16.bmp
+brickmania_bricks.240x320x16.bmp
+brickmania_break.240x320x16.bmp
+brickmania_pads.240x320x16.bmp
+brickmania_short_pads.240x320x16.bmp
(Continue reading)

mailer | 2 Jan 2010 05:00
Favicon

kkurbjun: r24139 - trunk/apps/plugins/bitmaps/native

Date: 2010-01-02 05:00:03 +0100 (Sat, 02 Jan 2010)
New Revision: 24139

Log Message:
Fix red.

Added:
   trunk/apps/plugins/bitmaps/native/brickmania_ball.7x7x16.bmp

Added: trunk/apps/plugins/bitmaps/native/brickmania_ball.7x7x16.bmp
===================================================================
(Binary files differ)

Property changes on: trunk/apps/plugins/bitmaps/native/brickmania_ball.7x7x16.bmp
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

_______________________________________________
rockbox-cvs mailing list
rockbox-cvs <at> cool.haxx.se
http://cool.haxx.se/cgi-bin/mailman/listinfo/rockbox-cvs

mailer | 2 Jan 2010 05:51
Favicon

kkurbjun: r24140 - trunk/apps/plugins

Date: 2010-01-02 05:51:32 +0100 (Sat, 02 Jan 2010)
New Revision: 24140

Log Message:
Brickmania: Change the drawing/collision detection to simplify position management.

Modified:
   trunk/apps/plugins/brickmania.c

Modified: trunk/apps/plugins/brickmania.c
===================================================================
--- trunk/apps/plugins/brickmania.c	2010-01-02 04:00:03 UTC (rev 24139)
+++ trunk/apps/plugins/brickmania.c	2010-01-02 04:51:32 UTC (rev 24140)
 <at>  <at>  -798,15 +798,15  <at>  <at> 

 typedef struct balls 
 {
-    /* pos_x and y store the current position of the ball */
+    /* pos_x and y store the current center position of the ball */
     int pos_x;
     int pos_y;
-    /* Tempx and tempy store an absolute position the ball should be in.  If
+    /* tempx and tempy store an absolute position the ball should be in.  If
      *  they are equal to 0, they are not used when positioning the ball.
      */
     int tempx;
     int tempy;
-    /* x and y store the current speed of the ball */
+    /* speedx and speedy store the current speed of the ball */
     int speedx;
(Continue reading)

mailer | 2 Jan 2010 14:31
Favicon

torne: r24141 - in trunk: apps firmware firmware/common firmware/include

Date: 2010-01-02 14:31:46 +0100 (Sat, 02 Jan 2010)
New Revision: 24141

Log Message:
Add strlcat to core to match strlcpy (also add to plugin api). Some uses of strcat could probably do with
being changed to this.

Added:
   trunk/firmware/common/strlcat.c
Modified:
   trunk/apps/plugin.c
   trunk/apps/plugin.h
   trunk/firmware/SOURCES
   trunk/firmware/include/string.h

Modified: trunk/apps/plugin.c
===================================================================
--- trunk/apps/plugin.c	2010-01-02 04:51:32 UTC (rev 24140)
+++ trunk/apps/plugin.c	2010-01-02 13:31:46 UTC (rev 24141)
 <at>  <at>  -682,8 +682,9  <at>  <at> 
     viewportmanager_theme_undo,
 #endif
 #if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__)
-    &errno
+    &errno,
 #endif
+    strlcat,
 };

 int plugin_load(const char* plugin, const void* parameter)
(Continue reading)


Gmane