Previous day | Jump to hour: 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | Next day

Seconds: Show Hide | Joins: Show Hide | View raw
Font: Serif Sans-Serif Monospace | Size: Small Medium Large

Click in the nick column to highlight everything a person has said.
The Logo icon identifies that the person is a core developer (has commit access).

#rockbox log for 2005-12-24

00:00:57mirakBagder: When a variable is declared inside a function, the adress in ram is static once compiled right ?
00:01:09Bagderno
00:01:17Bagderit is then allocated on the stack
00:01:19mirakyes it would not work for recursive stuff
00:02:01mirakok, so that variable if I want it to be used in iram must be declared outside of any function ?
00:02:15mirakor can gcc put the in a stack in iram ?
00:02:21mirakthem/the
00:02:41Bagdergcc doesn't put stacks anywhere
00:02:47BagderRockbox does
00:03:27Bagderbut you should focus on putting the most used structs and data in iram
00:03:59Bagderand optimize the most used functions to use the EMAC
00:04:14mirakthere is an EMAC on H300 ?
00:04:18preglowyes
00:04:18 Join akaidiot [0] (n=nope@217.28.34.35)
00:04:23mirakthat's a recent discover ?
00:04:24preglowits the same cpu as h120
00:04:29Bagdermirak: nopes
00:04:33Paul_The_NerdSo will video decoding be treated as a plugin, or as a codec?
00:04:50mirakthe goal is to do a codec
00:04:53linuxstbAFAIK the stacks are in IRAM already - so if there is space for local data in functions, leave it there.
00:04:55Paul_The_NerdCool
00:05:18preglowcodec and playback stacks are in iram
00:05:27linuxstbBut not plugin stacks?
00:05:33preglowhmm
00:05:40preglowyes, i think they are
00:05:48amiconnPlugins run in the main thread
00:05:53preglowah, yes
00:05:55preglowand thats iram stack
00:06:00amiconn...and the main stack is in iram iirc
00:06:06amiconnbrb
00:06:07 Part amiconn
00:06:46linuxstbSo the answer is yes - both plugin and codec stacks are in iram.
00:07:30mirakcheck that, line 15,16 http://pastebin.com/477093
00:08:20mirakhere is declared two matrix. This matrix are used to compute idct.
00:08:41mirakI think that if they were in iram it would give a significant boost
00:09:28miraknot only idct, but well that's where the most things happen I think
00:10:27mirakif it's aready in iram well that's horrible
00:11:21linuxstbYes, it looks like that is already in iram.
00:11:27miraka crap
00:11:43mirakman I am going to give up
00:12:29 Quit NicoFR ()
00:13:24miraklinuxstb: how to be sur it's really in iram ?
00:13:24miraksure
00:13:46preglowhmm
00:14:02preglowplugin stack is enough to accomodate xvid decode without any modification?
00:14:07 Join amiconn [0] (n=jens@p54BD5F5D.dip.t-dialin.net)
00:14:28mirakI needed to increase PLUGIN_RAM at first
00:14:37mirakbut that's probably not what you are talking about
00:14:37preglowwell, yeah
00:14:43preglowbut not thread stack size
00:15:11mirakno I didn't changed anything else. And anyway now it fits in the standart PLUGIN_RAM
00:15:33preglowgoodi
00:15:33preglowe
00:15:41mirakpreglow: in fact there is a part that is delcared dynamic
00:15:53preglowman, were going to have to reserve tons of ram for the various plugin types
00:16:05preglowlike input codec, output codec, video codec, regular plugins :>
00:16:07mirakall the dynamic allocations with malloc use a fake malloc that use the audio buffer
00:17:25 Join qwisp11 [0] (n=arnott_c@cpc1-oxfd4-4-0-cust172.oxfd.cable.ntl.com)
00:17:33mirakpreglow: so you are 100% sure it already uses iram ?
00:17:47preglowyes, stack does that
00:17:54preglowbut that doesnt matter if you dont use the stack too much
00:19:00mirakwhat do you mean ?
00:22:11 Quit qwisp11 (Client Quit)
00:22:23 Quit ender` (Read error: 113 (No route to host))
00:25:00 Join webguest02 [0] (n=c35d1544@labb.contactor.se)
00:25:21mirakpreglow: what did you ment ?
00:25:46 Quit webguest02 (Client Quit)
00:25:56preglowwhat is unclear?
00:26:05preglowdo you know what a stack is?
00:26:48mirakyes
00:27:01preglowwell, then what do i say thats unclear?
00:27:06linuxstbpreglow: What do you mean by input/output codecs?
00:27:16preglowlinuxstb: playback vs recording
00:27:20mirakwhen you enter a block and declare a variable, it's put on the stack
00:27:27preglowmirak: correct
00:27:30mirakwhen you exit that block you unstack
00:27:36preglowyessir
00:27:39mirakthis allow recursivity
00:28:49mirakI did that in univ in assembly for hackerman function and probably n!
00:29:04mirakI don't remember the target processor
00:29:21 Quit akaidiot (Read error: 104 (Connection reset by peer))
00:29:40mirakit was fun ^^
00:29:55mirak<preglow> but that doesnt matter if you dont use the stack too much
00:30:14linuxstbmirak: Does your plugin compile cleanly now? i.e. without any compiler warnings?
00:30:32miraklinuxstb: no, I did not tried to fix things
00:30:45mirakthere is warnings I don't understand
00:30:52miraktheir
00:30:57mirakneverminf
00:30:58mirakd
00:31:23miraklinuxstb: I removed some warning by just remove useless code though
00:32:12mirakbeside doing idct.c in assembly, I don't see where we really can get a significant boost
00:32:16linuxstbDoes it actually display the decoded images onscreen?
00:32:20mirakyes
00:32:43mirakbut there is something wrong with image quality
00:33:14mirakit probably have to do with the converters to rgb565 because the saved pictures are fine
00:33:38linuxstbCan you upload your latest version somewhere? I would like to try it on the ipod.
00:33:47mirakI think it's on the tracker
00:34:46mirak xvid_plug-0.2.tar.bz2
00:37:47miraklinuxstb: how is it going ?
00:38:40linuxstbI just need to encode a 220x176 xvid first...
00:39:20 Join Infirit [0] (n=infirit@84-104-253-242.cable.quicknet.nl)
00:39:39mirakyou can use iriverter I guess you know it
00:39:56 Quit Infirit (Client Quit)
00:40:14linuxstbIt's OK, I'll just use ffmpeg
00:40:37mirakjust extract a minute
00:41:54mirakiit would take 12 minutes to play it :)
00:45:19 Join Infirit [0] (n=infirit@84-104-253-242.cable.quicknet.nl)
00:45:27 Part Infirit ("Leaving")
00:49:56miraklinuxstb: what's up ?
00:52:13linuxstbApart from the fact it doesn't compile?
00:52:44peturgoodnight
00:52:47 Quit petur ("here today, gone tomorrow")
00:54:28miraklinuxstb: maybe you will have a problem with vsnorintf
00:54:35mirakvsnprintf
00:54:45mirakIi added it to my plugin api
00:54:59linuxstbI've fixed that - I just removed that whole image_printf function.
00:55:03 Join Bluechip [0] (n=BlueChip@cpc2-colc1-3-0-cust143.colc.cable.ntl.com)
00:55:15linuxstb(and the two places it is used in decoder.c)
00:55:22miraklinuxstb: mmm there is the bigendian stuff
00:55:30mirakI passed the argument to the make
00:55:35linuxstbYes, I've changed that.
00:55:46mirakwhat's your error ?
00:55:46linuxstbIt's now complaining about a memcpy in mbtransquant.c
00:57:15miraklinuxstb: and there is no memcpy in that file
00:57:42mirakI had this error when he was initialising an arrat with = { 0 }
00:57:45mirakarray
00:58:07mirakbut that's probably different error here
00:58:47linuxstbYes, that was the problem.
00:58:52linuxstbAnyway, it's compiled now...
01:00
01:00:13 Join akaidiot [0] (n=nope@217.28.34.35)
01:00:14linuxstbIt seems to decode one frame, not display it and then crash.
01:03:30linuxstbUnless I'm misreading your code, you are using XVID_CSP_RGB555 - you should be using XVID_CSP_RGB565
01:04:36mirakif (rb->strcmp(colors, "rgb16") == 0) {
01:04:36mirak CSP = XVID_CSP_RGB565;
01:05:05mirakare you sure you downloaded the good one ?
01:06:07linuxstbNo :)
01:06:12 Join Kyl3 [0] (i=no@cpe-24-90-238-146.nyc.res.rr.com)
01:06:22linuxstbI downloaded the correct one, but still had the old version on my disk, and used that...
01:06:32linuxstbI'll start again.
01:06:37mirak:/
01:06:40 Quit Paul_The_Nerd ("Leaving.")
01:07:51 Join ender` [0] (i=ychat@84.52.165.220)
01:10:58 Part Bluechip
01:12:00linuxstbThis version displays the first image and then crashes...
01:14:07 Quit saa[b_r]ider ()
01:15:11***Saving seen data "./dancer.seen"
01:15:45linuxstbBut the decoded image looks good to me (after I byte-swapped it for the ipod).
01:17:37mirakthe decoded image is fine for me too, but the dark part aren't as smooth
01:18:09miraklinuxstb: chechk the button exit code
01:19:31linuxstbWhat do you mean?
01:22:15mirakyou can exit with the left arrow
01:22:27mirakmaybe it doesn't exist on the ipod ?
01:22:48linuxstbIt does exist - but it doesn't work. It just freezes after decoding the first frame.
01:24:35mirakok then maybe you should enable my ubber debug mode
01:24:49mirakno just disable write to lcd screen
01:25:11mirakand in rb_api.c
01:25:13mirakrb->lcd_update();*/
01:25:20mirakrb->lcd_puts(0, line, txt_buf);
01:25:24mirakdecomment that
01:25:40mirakin write_text()
01:25:54mirakmaybe it will tell you a bit more
01:26:12mirakbut anyway it needs to be redone cleanly
01:26:25mirakand implement debuging stuff the right way
01:28:06miraklinuxstb: you resolved that crash
01:28:16mirakmaybe you need to check the portab.h file
01:29:06mirakif you didn't checked that yet
01:31:33 Quit ender` (" It could have been worse. Imagine you were trying to download pr0n and you end up with some naruto ep.")
01:31:37mirakbonne nuit les petits
01:31:48 Quit mirak ("Ex-Chat")
01:31:57Moosbonne nuit à toi
01:38:40Moostime to sleep here too, good night @ all
01:38:51 Quit Moos ("Happy birthday Rockbox")
01:39:54preglowsleepy time, later
01:45:21 Quit muesli__ ("ich will Kühe!!!")
01:54:59 Join DJDD_ [0] (n=DJDD@220-245-186-182.static.tpgi.com.au)
02:00
02:16:19 Join Jungti1234 [0] (n=jungti12@58.77.81.144)
02:16:39 Join Paul_The_Nerd [0] (n=Paul_The@cpe-70-114-192-167.houston.res.rr.com)
02:18:08Jungti1234hey all
02:18:20Jungti1234good news
02:19:29Jungti1234http://mfiles.naver.net/62b3548f99c1af18314a/data15/2005/12/24/101/rockviewer.zip
02:20:03Jungti1234It's rockviewer that Korean does fix.
02:26:03 Quit akaidiot (Read error: 113 (No route to host))
02:28:11 Join DJDD__ [0] (n=DJDD@220-245-186-182.static.tpgi.com.au)
02:44:40 Quit DJDD_ (Read error: 110 (Connection timed out))
02:45:26 Part Paul_The_Nerd
02:58:16 Quit San||Away (Read error: 110 (Connection timed out))
03:00
03:15:13***Saving seen data "./dancer.seen"
03:21:08 Join Bluechip [0] (n=BlueChip@cpc2-colc1-3-0-cust143.colc.cable.ntl.com)
03:30:00Jungti1234source: http://mfiles.naver.net/9a4bac77613857e4c9a5/data16/2005/12/24/73/viewer2.c
03:31:17Jungti1234A little complicate.
03:36:29Jungti1234hello!!!
03:47:41 Quit Kyl3 ("( www.nnscript.de :: NoNameScript 3.81 :: www.XLhost.de )")
03:59:05 Quit Bluechip ()
04:00
04:27:05 Join saratoga [0] (n=80c4c198@labb.contactor.se)
04:31:08 Join Gibbed [0] (i=rick@pool-71-108-9-40.lsanca.dsl-w.verizon.net)
04:31:10 Quit Rick (Nick collision from services.)
04:35:49 Quit saratoga ("CGI:IRC (EOF)")
04:37:13 Join San [0] (n=test@213-202-190-125.bas504.dsl.esat.net)
05:00
05:04:34 Nick Gibbed is now known as Rick (i=rick@pool-71-108-9-40.lsanca.dsl-w.verizon.net)
05:15:19***Saving seen data "./dancer.seen"
05:28:56Jungti1234i will come back
05:28:56 Quit Jungti1234 ("bye")
05:47:16 Quit actionshrimp ("a bird in the bush is worth two in your house")
06:00
06:36:40 Join EWilliams [0] (n=ewilliam@71.16.12.66)
06:39:50EWilliamshello all, newbie here: just installed rockbox on H340 and I am in SERIOUS need of basic instructions. I don't eben know how to boot to iriver instead of rockbox, although i remember reading it is possible. Could someone please point me to a Rockbox beginner friendly FAQ Thanks!
06:43:35 Quit linuxstb ("Leaving")
06:48:11 Quit San (Read error: 110 (Connection timed out))
06:48:55 Quit EWilliams ()
07:00
07:15:20***Saving seen data "./dancer.seen"
08:00
08:20:30 Join San [0] (n=test@213-202-130-169.bas502.dsl.esat.net)
08:50:00 Join bazz [0] (n=nick@mail.uwcaw.uwc.org)
08:50:19 Join DJDD_ [0] (n=DJDD@220-245-186-182.static.tpgi.com.au)
08:54:25bazzwould people like a zoom factor option for the simulator, like you could zoom it by 1.4 or something, or is just normal or double size good enough?
09:00
09:08:23 Quit DJDD__ (Read error: 110 (Connection timed out))
09:15:22***Saving seen data "./dancer.seen"
09:17:54 Join webguest72 [0] (n=3e4f4094@labb.contactor.se)
09:18:35webguest72bazz: I doubt people need uneven zoom-factors. 1:1 and 1:2 sounds good enough
09:19:00webguest72At least I'd be happy with that
09:20:11bazzmmm, okay
09:23:05 Quit YouCeyE ("Leaving")
09:24:31 Join Soul-E [0] (n=faccess@66-190-72-175.dhcp.ftwo.tx.charter.com)
09:25:07Soul-Eyo yo
09:25:31webguest72Not that my opinion matters in the least. Just thought I'd pop in
09:25:58webguest72Perhaps WPS designers would like a 1:3 or 1:4
09:28:54 Quit San (Read error: 110 (Connection timed out))
09:29:27bazzokay, that wouldn't be too hard, as long as it was all interger multiples
09:31:13webguest72I think that's the most useful way to do it anyway
09:31:26webguest72You'd want to accurately see the pixels I'd think
09:31:30webguest72if you're zooming
09:31:56 Quit RotAtoR ("Leaving")
09:34:02bazzprobably yeah
09:37:52 Quit Vlad0man (Read error: 110 (Connection timed out))
09:38:07 Join Vlad0man [0] (n=Vladoman@p54A7CC3D.dip.t-dialin.net)
09:51:19 Quit Maxime` (Read error: 104 (Connection reset by peer))
09:52:48 Join Maxime [0] (n=flemmard@fbx.flemmard.net)
09:55:12 Join eli_sherer [0] (n=eli@IGLD-84-228-169-37.inter.net.il)
09:55:45eli_shererhello everybody got my tetrox fully working!!!!
09:57:12webguest72Now for a h1x0 version!
09:57:40 Join YouCeyE [0] (n=YouCeyE@vp089013.reshsg.uci.edu)
09:57:50eli_shererno but i'm working on it...tahat's because i dont have an h1x0
09:58:25eli_shererthat means i need to make 2 rocks...
09:59:46 Quit Rob2222 (Read error: 104 (Connection reset by peer))
09:59:51webguest72Why 2?
10:00
10:02:22eli_shererbecause it's not in the cvs...
10:02:37eli_shereri can make support for the h120 but i wont compile it...
10:02:54 Join Rob2222 [0] (n=Miranda@ACB736E3.ipt.aol.com)
10:03:13eli_shererthe rock file suits only he player it was compiled to...
10:07:30webguest72I thought you meant two source-files
10:07:47webguest72Also, why won't you compile a h120 version? You already have the tools necessary
10:14:18 Join mozetti [0] (n=moe@p54A84EE7.dip.t-dialin.net)
10:15:19eli_shereri guess..
10:15:53eli_shererlets try...i just optimized the same source to work on the h1x0 as well...
10:16:47eli_shererwhats the difference between H120,H140 and iHP100/iHP-110/iHP-115 ???
10:17:29mozettii'm pretty sure it's the HDD size - 10/15/20/240
10:17:41 Quit Nibbler (Read error: 110 (Connection timed out))
10:17:53mozettithough I have to admit I've never heard of a iHP115
10:18:00 Join Nibbler [0] (n=sven@port-212-202-193-200.dynamic.qsc.de)
10:18:09eli_shereri checked it and they are the same they just have different compilings...
10:18:22eli_shererill make H120,H140
10:18:47eli_sherernow im building...it's gonna take some while...
10:19:29eli_shererwebguest72: who are you if i may?
10:22:18webguest72I'm not really anyone
10:22:50webguest72Not anyone that you'd know, I don't post anywhere or anything
10:22:57webguest72Just follow Rockbox from afar
10:23:45eli_shererwell i made a rock for the h100...how do you want to try it?
10:24:23webguest72Sure, can I download it from anywhere?
10:25:16eli_shererill upload it to my site
10:25:25webguest72Also, the ihp100, 110 and 115 have 16mb ram but nothing that plugins should worry about
10:25:31amiconneli_sherer: The H100/H110 only have 16MB RAM, and of course the disk size is different
10:26:03eli_shereramiconn: but if i compiled the plugin to work on h120 would it work on an h110?
10:26:10amiconnnope
10:26:20amiconnYou need to compile separately
10:26:34eli_shereri thought so...
10:26:56amiconnThe plugin area is at the end of RAM, and since the RAM sizes are different, the plugin area address is different too
10:27:06eli_sherereventually the solution to the poblem will to add it to the cvs...
10:29:09eli_shererwebguest72: d/l it from here [http://www.freewebs.com/eli_sherer/tetrox-h100.zip]!
10:30:17webguest72"We are sorry, this page was not found. Please check the URL and try again."
10:31:30eli_shererthe mirc adds the ]! by mistake..
10:31:38eli_shererhttp://www.freewebs.com/eli_sherer/tetrox-h100.zip
10:33:21 Quit Maxime (Read error: 104 (Connection reset by peer))
10:34:25 Join Maxime [0] (n=flemmard@fbx.flemmard.net)
10:34:35eli_shererwebguest72: I would appreciate some feedback when you get it going...
10:35:20webguest72It works
10:35:27webguest72But... the screen is not large enough
10:38:33eli_shererwhat do you mean?
10:39:04eli_shererH120 has a smaller screen????
10:40:03eli_shereroh no 160x128...didn't thought of that..
10:41:03webguest72Yup
10:44:05webguest72But it did in fact work, other than that
10:44:15webguest72Time to break out LCD_WIDTH and LCD_HEIGHT I guess
10:46:44Papricaeli_sherer?
10:46:52Papricacan you help for a moment?
10:49:57eli_sherersure
10:50:32Papricamm ok in private? (for speak hebrew)
10:53:07eli_sherersure...
10:53:27 Quit mozetti (Read error: 110 (Connection timed out))
10:53:31 Join Rob2222_ [0] (n=Miranda@ACB736E3.ipt.aol.com)
10:58:55 Join mozetti [0] (n=moe@p54A84EE7.dip.t-dialin.net)
11:00
11:00:50 Part bazz ("Leaving")
11:02:28 Join San [0] (n=test@212.2.172.169)
11:03:09 Quit webguest72 ("CGI:IRC (EOF)")
11:05:38eli_shererand i just fixed the h1x0..
11:07:44eli_shereranybody with an H120 or H140???
11:08:03Maximeyes
11:08:40eli_sherercan you help me test my tetris port for the h1x0?
11:08:49 Quit Rob2222 (Read error: 110 (Connection timed out))
11:08:54Maximeyeah if u want
11:09:44eli_shererin a couple of seconds ill upload the file to my site
11:15:24***Saving seen data "./dancer.seen"
11:15:43eli_sherercan you dl it now from http://www.freewebs.com/eli_sherer/tetrox-h100.zip
11:15:54Maximeok
11:17:34Maximew8 i have to upgrade rockbox ^^
11:17:59eli_sherersure..
11:18:21Maxime(more than a week..)
11:19:35Maximegreat ^^
11:19:51eli_sherer?
11:19:59Maximeit works
11:20:09eli_shererbut does it work well?
11:20:22Maximeyeah
11:20:45Maximebut
11:20:46Maximea bug
11:20:50Maximewith a 4 squares
11:20:58Maximeif you flip it when you are low
11:21:04Maximeit becomes 3 squares long
11:23:01Maximeyou see?
11:23:17Maximewhen you approach the bottom like this ____
11:23:28Maximeand when you flip it, you have only 2-3 squares left
11:25:01eli_shereri really don't know what is the cause of that...lol
11:25:33eli_shererand by the way all the figures are 4 squares thats why it called tetrominoes...
11:26:07Maximeyes i meant the 4 squares in line
11:26:10Maximethe long bar
11:27:08Maximein all the tetris games, if you approach the botton, you can't flip it anymore
11:27:10Maximein yours, you can
11:27:12Maximeso it's buggy
11:27:24eli_shereryour absolutly right it happens on the color version too
11:27:42Maxime^^
11:28:59eli_shererfixed it right now...there was an error in my code 10q for noticing...
11:29:00Maximeand, you may add the abiliy to restart the game without restarting the plugin?
11:29:19eli_sherermaybe record button??
11:29:41eli_shereror play...i think play is best
11:29:49Maximeor a menu, just don't quit the plugin..
11:32:20eli_shererok
11:34:09 Join miner49er [0] (n=miner49e@82-32-84-226.cable.ubr01.chap.blueyonder.co.uk)
11:36:48eli_shereripod has only 7 buttons while h300 has 9 lol
11:37:01 Quit Maxime (Read error: 104 (Connection reset by peer))
11:38:34 Join Maxime [0] (n=flemmard@fbx.flemmard.net)
12:00
12:06:21eli_shererand again i had another bug (concerning game over)
12:07:00eli_shererand it is even optimised the code a little bit
12:12:24 Quit San (Read error: 110 (Connection timed out))
12:26:14 Join ender` [0] (i=ychat@84.52.165.220)
12:37:58 Join Infirit [0] (n=infirit@84-104-253-242.cable.quicknet.nl)
12:38:32 Quit Infirit (Client Quit)
12:39:19 Join Jungti1234 [0] (n=3a4d5190@labb.contactor.se)
12:39:25Jungti1234hi
12:39:47 Part miner49er
12:45:36 Join Ry4nz [0] (n=user@broadband-197-9.sarimulia.net)
12:46:29 Quit Jungti1234 ("CGI:IRC (EOF)")
12:49:27 Quit mozetti ()
12:52:54 Quit Ry4nz ()
12:54:06eli_shererjungti1234: hello
12:55:58 Quit edx (Read error: 110 (Connection timed out))
12:59:28 Join Mad_Big_Sausage [0] (n=Mad_Big_@213-202-146-9.bas502.dsl.esat.net)
13:00
13:00:10 Join nathanh [0] (n=nathanh@220-245-216-23-act-pppoe.tpgi.com.au)
13:07:25 Quit DJDD_ ("Trillian (http://www.ceruleanstudios.com")
13:11:24 Join elisherer [0] (n=eli@IGLD-84-228-23-114.inter.net.il)
13:13:52 Join muesli__ [0] (i=muesli_t@88.134.22.177)
13:14:26 Join amiconn_ [0] (n=jens@p54BD6D11.dip.t-dialin.net)
13:14:29muesli__re
13:15:25***Saving seen data "./dancer.seen"
13:17:12Mad_Big_Sausagere: re
13:30:50 Quit eli_sherer (Read error: 110 (Connection timed out))
13:32:20 Quit amiconn (Read error: 110 (Connection timed out))
13:32:21 Nick amiconn_ is now known as amiconn (n=jens@p54BD6D11.dip.t-dialin.net)
13:40:38 Join Moos [0] (i=DrMoos@m53.net81-66-159.noos.fr)
13:41:11MoosHello everyone, Happy Christmas to all
13:43:06nathanhmerciful saturnia to all pagan fellows
13:48:08 Join San [0] (n=test@212.2.172.169)
13:49:23 Nick elisherer is now known as eli_sherer (n=eli@IGLD-84-228-23-114.inter.net.il)
14:00
14:04:06 Join edx [0] (i=edx@p54A86B12.dip.t-dialin.net)
14:04:41 Join mirak [0] (n=mirak@ip-71.net-81-220-111.rev.numericable.fr)
14:05:21 Join elisherer [0] (n=eli@IGLD-84-228-23-114.inter.net.il)
14:08:47Mooselisherer: Hi, is your plugin working for h120 build somewhere please?
14:08:58MoosI want to test it
14:10:17Moostetrox I mean soory
14:10:32DBUGEnqueued KICK Paprica
14:10:32PapricaMoos - http://www.freewebs.com/eli_sherer/tetrox-h100.zip
14:10:48Mad_Big_Sausagehere you go: http://www.freewebs.com/eli_sherer/
14:10:49Moosthanks Paprica
14:11:00Papricanop
14:11:31 Quit Mad_Big_Sausage ("See ya!")
14:13:12Moosit looks good
14:13:31Moosjust a litle big for h1xx screen but good
14:14:36CtcpIgnored 1 channel CTCP requests in 0 seconds at the last flood
14:14:36*Moos is playing a bit tetrox, long time he didn't play Tetris
14:16:02MoosPaprica: how goes your plugin?
14:16:38Papricamm
14:16:46Moos:)
14:16:48Papricawe have levels =]
14:17:03Mooshooray!
14:17:08Papricahttp://misticriver.net/showthread.php?t=33971
14:17:39Papricanow im working on diffrent color for the bricks
14:17:55Mooscool
14:18:29Moosdoes it work already for other irivers?
14:18:46Papricano
14:18:53Papricaonly for h3xx now
14:19:26Moosyou want to do it full working for h3xx first? :)
14:19:40Papricayep
14:20:25MoosI'm agree with one post in forum you pointed to me, arkanoïne is one fundamental game
14:20:29Moos:D
14:20:38Papricahttp://img379.imageshack.us/my.php?image=dump00511tx.png
14:20:41Moos*arkanoïde
14:21:06Mooshey, it looks fine
14:21:13muesli__kewl Paprica :)
14:21:20Paprica=]
14:21:29muesli__cross my fingers i'll get my h3xx still today
14:21:31MoosPaprica: how many different levels currently?
14:21:42Paprica11
14:21:42Moosmuesli: Hello
14:21:44 Quit eli_sherer (Read error: 110 (Connection timed out))
14:21:54muesli__hossa Moos :)
14:22:05MoosPaprica: 11 levels
14:22:08Moos?
14:22:09Papricayep
14:22:15Moosmk
14:22:24Papricamk=?
14:22:29muesli__mmh okay
14:22:32muesli__;)
14:22:32Moos:)
14:22:34Paprica=]
14:22:36 Quit San (Read error: 104 (Connection reset by peer))
14:23:21Moosmuesli: Ronnaldihno n°1 ;)
14:23:46muesli__but he is not french...whatst the point? ;)
14:24:15Moosno he is, but he played here in Paris
14:24:33Moosis one "god"
14:24:49 Quit DiveineIn ()
14:25:25MoosHenry don't have the level for golden ball or much
14:25:36MoosZizou have but a bit old now :)
14:25:43muesli__;)
14:25:49muesli__henry will sort it
14:26:08MoosHenry will maybe go to Barcelona
14:26:30Moosand don't play much then
14:27:01muesli__guess its time for a change..he spend quite long time in london, isnt he?
14:27:54Moosyes I'm agreed too, but he will can't make a lot of goals like like in England, Spain or Italia is one other thing
14:27:56Moos:D
14:28:34*Moos acknowledge he don't like much Henry :)
14:29:41*Moos prefer players like Ronaldo,Shevchenko... instead of
14:30:26*Moos is just noticed he is speaking on the rockbox chanel, not soccer one :D
14:30:32Moossorry folks
14:32:25 Join akaidiot [0] (n=nope@217.28.34.35)
14:35:01Mooslunch time
14:36:59 Join San [0] (n=test@212.2.172.169)
14:37:34mirakMoos: you don't like Henry ?
14:37:40mirakshame on you !!!
14:37:52mirakhe maybe have the melon a bit
14:38:17MoosI don't like him, he is usurper
14:38:23Moosyes a bi melon
14:38:29Moos1 pastèque :D
14:39:12Mooshe is fast, nothing much ;)
14:39:23mirakhe don't score enough for us
14:39:47Moosin England make goal is easy
14:40:05*Moos remenbering Anelka
14:40:09mirakfrench championship sucks
14:40:17mirakI prefer basketball anyway
14:40:39Moos:D
14:40:58MoosI prefer Italia and Spain championship
14:41:39Moosthe french basketball championship sucks too :)
14:42:26 Join ]RowaN[ [0] (i=a2b0y@82-43-214-84.cable.ubr10.newm.blueyonder.co.uk)
14:43:10]RowaN[guys is there a way to actaully apply replaygain normalisationg to wav files, so that a cd can be burned where all the tracks are the same volume?
14:43:10 Join actionshrimp [0] (n=NNSCRIPT@host86-140-233-253.range86-140.btcentralplus.com)
14:43:29]RowaN[normalisationg is a new word i just made up, it means normalising
14:44:34 Join miner49er [0] (n=miner49e@82-32-84-226.cable.ubr01.chap.blueyonder.co.uk)
14:44:46Moosdid you try foobar 2k?
14:45:04]RowaN[i have it installed, i didnt know it could write onto cds?
14:45:51]RowaN[or does it have a wav out feature like winamp?
14:45:53Moosthe infos are in meta datas area, I supose when you burn, you burn all infos too
14:46:31Moossorry I don't burn a lot, can't help a lot :(
14:46:41]RowaN[a normal cd player will not make use of the replaygain metadata.. i want to use replaygain metadata to normalise the wavs before i write them to cd
14:47:02Moosahhh
14:47:15]RowaN[in the same way that mp3gain alters the volume of a mp3 i guess?
14:47:25Moosis one riper software option me think
14:47:42]RowaN[eh?
14:48:21]RowaN[lets see if mp3 gain can alter wav files..
14:48:24 Join eli_sherer [0] (n=eli@IGLD-84-228-23-114.inter.net.il)
14:48:56Moosold version of mp3 gain altered song, yes
14:49:17Moosnow it use tag too(APE°
14:50:13]RowaN[hmm doesnt seem to support wav files anyway
14:50:22Moos:(
14:50:36]RowaN[i bet replaygain.org will have no help lol
14:50:44Moos:)
14:50:47Moostry
14:51:59 Quit elisherer (Read error: 110 (Connection timed out))
14:52:02]RowaN["Load up your flac files in Foobar and convert with the Diskwriter module, but leave "Use ReplayGain" checked"
14:52:43]RowaN["Or, even easier for your task, use Burrrn! 1.14 beta2 (a very stable beta, available here). With it you can select wether burn with "album gain", "track gain" or none"
14:52:51MoosLunch time for me good luck RowaN
14:52:57]RowaN[i bet burrrn doesnt support cd-text =]
14:53:08]RowaN["You can burn using staright from foobar using the Nero engine, with or without ReplayGain. The component is called foo_burninate"
15:00
15:11:01SlasheriHmm, i think now the tag cache should be at the stage that somebody interested with an archos device could try to compile and make it working for archoses :)
15:15:28***Saving seen data "./dancer.seen"
15:15:55 Join Maxime` [0] (n=flemmard@fbx.flemmard.net)
15:15:55 Quit Maxime (Read error: 104 (Connection reset by peer))
15:20:20 Quit akaidiot (Read error: 110 (Connection timed out))
15:27:27mirakMoos: yeah it sucks
15:35:49 Quit mirak (Remote closed the connection)
15:39:05 Join Maxime [0] (n=flemmard@fbx.flemmard.net)
15:39:05 Quit Maxime` (Read error: 104 (Connection reset by peer))
15:52:35 Join Paul_The_Nerd [0] (n=Paul_The@cpe-70-114-192-167.houston.res.rr.com)
15:56:52 Join Jungti1234 [0] (n=3a4d5190@labb.contactor.se)
15:57:37Jungti1234Merry Christmas!
15:58:42 Join Febs [0] (n=medifebb@207-172-122-81.c3-0.rdl-ubr4.trpr-rdl.pa.cable.rcn.com)
15:59:44 Quit ]RowaN[ ("merry everybody")
16:00
16:04:11Jungti1234hey eh
16:06:33 Part Paul_The_Nerd
16:07:48 Join einhirn [0] (i=Miranda@szgt-d9b8e2a7.pool.mediaWays.net)
16:08:07MoosJungti: Happy Christmas to you too
16:09:24Jungti1234:) Thanks
16:22:57preglowyes, agreed
16:23:11preglowhave nice evening, folks, i'm out
16:23:30Moosbye preglow have fun
16:34:53Jungti1234grrrrr
16:35:12 Join Paul_The_Nerd [0] (n=Paul_The@cpe-70-114-192-167.houston.res.rr.com)
16:44:41 Quit einhirn ("Miranda IM! Smaller, Faster, Easier. http://miranda-im.org")
16:48:59 Quit Paul_The_Nerd ("Leaving.")
16:52:38Jungti1234good night
16:52:40 Quit Jungti1234 ("CGI:IRC")
17:00
17:08:35 Join markun [0] (n=karl@bastards.student.ipv6.utwente.nl)
17:15:32***Saving seen data "./dancer.seen"
17:19:22 Join San||Away [0] (n=test@212.2.172.169)
17:23:31 Quit markun ("leaving")
17:25:12 Quit San (Read error: 110 (Connection timed out))
17:28:55eli_sherernew URL for the plugins everybody... http://www.members.lycos.co.uk/plugbox
17:29:57 Join mozetti [0] (n=moe@p54A84EE7.dip.t-dialin.net)
17:34:50Mooseli_sherer: maybe you could create a link somwhere in the wiki, or one new page
17:40:44 Quit San||Away (Read error: 110 (Connection timed out))
17:41:15eli_shererMoos: I dont see where it would fit...
17:41:39Moosmaybe in the plugin page?
17:42:36 Quit Rob2222_ (Read error: 104 (Connection reset by peer))
17:44:37eli_shererMoos: here u go... http://www.rockbox.org/twiki/bin/view/Main/PluginIndex
17:44:38 Join Rob2222 [0] (n=Miranda@ACB3C1B1.ipt.aol.com)
17:45:02Moosgoodie :)
17:45:27 Join t0mas [0] (n=Tomas@unaffiliated/t0mas)
17:45:55MoosHello t0mas
17:46:02t0mashi
17:53:06 Join San||Away [0] (n=test@A-23-194.cust.iol.ie)
17:53:27 Join Philip_0729 [0] (n=Philip_0@user-1378.wfd79b.dsl.pol.co.uk)
17:55:06 Quit Paprica (Read error: 110 (Connection timed out))
17:57:50 Join Paprica [0] (n=Paprica@85-250-90-202.bb.netvision.net.il)
17:59:07mozettihaha, first time i was wished "merry xmas" from an irc server ;)
18:00
18:01:21Mode"#rockbox +o t0mas " by ChanServ (ChanServ@services.)
18:01:24t0maswoops
18:01:28Mode"#rockbox -o t0mas " by t0mas (n=Tomas@unaffiliated/t0mas)
18:01:35t0maswrong channel
18:12:06HClo-o.
18:19:25 Join elisherer [0] (n=eli@IGLD-84-228-23-114.inter.net.il)
18:20:02 Quit Febs ()
18:22:33 Join Maxime` [0] (n=flemmard@fbx.flemmard.net)
18:29:50 Nick mozetti is now known as mozetti|afk (n=moe@p54A84EE7.dip.t-dialin.net)
18:30:36 Quit t0mas ("brb")
18:32:01 Join Mxm [0] (n=flemmard@fbx.flemmard.net)
18:35:43 Quit Maxime (Read error: 110 (Connection timed out))
18:42:27 Quit eli_sherer (Read error: 110 (Connection timed out))
18:44:53 Join Maxime [0] (n=flemmard@fbx.flemmard.net)
18:47:14 Quit Philip_0729 (Read error: 110 (Connection timed out))
18:47:27 Quit Maxime` (Read error: 110 (Connection timed out))
18:53:33 Quit mozetti|afk (Read error: 110 (Connection timed out))
18:54:19 Quit San||Away (Read error: 110 (Connection timed out))
19:00
19:00:51 Quit Mxm (Read error: 110 (Connection timed out))
19:15:35***Saving seen data "./dancer.seen"
19:32:12 Quit elisherer ()
19:45:08 Join mozetti|afk [0] (n=moe@p54A85474.dip.t-dialin.net)
19:57:10Papricasomeone know how to edit the main menu?
20:00
20:01:32 Quit Soul-E (Read error: 110 (Connection timed out))
20:04:18 Join Maxime` [0] (n=flemmard@fbx.flemmard.net)
20:08:45 Join t0mas [0] (n=Tomas@ip503c08d1.speed.planet.nl)
20:11:23 Join DrMoos [0] (i=DrMoos@m53.net81-66-159.noos.fr)
20:12:36 Quit Moos (Read error: 104 (Connection reset by peer))
20:12:43 Nick DrMoos is now known as Moos (i=DrMoos@m53.net81-66-159.noos.fr)
20:18:55 Quit Maxime (Read error: 110 (Connection timed out))
20:23:12bagawkPaprica: edit apps/main_menu.c
20:23:28Paprica10x
20:23:52Papricayou know where #define PLUGIN_DIR ...
20:23:59 Join Soul-E [0] (n=faccess@66-190-72-175.dhcp.ftwo.tx.charter.com)
20:24:00Paprica?
20:24:04bagawkI think apps/tree.c
20:24:40Papricano
20:24:40Paprica=\
20:25:01bagawkOne sec
20:25:22Papricak
20:25:54bagawkI do not have the source tree to search
20:26:19bagawkIf you are using linux or cygwin you can just run grep -i -E '#define PLUGIN_DIR' rockbox -R
20:27:04Papricaok
20:27:58bagawkIt is in apps/settings.h
20:28:00bagawk:)
20:32:11 Join San||Away [0] (n=test@213-202-140-28.bas502.dsl.esat.net)
20:33:04Paprica10q!!
20:34:00bagawkPaprica: What is meant by that (and 10x?)
20:34:21Papricathank u
20:34:25Papricathanx
20:35:31bagawkOhh
20:35:40bagawkWelcome
20:36:04Paprica=]
20:36:54bagawkWhoops
20:37:03*bagawk just made a mistake
20:37:11bagawkrm * .c
20:37:19bagawkI did nopt mean to put a space!
20:37:24Papricayippee! i have games in the menu=]
20:37:36bagawkLucky not much was in the directory
20:38:00bagawkPaprica: I bet that makes it quicker than sorting through the plugins
20:38:38Papricamm i just check it on the simulator
20:38:50Papricanow i compile it for the iriver
20:40:50*bagawk does not know the keys for the iriver sim
20:41:10Paprica=\
20:48:27 Quit Soul-E (Read error: 110 (Connection timed out))
20:51:21San||AwaylinusN?
20:55:02Papricahe isnt here
20:55:04Paprica=\
20:57:02San||Awayk
20:59:42 Quit Moos (Read error: 110 (Connection timed out))
21:00
21:02:08 Join Moos [0] (i=DrMoos@m53.net81-66-159.noos.fr)
21:05:04 Quit actionshrimp (Read error: 110 (Connection timed out))
21:15:39***Saving seen data "./dancer.seen"
22:00
22:01:44 Join actionshrimp [0] (n=NNSCRIPT@host86-140-233-253.range86-140.btcentralplus.com)
22:08:18 Quit solexx (Read error: 104 (Connection reset by peer))
22:08:24PapricaSan||Away: you build some plugin?
22:12:28 Join solexx [0] (n=jrschulz@c219130.adsl.hansenet.de)
22:28:26 Join NicoFR [0] (n=nico404@rob92-6-82-231-243-63.fbx.proxad.net)
22:37:09 Quit NicoFR ()
22:40:44 Join Paul_The_Nerd [0] (n=Paul_The@cpe-70-114-192-167.houston.res.rr.com)
22:53:22 Part Paul_The_Nerd
23:00
23:15:42***Saving seen data "./dancer.seen"
23:24:10San||Awayme?
23:25:49 Join webguest87 [0] (n=c35d1524@labb.contactor.se)
23:27:06 Quit webguest87 (Client Quit)
23:27:27 Join webguest92 [0] (n=acd84818@labb.contactor.se)
23:28:12 Quit webguest92 (Client Quit)
23:33:51 Join saa[b_r]ider [0] (n=saab_rid@61.149.21.22)
23:34:59 Join DJDD_ [0] (n=DJDD@220-245-186-182.static.tpgi.com.au)
23:48:16 Join dpassen1 [0] (n=dpassen1@cpe-24-168-110-99.si.res.rr.com)
23:50:18 Join andrewmel [0] (n=andrewme@220-253-106-87.TAS.netspace.net.au)
23:52:36andrewmelhi all
23:52:51andrewmelwondering if anybody can teach me how to install a patch?
23:53:14nathanhpatch -p0 -s −−dry-run < foo.patch
23:53:15Bagderhttp://www.rockbox.org/twiki/bin/view/Main/WorkingWithPatches
23:53:21nathanhif that doesnt complain, remove the −−dry-run and try again
23:53:53Bagderand http://www.rockbox.org/twiki/bin/view/Main/SimpleGuideToCompiling#Adding_Patches
23:56:19andrewmelcheers for that, but it is looking a bit complicated for me at the moment, not the thing to wrap my head around on xmas morning :)
23:58:13Bagderchicken!
23:58:15Bagder;-P

Previous day | Next day