--- Log for 24.12.105 Server: brown.freenode.net Channel: #rockbox --- Nick: logbot Version: Dancer V4.16 Started: 1 day and 16 hours ago 00.00.57 # Bagder: When a variable is declared inside a function, the adress in ram is static once compiled right ? 00.01.09 # no 00.01.17 # it is then allocated on the stack 00.01.19 # yes it would not work for recursive stuff 00.02.01 # ok, so that variable if I want it to be used in iram must be declared outside of any function ? 00.02.15 # or can gcc put the in a stack in iram ? 00.02.21 # them/the 00.02.41 # gcc doesn't put stacks anywhere 00.02.47 # Rockbox does 00.03.27 # but you should focus on putting the most used structs and data in iram 00.03.59 # and optimize the most used functions to use the EMAC 00.04.14 # there is an EMAC on H300 ? 00.04.18 # yes 00.04.18 Join akaidiot [0] (n=nope@217.28.34.35) 00.04.23 # that's a recent discover ? 00.04.24 # its the same cpu as h120 00.04.29 # mirak: nopes 00.04.33 # So will video decoding be treated as a plugin, or as a codec? 00.04.50 # the goal is to do a codec 00.04.53 # AFAIK the stacks are in IRAM already - so if there is space for local data in functions, leave it there. 00.04.55 # Cool 00.05.18 # codec and playback stacks are in iram 00.05.27 # But not plugin stacks? 00.05.33 # hmm 00.05.40 # yes, i think they are 00.05.48 # Plugins run in the main thread 00.05.53 # ah, yes 00.05.55 # and thats iram stack 00.06.00 # ...and the main stack is in iram iirc 00.06.06 # brb 00.06.07 Part amiconn 00.06.46 # So the answer is yes - both plugin and codec stacks are in iram. 00.07.30 # check that, line 15,16 http://pastebin.com/477093 00.08.20 # here is declared two matrix. This matrix are used to compute idct. 00.08.41 # I think that if they were in iram it would give a significant boost 00.09.28 # not only idct, but well that's where the most things happen I think 00.10.27 # if it's aready in iram well that's horrible 00.11.21 # Yes, it looks like that is already in iram. 00.11.27 # a crap 00.11.43 # man I am going to give up 00.12.29 Quit NicoFR () 00.13.24 # linuxstb: how to be sur it's really in iram ? 00.13.24 # sure 00.13.46 # hmm 00.14.02 # plugin 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.28 # I needed to increase PLUGIN_RAM at first 00.14.37 # but that's probably not what you are talking about 00.14.37 # well, yeah 00.14.43 # but not thread stack size 00.15.11 # no I didn't changed anything else. And anyway now it fits in the standart PLUGIN_RAM 00.15.33 # goodi 00.15.33 # e 00.15.41 # preglow: in fact there is a part that is delcared dynamic 00.15.53 # man, were going to have to reserve tons of ram for the various plugin types 00.16.05 # like input codec, output codec, video codec, regular plugins :> 00.16.07 # all 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.33 # preglow: so you are 100% sure it already uses iram ? 00.17.47 # yes, stack does that 00.17.54 # but that doesnt matter if you dont use the stack too much 00.19.00 # what 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.21 # preglow: what did you ment ? 00.25.46 Quit webguest02 (Client Quit) 00.25.56 # what is unclear? 00.26.05 # do you know what a stack is? 00.26.48 # yes 00.27.01 # well, then what do i say thats unclear? 00.27.06 # preglow: What do you mean by input/output codecs? 00.27.16 # linuxstb: playback vs recording 00.27.20 # when you enter a block and declare a variable, it's put on the stack 00.27.27 # mirak: correct 00.27.30 # when you exit that block you unstack 00.27.36 # yessir 00.27.39 # this allow recursivity 00.28.49 # I did that in univ in assembly for hackerman function and probably n! 00.29.04 # I don't remember the target processor 00.29.21 Quit akaidiot (Read error: 104 (Connection reset by peer)) 00.29.40 # it was fun ^^ 00.29.55 # but that doesnt matter if you dont use the stack too much 00.30.14 # mirak: Does your plugin compile cleanly now? i.e. without any compiler warnings? 00.30.32 # linuxstb: no, I did not tried to fix things 00.30.45 # there is warnings I don't understand 00.30.52 # their 00.30.57 # neverminf 00.30.58 # d 00.31.23 # linuxstb: I removed some warning by just remove useless code though 00.32.12 # beside doing idct.c in assembly, I don't see where we really can get a significant boost 00.32.16 # Does it actually display the decoded images onscreen? 00.32.20 # yes 00.32.43 # but there is something wrong with image quality 00.33.14 # it probably have to do with the converters to rgb565 because the saved pictures are fine 00.33.38 # Can you upload your latest version somewhere? I would like to try it on the ipod. 00.33.47 # I think it's on the tracker 00.34.46 # xvid_plug-0.2.tar.bz2 00.37.47 # linuxstb: how is it going ? 00.38.40 # I 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.39 # you can use iriverter I guess you know it 00.39.56 Quit Infirit (Client Quit) 00.40.14 # It's OK, I'll just use ffmpeg 00.40.37 # just extract a minute 00.41.54 # iit 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.56 # linuxstb: what's up ? 00.52.13 # Apart from the fact it doesn't compile? 00.52.44 # goodnight 00.52.47 Quit petur ("here today, gone tomorrow") 00.54.28 # linuxstb: maybe you will have a problem with vsnorintf 00.54.35 # vsnprintf 00.54.45 # Ii added it to my plugin api 00.54.59 # I'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.15 # (and the two places it is used in decoder.c) 00.55.22 # linuxstb: mmm there is the bigendian stuff 00.55.30 # I passed the argument to the make 00.55.35 # Yes, I've changed that. 00.55.46 # what's your error ? 00.55.46 # It's now complaining about a memcpy in mbtransquant.c 00.57.15 # linuxstb: and there is no memcpy in that file 00.57.42 # I had this error when he was initialising an arrat with = { 0 } 00.57.45 # array 00.58.07 # but that's probably different error here 00.58.47 # Yes, that was the problem. 00.58.52 # Anyway, it's compiled now... 01.00.13 Join akaidiot [0] (n=nope@217.28.34.35) 01.00.14 # It seems to decode one frame, not display it and then crash. 01.03.30 # Unless I'm misreading your code, you are using XVID_CSP_RGB555 - you should be using XVID_CSP_RGB565 01.04.36 # if (rb->strcmp(colors, "rgb16") == 0) { 01.04.36 # CSP = XVID_CSP_RGB565; 01.05.05 # are you sure you downloaded the good one ? 01.06.07 # No :) 01.06.12 Join Kyl3 [0] (i=no@cpe-24-90-238-146.nyc.res.rr.com) 01.06.22 # I downloaded the correct one, but still had the old version on my disk, and used that... 01.06.32 # I'll start again. 01.06.37 # :/ 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.00 # This 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.45 # But the decoded image looks good to me (after I byte-swapped it for the ipod). 01.17.37 # the decoded image is fine for me too, but the dark part aren't as smooth 01.18.09 # linuxstb: chechk the button exit code 01.19.31 # What do you mean? 01.22.15 # you can exit with the left arrow 01.22.27 # maybe it doesn't exist on the ipod ? 01.22.48 # It does exist - but it doesn't work. It just freezes after decoding the first frame. 01.24.35 # ok then maybe you should enable my ubber debug mode 01.24.49 # no just disable write to lcd screen 01.25.11 # and in rb_api.c 01.25.13 # rb->lcd_update();*/ 01.25.20 # rb->lcd_puts(0, line, txt_buf); 01.25.24 # decomment that 01.25.40 # in write_text() 01.25.54 # maybe it will tell you a bit more 01.26.12 # but anyway it needs to be redone cleanly 01.26.25 # and implement debuging stuff the right way 01.28.06 # linuxstb: you resolved that crash 01.28.16 # maybe you need to check the portab.h file 01.29.06 # if 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.37 # bonne nuit les petits 01.31.48 Quit mirak ("Ex-Chat") 01.31.57 # bonne nuit à toi 01.38.40 # time to sleep here too, good night @ all 01.38.51 Quit Moos ("Happy birthday Rockbox") 01.39.54 # sleepy 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.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.08 # hey all 02.18.20 # good news 02.19.29 # http://mfiles.naver.net/62b3548f99c1af18314a/data15/2005/12/24/101/rockviewer.zip 02.20.03 # It'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.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.00 # source: http://mfiles.naver.net/9a4bac77613857e4c9a5/data16/2005/12/24/73/viewer2.c 03.31.17 # A little complicate. 03.36.29 # hello!!! 03.47.41 Quit Kyl3 ("( www.nnscript.de :: NoNameScript 3.81 :: www.XLhost.de )") 03.59.05 Quit Bluechip () 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.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.56 # i 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.36.40 Join EWilliams [0] (n=ewilliam@71.16.12.66) 06.39.50 # hello 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.15.20 *** Saving seen data "./dancer.seen" 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.25 # would 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.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.35 # bazz: I doubt people need uneven zoom-factors. 1:1 and 1:2 sounds good enough 09.19.00 # At least I'd be happy with that 09.20.11 # mmm, 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.07 # yo yo 09.25.31 # Not that my opinion matters in the least. Just thought I'd pop in 09.25.58 # Perhaps WPS designers would like a 1:3 or 1:4 09.28.54 Quit San (Read error: 110 (Connection timed out)) 09.29.27 # okay, that wouldn't be too hard, as long as it was all interger multiples 09.31.13 # I think that's the most useful way to do it anyway 09.31.26 # You'd want to accurately see the pixels I'd think 09.31.30 # if you're zooming 09.31.56 Quit RotAtoR ("Leaving") 09.34.02 # probably 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.45 # hello everybody got my tetrox fully working!!!! 09.57.12 # Now for a h1x0 version! 09.57.40 Join YouCeyE [0] (n=YouCeyE@vp089013.reshsg.uci.edu) 09.57.50 # no but i'm working on it...tahat's because i dont have an h1x0 09.58.25 # that means i need to make 2 rocks... 09.59.46 Quit Rob2222 (Read error: 104 (Connection reset by peer)) 09.59.51 # Why 2? 10.02.22 # because it's not in the cvs... 10.02.37 # i 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.13 # the rock file suits only he player it was compiled to... 10.07.30 # I thought you meant two source-files 10.07.47 # Also, 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.19 # i guess.. 10.15.53 # lets try...i just optimized the same source to work on the h1x0 as well... 10.16.47 # whats the difference between H120,H140 and iHP100/iHP-110/iHP-115 ??? 10.17.29 # i'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.53 # though 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.09 # i checked it and they are the same they just have different compilings... 10.18.22 # ill make H120,H140 10.18.47 # now im building...it's gonna take some while... 10.19.29 # webguest72: who are you if i may? 10.22.18 # I'm not really anyone 10.22.50 # Not anyone that you'd know, I don't post anywhere or anything 10.22.57 # Just follow Rockbox from afar 10.23.45 # well i made a rock for the h100...how do you want to try it? 10.24.23 # Sure, can I download it from anywhere? 10.25.16 # ill upload it to my site 10.25.25 # Also, the ihp100, 110 and 115 have 16mb ram but nothing that plugins should worry about 10.25.31 # eli_sherer: The H100/H110 only have 16MB RAM, and of course the disk size is different 10.26.03 # amiconn: but if i compiled the plugin to work on h120 would it work on an h110? 10.26.10 # nope 10.26.20 # You need to compile separately 10.26.34 # i thought so... 10.26.56 # The plugin area is at the end of RAM, and since the RAM sizes are different, the plugin area address is different too 10.27.06 # eventually the solution to the poblem will to add it to the cvs... 10.29.09 # webguest72: d/l it from here [http://www.freewebs.com/eli_sherer/tetrox-h100.zip]! 10.30.17 # "We are sorry, this page was not found. Please check the URL and try again." 10.31.30 # the mirc adds the ]! by mistake.. 10.31.38 # http://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.35 # webguest72: I would appreciate some feedback when you get it going... 10.35.20 # It works 10.35.27 # But... the screen is not large enough 10.38.33 # what do you mean? 10.39.04 # H120 has a smaller screen???? 10.40.03 # oh no 160x128...didn't thought of that.. 10.41.03 # Yup 10.44.05 # But it did in fact work, other than that 10.44.15 # Time to break out LCD_WIDTH and LCD_HEIGHT I guess 10.46.44 # eli_sherer? 10.46.52 # can you help for a moment? 10.49.57 # sure 10.50.32 # mm ok in private? (for speak hebrew) 10.53.07 # sure... 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.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.38 # and i just fixed the h1x0.. 11.07.44 # anybody with an H120 or H140??? 11.08.03 # yes 11.08.40 # can you help me test my tetris port for the h1x0? 11.08.49 Quit Rob2222 (Read error: 110 (Connection timed out)) 11.08.54 # yeah if u want 11.09.44 # in a couple of seconds ill upload the file to my site 11.15.24 *** Saving seen data "./dancer.seen" 11.15.43 # can you dl it now from http://www.freewebs.com/eli_sherer/tetrox-h100.zip 11.15.54 # ok 11.17.34 # w8 i have to upgrade rockbox ^^ 11.17.59 # sure.. 11.18.21 # (more than a week..) 11.19.35 # great ^^ 11.19.51 # ? 11.19.59 # it works 11.20.09 # but does it work well? 11.20.22 # yeah 11.20.45 # but 11.20.46 # a bug 11.20.50 # with a 4 squares 11.20.58 # if you flip it when you are low 11.21.04 # it becomes 3 squares long 11.23.01 # you see? 11.23.17 # when you approach the bottom like this ____ 11.23.28 # and when you flip it, you have only 2-3 squares left 11.25.01 # i really don't know what is the cause of that...lol 11.25.33 # and by the way all the figures are 4 squares thats why it called tetrominoes... 11.26.07 # yes i meant the 4 squares in line 11.26.10 # the long bar 11.27.08 # in all the tetris games, if you approach the botton, you can't flip it anymore 11.27.10 # in yours, you can 11.27.12 # so it's buggy 11.27.24 # your absolutly right it happens on the color version too 11.27.42 # ^^ 11.28.59 # fixed it right now...there was an error in my code 10q for noticing... 11.29.00 # and, you may add the abiliy to restart the game without restarting the plugin? 11.29.19 # maybe record button?? 11.29.41 # or play...i think play is best 11.29.49 # or a menu, just don't quit the plugin.. 11.32.20 # ok 11.34.09 Join miner49er [0] (n=miner49e@82-32-84-226.cable.ubr01.chap.blueyonder.co.uk) 11.36.48 # ipod 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.06.21 # and again i had another bug (concerning game over) 12.07.00 # and 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.25 # hi 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.06 # jungti1234: 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.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.29 # re 13.15.25 *** Saving seen data "./dancer.seen" 13.17.12 # re: 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.11 # Hello everyone, Happy Christmas to all 13.43.06 # merciful 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.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.47 # elisherer: Hi, is your plugin working for h120 build somewhere please? 14.08.58 # I want to test it 14.10.17 # tetrox I mean soory 14.10.32 DBUG Enqueued KICK Paprica 14.10.32 # 12Moos12 -1 http://www.freewebs.com/eli_sherer/tetrox-h100.zip 14.10.48 # here you go: http://www.freewebs.com/eli_sherer/ 14.10.49 # thanks Paprica 14.11.00 # nop 14.11.31 Quit Mad_Big_Sausage ("See ya!") 14.13.12 # it looks good 14.13.31 # just a litle big for h1xx screen but good 14.14.36 Ctcp Ignored 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.02 # Paprica: how goes your plugin? 14.16.38 # mm 14.16.46 # :) 14.16.48 # we have levels =] 14.17.03 # hooray! 14.17.08 # http://misticriver.net/showthread.php?t=33971 14.17.39 # now im working on diffrent color for the bricks 14.17.55 # cool 14.18.29 # does it work already for other irivers? 14.18.46 # no 14.18.53 # only for h3xx now 14.19.26 # you want to do it full working for h3xx first? :) 14.19.40 # yep 14.20.25 # I'm agree with one post in forum you pointed to me, arkanoïne is one fundamental game 14.20.29 # :D 14.20.38 # http://img379.imageshack.us/my.php?image=dump00511tx.png 14.20.41 # *arkanoïde 14.21.06 # hey, it looks fine 14.21.13 # kewl Paprica :) 14.21.20 # =] 14.21.29 # cross my fingers i'll get my h3xx still today 14.21.31 # Paprica: how many different levels currently? 14.21.42 # 11 14.21.42 # muesli: Hello 14.21.44 Quit eli_sherer (Read error: 110 (Connection timed out)) 14.21.54 # hossa Moos :) 14.22.05 # Paprica: 11 levels 14.22.08 # ? 14.22.09 # yep 14.22.15 # mk 14.22.24 # mk=? 14.22.29 # mmh okay 14.22.32 # ;) 14.22.32 # :) 14.22.34 # =] 14.22.36 Quit San (Read error: 104 (Connection reset by peer)) 14.23.21 # muesli: Ronnaldihno n°1 ;) 14.23.46 # but he is not french...whatst the point? ;) 14.24.15 # no he is, but he played here in Paris 14.24.33 # is one "god" 14.24.49 Quit DiveineIn () 14.25.25 # Henry don't have the level for golden ball or much 14.25.36 # Zizou have but a bit old now :) 14.25.43 # ;) 14.25.49 # henry will sort it 14.26.08 # Henry will maybe go to Barcelona 14.26.30 # and don't play much then 14.27.01 # guess its time for a change..he spend quite long time in london, isnt he? 14.27.54 # yes 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.56 # :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.32 # sorry folks 14.32.25 Join akaidiot [0] (n=nope@217.28.34.35) 14.35.01 # lunch time 14.36.59 Join San [0] (n=test@212.2.172.169) 14.37.34 # Moos: you don't like Henry ? 14.37.40 # shame on you !!! 14.37.52 # he maybe have the melon a bit 14.38.17 # I don't like him, he is usurper 14.38.23 # yes a bi melon 14.38.29 # 1 pastèque :D 14.39.12 # he is fast, nothing much ;) 14.39.23 # he don't score enough for us 14.39.47 # in England make goal is easy 14.40.05 # * Moos remenbering Anelka 14.40.09 # french championship sucks 14.40.17 # I prefer basketball anyway 14.40.39 # :D 14.40.58 # I prefer Italia and Spain championship 14.41.39 # the 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.46 # did 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.53 # the infos are in meta datas area, I supose when you burn, you burn all infos too 14.46.31 # sorry 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.02 # ahhh 14.47.15 # <]RowaN[> in the same way that mp3gain alters the volume of a mp3 i guess? 14.47.25 # is 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.56 # old version of mp3 gain altered song, yes 14.49.17 # now it use tag too(APE° 14.50.13 # <]RowaN[> hmm doesnt seem to support wav files anyway 14.50.22 # :( 14.50.36 # <]RowaN[> i bet replaygain.org will have no help lol 14.50.44 # :) 14.50.47 # try 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.51 # Lunch 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.11.01 # Hmm, 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.27 # Moos: 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.37 # Merry 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.04.11 # hey eh 16.06.33 Part Paul_The_Nerd 16.07.48 Join einhirn [0] (i=Miranda@szgt-d9b8e2a7.pool.mediaWays.net) 16.08.07 # Jungti: Happy Christmas to you too 16.09.24 # :) Thanks 16.22.57 # yes, agreed 16.23.11 # have nice evening, folks, i'm out 16.23.30 # bye preglow have fun 16.34.53 # grrrrr 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.38 # good night 16.52.40 Quit Jungti1234 ("CGI:IRC") 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.55 # new 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.50 # eli_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.15 # Moos: I dont see where it would fit... 17.41.39 # maybe in the plugin page? 17.42.36 Quit Rob2222_ (Read error: 104 (Connection reset by peer)) 17.44.37 # Moos: 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.02 # goodie :) 17.45.27 Join t0mas [0] (n=Tomas@unaffiliated/t0mas) 17.45.55 # Hello t0mas 17.46.02 # hi 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.07 # haha, first time i was wished "merry xmas" from an irc server ;) 18.01.21 Mode "#rockbox +o t0mas " by ChanServ (ChanServ@services.) 18.01.24 # woops 18.01.28 Mode "#rockbox -o t0mas " by t0mas (n=Tomas@unaffiliated/t0mas) 18.01.35 # wrong channel 18.12.06 # o-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.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.10 # someone know how to edit the main menu? 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.12 # Paprica: edit apps/main_menu.c 20.23.28 # 10x 20.23.52 # you 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.00 # ? 20.24.04 # I think apps/tree.c 20.24.40 # no 20.24.40 # =\ 20.25.01 # One sec 20.25.22 # k 20.25.54 # I do not have the source tree to search 20.26.19 # If you are using linux or cygwin you can just run grep -i -E '#define PLUGIN_DIR' rockbox -R 20.27.04 # ok 20.27.58 # It is in apps/settings.h 20.28.00 # :) 20.32.11 Join San||Away [0] (n=test@213-202-140-28.bas502.dsl.esat.net) 20.33.04 # 10q!! 20.34.00 # Paprica: What is meant by that (and 10x?) 20.34.21 # thank u 20.34.25 # thanx 20.35.31 # Ohh 20.35.40 # Welcome 20.36.04 # =] 20.36.54 # Whoops 20.37.03 # * bagawk just made a mistake 20.37.11 # rm * .c 20.37.19 # I did nopt mean to put a space! 20.37.24 # yippee! i have games in the menu=] 20.37.36 # Lucky not much was in the directory 20.38.00 # Paprica: I bet that makes it quicker than sorting through the plugins 20.38.38 # mm i just check it on the simulator 20.38.50 # now i compile it for the iriver 20.40.50 # * bagawk does not know the keys for the iriver sim 20.41.10 # =\ 20.48.27 Quit Soul-E (Read error: 110 (Connection timed out)) 20.51.21 # linusN? 20.55.02 # he isnt here 20.55.04 # =\ 20.57.02 # k 20.59.42 Quit Moos (Read error: 110 (Connection timed out)) 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.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.24 # San||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.15.42 *** Saving seen data "./dancer.seen" 23.24.10 # me? 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.36 # hi all 23.52.51 # wondering if anybody can teach me how to install a patch? 23.53.14 # patch -p0 -s --dry-run < foo.patch 23.53.15 # http://www.rockbox.org/twiki/bin/view/Main/WorkingWithPatches 23.53.21 # if that doesnt complain, remove the --dry-run and try again 23.53.53 # and http://www.rockbox.org/twiki/bin/view/Main/SimpleGuideToCompiling#Adding_Patches 23.56.19 # cheers 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.13 # chicken! 23.58.15 # ;-P