Robert E. Hak | 1 Mar 2003 10:45
Picon

cvs: apps/lang polski.lang,1.4,1.5

Update of /cvsroot/rockbox/apps/lang
In directory sc8-pr-cvs1:/tmp/cvs-serv3662

Modified Files:
	polski.lang 
Log Message:
updates by monter

Index: polski.lang
===================================================================
RCS file: /cvsroot/rockbox/apps/lang/polski.lang,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- polski.lang	28 Feb 2003 08:09:09 -0000	1.4
+++ polski.lang	1 Mar 2003 09:45:35 -0000	1.5
 <at>  <at>  -123,7 +123,7  <at>  <at> 
 id: LANG_PLAYINDICES_BUFFER
 desc: in playlist.indices() when playlist is full
 eng: "Buffer Full"
-new: "pelny bufor"
+new: "Pelny bufor"

 id: LANG_PLAYINDICES_AMOUNT
 desc: number of files in playlist
 <at>  <at>  -183,7 +183,7  <at>  <at> 
 id: LANG_SHUFFLE
 desc: in settings_menu
 eng: "Shuffle"
-new: "Losuj"
(Continue reading)

Linus Nielsen Feltzing | 2 Mar 2003 04:58
Picon

cvs: firmware mpeg.c,1.204,1.205

Update of /cvsroot/rockbox/firmware
In directory sc8-pr-cvs1:/tmp/cvs-serv14054/firmware

Modified Files:
	mpeg.c 
Log Message:
Now correctly skips ID3V1 tags to avoid gaps between tracks

Index: mpeg.c
===================================================================
RCS file: /cvsroot/rockbox/firmware/mpeg.c,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -b -r1.204 -r1.205
--- mpeg.c	27 Feb 2003 15:02:19 -0000	1.204
+++ mpeg.c	2 Mar 2003 03:58:54 -0000	1.205
 <at>  <at>  -1718,17 +1718,39  <at>  <at> 
                         DEBUGF("time: %d\n", t2 - t1);
                         DEBUGF("R: %x\n", len);

-                        /* Make sure that the write pointer is at a word
-                           boundary when we reach the end of the file */
-                        if (len < amount_to_read) {
+                        /* Now make sure that we don't feed the MAS with ID3V1
+                           data */
+                        if (len < amount_to_read)
+                        {
+                            int tagptr = mp3buf_write + len - 128;
+                            int i;
+                            char *tag = "TAG";
(Continue reading)

Linus Nielsen Feltzing | 3 Mar 2003 00:04
Picon

cvs: firmware mpeg.c,1.205,1.206

Update of /cvsroot/rockbox/firmware
In directory sc8-pr-cvs1:/tmp/cvs-serv2258/firmware

Modified Files:
	mpeg.c 
Log Message:
Even more return code checking when recording

Index: mpeg.c
===================================================================
RCS file: /cvsroot/rockbox/firmware/mpeg.c,v
retrieving revision 1.205
retrieving revision 1.206
diff -u -b -r1.205 -r1.206
--- mpeg.c	2 Mar 2003 03:58:54 -0000	1.205
+++ mpeg.c	2 Mar 2003 23:04:39 -0000	1.206
 <at>  <at>  -1899,12 +1899,18  <at>  <at> 
                                 mpeg_file = open(recording_filename,
                                                  O_WRONLY| O_APPEND);
                                 if(mpeg_file < 0)
-                                    panicf("recfile: %d", mpeg_file);
+                                    panicf("rec open: %d", mpeg_file);

                                 rc = write(mpeg_file, mp3buf + mp3buf_read,
                                            writelen);

-                                close(mpeg_file);
+                                if(rc < 0)
+                                    panicf("rec wrt: %d", rc);
+
(Continue reading)

Mats Lidell | 3 Mar 2003 00:08
Picon

cvs: apps/lang svenska.lang,1.23,1.24

Update of /cvsroot/rockbox/apps/lang
In directory sc8-pr-cvs1:/tmp/cvs-serv3626

Modified Files:
	svenska.lang 
Log Message:
Synched.

Index: svenska.lang
===================================================================
RCS file: /cvsroot/rockbox/apps/lang/svenska.lang,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -b -r1.23 -r1.24
--- svenska.lang	25 Feb 2003 08:33:36 -0000	1.23
+++ svenska.lang	2 Mar 2003 23:08:41 -0000	1.24
 <at>  <at>  -31,18 +31,18  <at>  <at> 

 id: LANG_DEBUG
 desc: in the main menu
-eng: "Debug (keep out!)"
-new: "Debug (rör ej!)"
+eng: "Debug (Keep Out!)"
+new: "Debug (Rör ej!)"

 id: LANG_USB
 desc: in the main menu
-eng: "USB (sim)"
-new: "USB (sim)"
+eng: "USB (Sim)"
(Continue reading)

Uwe Freese | 3 Mar 2003 12:01
Picon

cvs: apps/lang deutsch.lang,1.18,1.19

Update of /cvsroot/rockbox/apps/lang
In directory sc8-pr-cvs1:/tmp/cvs-serv30241/apps/lang

Modified Files:
	deutsch.lang 
Log Message:
new translations

Index: deutsch.lang
===================================================================
RCS file: /cvsroot/rockbox/apps/lang/deutsch.lang,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- deutsch.lang	25 Feb 2003 08:33:32 -0000	1.18
+++ deutsch.lang	3 Mar 2003 11:01:15 -0000	1.19
 <at>  <at>  -31,12 +31,16  <at>  <at> 

 id: LANG_DEBUG
 desc: in the main menu
-eng: "Debug (keep out!)"
+### English phrase was changed! Previous translation was made on:
+### "Debug (keep out!)"
+eng: "Debug (Keep Out!)"
 new: "Entwicklerbereich"

 id: LANG_USB
 desc: in the main menu
-eng: "USB (sim)"
+### English phrase was changed! Previous translation was made on:
(Continue reading)

Uwe Freese | 3 Mar 2003 14:17
Picon

cvs: firmware Makefile,1.38,1.39

Update of /cvsroot/rockbox/firmware
In directory sc8-pr-cvs1:/tmp/cvs-serv19276/firmware

Modified Files:
	Makefile 
Log Message:
export MEM variable in firmware and apps

Index: Makefile
===================================================================
RCS file: /cvsroot/rockbox/firmware/Makefile,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -b -r1.38 -r1.39
--- Makefile	7 Feb 2003 09:41:56 -0000	1.38
+++ Makefile	3 Mar 2003 13:17:49 -0000	1.39
 <at>  <at>  -17,7 +17,7  <at>  <at> 

 TOOLSDIR = ../tools

-CFLAGS = -W -Wall -O -m1 -nostdlib -ffreestanding -Wstrict-prototypes $(INCLUDES) $(TARGET) $(EXTRA_DEFINES)
+CFLAGS = -W -Wall -O -m1 -nostdlib -ffreestanding -Wstrict-prototypes $(INCLUDES) $(TARGET)
$(EXTRA_DEFINES) -DMEM=${MEM}

 ifdef DEBUG
 CFLAGS += -g -DDEBUG

Uwe Freese | 3 Mar 2003 14:17
Picon

cvs: apps Makefile,1.42,1.43

Update of /cvsroot/rockbox/apps
In directory sc8-pr-cvs1:/tmp/cvs-serv19276/apps

Modified Files:
	Makefile 
Log Message:
export MEM variable in firmware and apps

Index: Makefile
===================================================================
RCS file: /cvsroot/rockbox/apps/Makefile,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -b -r1.42 -r1.43
--- Makefile	26 Feb 2003 16:05:29 -0000	1.42
+++ Makefile	3 Mar 2003 13:17:49 -0000	1.43
 <at>  <at>  -20,7 +20,7  <at>  <at> 

 INCLUDES= -I$(FIRMWARE)/include -I$(FIRMWARE)/export -I. -I$(OBJDIR)

-CFLAGS = -O -W -Wall -m1 -nostdlib -ffreestanding -Wstrict-prototypes -fomit-frame-pointer
-fschedule-insns $(INCLUDES) $(TARGET) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(EXTRA_DEFINES)
+CFLAGS = -O -W -Wall -m1 -nostdlib -ffreestanding -Wstrict-prototypes -fomit-frame-pointer
-fschedule-insns $(INCLUDES) $(TARGET) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\"
$(EXTRA_DEFINES) -DMEM=${MEM}
 AFLAGS += -small -relax

 # Check if this is a kind of Recorder

(Continue reading)

Uwe Freese | 3 Mar 2003 14:17
Picon

cvs: tools configure,1.49,1.50

Update of /cvsroot/rockbox/tools
In directory sc8-pr-cvs1:/tmp/cvs-serv19276/tools

Modified Files:
	configure 
Log Message:
export MEM variable in firmware and apps

Index: configure
===================================================================
RCS file: /cvsroot/rockbox/tools/configure,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -b -r1.49 -r1.50
--- configure	26 Feb 2003 09:13:47 -0000	1.49
+++ configure	3 Mar 2003 13:17:49 -0000	1.50
 <at>  <at>  -424,7 +424,7  <at>  <at> 
 all: firmware apps

 firmware:
-	\$(MAKE) -C \$(FIRMDIR) TARGET=\$(TARGET) \$(DEBUG) OBJDIR=\$(THISDIR) EXTRA_DEFINES="\$(EXTRA_DEFINES)"
+	\$(MAKE) -C \$(FIRMDIR) TARGET=\$(TARGET) \$(DEBUG) OBJDIR=\$(THISDIR)
EXTRA_DEFINES="\$(EXTRA_DEFINES)" MEM=\$(MEMORYSIZE)

 apps:
 	\$(MAKE) -C \$(APPSDIR) TARGET=\$(TARGET) \$(DEBUG) OBJDIR=\$(THISDIR) VERSION=\$(VERSION)
LANGUAGE=\$(LANGUAGE) EXTRA_DEFINES="\$(EXTRA_DEFINES)" MEM=\$(MEMORYSIZE)

Uwe Freese | 3 Mar 2003 14:23
Picon

cvs: firmware powermgmt.c,1.31,1.32

Update of /cvsroot/rockbox/firmware
In directory sc8-pr-cvs1:/tmp/cvs-serv21426/firmware

Modified Files:
	powermgmt.c 
Log Message:
estimate 22 percent longer runtime when having 8 MB, assuming 192 kbps files again

Index: powermgmt.c
===================================================================
RCS file: /cvsroot/rockbox/firmware/powermgmt.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -b -r1.31 -r1.32
--- powermgmt.c	12 Feb 2003 22:21:05 -0000	1.31
+++ powermgmt.c	3 Mar 2003 13:23:11 -0000	1.32
 <at>  <at>  -381,13 +381,19  <at>  <at> 
                                                        /* LED always on or LED on when charger connected */
                 current += CURRENT_BACKLIGHT;
             powermgmt_est_runningtime_min = battery_level() * battery_capacity / 100 * 60 / current;
+#if MEM == 8 /* assuming 192 kbps, the running time is 22% longer with 8MB */
+            powermgmt_est_runningtime_min = powermgmt_est_runningtime_min * 122 / 100;
+#endif /* MEM == 8 */
         }
 #else
         current = usb_inserted() ? CURRENT_USB : CURRENT_NORMAL;
         if (backlight_get_timeout() == 1) /* LED always on */
             current += CURRENT_BACKLIGHT;
         powermgmt_est_runningtime_min = battery_level() * battery_capacity / 100 * 60 / current;
-#endif
(Continue reading)

Uwe Freese | 3 Mar 2003 14:41
Picon

cvs: docs CHARGING_ALGORITHM,1.4,1.5

Update of /cvsroot/rockbox/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv27844/docs

Modified Files:
	CHARGING_ALGORITHM 
Log Message:
estimate 22 percent longer runtime when having 8 MB, assuming 192 kbps files again

Index: CHARGING_ALGORITHM
===================================================================
RCS file: /cvsroot/rockbox/docs/CHARGING_ALGORITHM,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- CHARGING_ALGORITHM	26 Jan 2003 17:19:31 -0000	1.4
+++ CHARGING_ALGORITHM	3 Mar 2003 13:41:04 -0000	1.5
 <at>  <at>  -10,9 +10,9  <at>  <at> 

 This doc describes how the charging works for the recorder. The algorithm can be 
 found in firmware/powermgmt.[c|h]. Debug output is done in apps/debug_menu.c. 
-Charging for the player is done by the hardware and therefore isn't implemented 
-in rockbox. Only the functions that calculate the battery level are also used 
-for the player.
+Charging for the player and the FM recorder is done by the hardware and 
+therefore isn't implemented in rockbox. Only the functions that calculate the 
+battery level are also used for these models.

 All following information is related to the recorder.

 <at>  <at>  -158,7 +158,8  <at>  <at> 
(Continue reading)


Gmane