--- Log for 23.04.106 Server: clarke.freenode.net Channel: #rockbox --- Nick: logbot- Version: Dancer V4.16 Started: 28 days and 6 hours ago 00.01.33 # amiconn: btw, does the sample rate on the recording screen reflect the actual rate when using spdif on archos? 00.01.39 # doesn't look like it in the code 00.01.56 # Hmm, dunno. I can check 00.02.06 # * amiconn doesn't record much) 00.02.19 # i think it'd be best if it reflected the actual srate 00.03.31 # I agree 00.03.47 # It's only lostlogic's box that throws DT_TEXTREL warnings 00.04.07 # ...and it's the only box with a native gcc < 4 00.06.13 Quit |Unknown| () 00.06.16 # oh noes! 00.07.16 Quit ender` (" There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.") 00.07.19 # preglow: Hmm, on archos the sample rate isn't displayed at all on the recording screen... 00.07.33 # ...but iirc it was, and should be?? 00.08.01 # eh 00.08.07 # the screen shot in the manual does display it 00.08.12 # that's what i based myself on 00.08.23 # Ah, yes. 00.08.46 # Somehow the peakmeter now has twice the height as it used to have... 00.08.57 # how nice 00.09.19 Join midkay [0] (n=midkay@rockbox/developer/midkay) 00.13.10 # i think we should rename tagcache to something a bit more friendly 00.13.27 # HappyFunTags 00.13.29 # :) 00.13.35 # haha. 00.13.38 # Id3Tagbase! 00.13.43 # it's not only for id3 00.13.47 # FriendlyTagCache ;-) 00.13.53 # another thing we should fix 00.13.53 # Tagbase! 00.14.03 # rockbox currently says 'id3' about all tags 00.14.05 # tag database or tagdb sounds best to me.. 00.14.08 # which isn't correct in the least 00.14.08 # AllYouTagBaseBelongToUs 00.14.10 # all your base belongs to tag! 00.14.21 # hahaha 00.14.24 # all your tag are belong to databse 00.14.34 # but pleeease nothing with "id3" in it. 00.14.36 # tag database is better than tag cache, at least 00.14.44 # tagbase sounds cool. 00.15.00 # we have id3 tags, vorbis comments, ape tags ... 00.15.24 # Metabase 00.15.27 # it does... i mean... try saying it. 00.15.36 # preglow: This change (double-height peakmeter in recording screen) was committed on 25 Mar 2006 by 'Dan'. He committed a patch by Martin Scarratt 00.15.51 # The double height has to be taken back for archos. 00.16.03 # Tag Database sounds good. At least it is a database. 00.16.14 # amiconn, now that you seem to be back - can you tell me what the problem was with the keyboard update? 00.16.20 # Yes 00.16.32 # I even saw that after looking at your diff for 2 minutes 00.16.55 # Before, there was a button_read_w_tmo(HZ/2) , which nicely waits and yields meanwhile 00.17.14 # You replaced it with a button_get(false) which busy polls... 00.17.26 # i thought button_get(false) was the new/better way of doing it.. 00.17.33 # amiconn: badness 00.17.39 # i had no trouble with it at the pitch screen. 00.17.46 # Oh? 00.18.12 # Then either the pitch screen yields at another place, or you didn't really test 00.18.22 Quit lee-qid_ ("Trillian (http://www.ceruleanstudios.com") 00.18.29 # * amiconn is somewhat annoyed by such things 00.18.39 # amiconn, ah, it's button_get(true). 00.18.45 # The feature freeze phase should stabilise things, not the opposite... 00.18.57 # amiconn, well, i'm very sorry. :) 00.19.03 # button_get(true) wouldn't have helped you here, since you want to blink 00.19.13 # amiconn, exactly, which is why i went for false.. 00.19.59 # amiconn, btw, shouldn't HZ/2 be extremely slow? 00.20.02 # Well, all 3 variants (button_get(true), button_get(false) and button_get_w_tmo(timeout) ) have their purpose 00.20.19 # It's not any slower than your blink, even a little faster 00.20.49 # i always use w_tmo in clock.c, but i see button_get false/true almost _everywhere_ else so i thought that was the smarter way of doing it, and w_tmo was supposed to be used only in certain places. 00.21.01 # No 00.21.02 # amiconn, i mean HZ/2 as far as button reading.. 00.21.07 # No 00.22.10 # now i'm remembering discussing this a while ago - HZ/2 seems to scan the buttons fine in Rockbox core but sort of limit code/lcd updates to that speed, but in plugins it slows down the button reading too - iirc that was deemed a bug but never hunted down? 00.22.18 # It will return a pressed button not any slower than button_get(), but it will wait for a button if none is pressed atm, for a maximum of ticks 00.22.45 # aha! 00.22.55 # and has it ever seemed that's different in plugins? 00.23.01 # nope 00.23.16 # There is no bug in these functions I know of. 00.23.18 # it only seems to return the button *after* ticks, regardless of when it's pressed.. or something.. 00.23.27 # nope 00.23.30 # maybe it's my imagination or maybe it was fixed a while back.. 00.23.36 Quit Rondom (Read error: 113 (No route to host)) 00.23.39 # It was never broken 00.24.19 # hm.. maybe i'm thinking of something else then. alright, thanks for the clarification :) 00.24.33 # button_get(false) just checks for a button and returns immediately. It returns BUTTON_NONE if none was pressed 00.24.36 # what else could be a topic on the plague? :D 00.24.59 # button_get(true) waits indefinitely for a button to be pressed, and therefore will never return BUTTON_NONE 00.25.20 # amiconn, so why would false kill playback if i may ask? scanning way more often than needed? 00.25.30 # button_get_w_tmo(timeout) also waits for a button to be pressed, but only ticks at maximum 00.25.50 # If still no button was pressed, it returns BUTTON_NONE 00.26.10 # With a button already pressed, all 3 functions return immediately, returning the button value 00.26.21 # amiconn, gotcha :) 00.26.35 # midkay: There is a loop in keyboard.c that draws the layout, then evaluates the buttons 00.26.47 # right.. 00.27.03 # If you use button_get(false), this never waits, and hence never yields, so other threads have no chance to run 00.27.25 # so overall button_get(false) should be avoided? 00.27.38 # So the codec thread and playback thread can't run, and the pcm playback will run out of data 00.28.05 # midkay: Neither. There are situations where it makes perfect sense, otherwise it wouldn't exist 00.28.24 # You should just think about timing and threading, and test stuff 00.28.26 # amiconn, i'll search the code for what situations, then, i'm quite curious.. 00.29.10 Quit Acksaw ("I'm off, see ya later!") 00.29.11 # E.g. if you have a loop where you want constant delays, and also want to check buttons 00.29.29 # amiconn, it wasn't clear to me that false would be a problem, i was under the impression it was 'true'.. unfortunately i didn't have enough time to test every possible situation. 00.29.31 # Then you'll use button_get(false) and sleep() in the loop 00.29.42 # utsl 00.29.43 # hmm. 00.29.51 # Playback is a pretty common situation 00.31.09 # agreed, i'm not sure what you want me to say :) i could argue that playback was effectively broken for a couple weeks and you're biting my head off for a glitch involving a temporary pause in playback while you're at the not-so-often used keyboard screen.. 00.31.45 # ..as the result of simply having the wrong impression of true/false in button_get.. 00.32.20 # I'm only saying that changes should be tested before commit. And imho you cannot compare playback rework with the vkeyboard 00.33.05 # that was rather directed at your 'feature freeze should fix things, not break them' comment. not sure if you tested this on your ipod mini, but i found it to be very useful, possibly worth the couple seconds it took to fix. :) 00.33.31 # I don't see the advantage of a blinking cursor 00.33.51 # i prefer it blinking 00.33.51 # i mean inversing the line bar when in line-edit mode. 00.33.58 # ..and the inverted line is a bit irritating 00.34.10 # haha. is it? seriously? i found it 400% more intuitive.. 00.34.26 # now scrolling the cursor off the bottom of the keyboard actually makes sense. 00.34.46 # It made sense before as well 00.35.08 # No Ondio user has complained about the way vkeyboard works with a limited keypad 00.35.13 # somewhat, but there was absolutely no feedback and it confuses users every time i tell them how to do it until they actually manage to learn it.. 00.41.04 # Bah, this recording screen adaption is a hack.... 00.41.28 # amiconn, which? 00.42.10 # The one committed on 25 Mar 2006, adapting the recording screen to the remote 00.42.26 # works ok enough 00.42.55 # preglow: Maybe it works okay on iriver main LCD and ipod, but it's still a hack 00.43.26 # ...and it brought that double-height peakmeter which has to go for archos, and should also go on the iriver remote 00.44.30 # it does indeed 00.44.42 # This would allow the sample frequency to be displayed on the remote 00.44.56 # ...which happens to have 8 lines with the sysfont, same as archos 00.45.20 # The double-height peakmeter expands this to 9, and makes the sample frequency display vanish 00.45.25 # which sounds more alarming, the black death or anthrax? 00.45.55 # hahaha 00.46.03 # anything with 'black' in it sounds alarming 00.46.09 # lol 00.49.30 Quit tvelocity ("Ex-Chat") 00.52.59 # the nursery rhyme, "ring around the rosie" is in reference to the plague 00.57.21 Join webguest13 [0] (n=489a5a4c@labb.contactor.se) 00.57.36 # Any 4G devs in? 00.59.30 Quit wehn () 01.00.05 Join jeremy [0] (i=katzj@freenode/staff/jeremy) 01.10.01 Join fiftyfour123 [0] (n=chatzill@cpe-66-108-136-179.nyc.res.rr.com) 01.10.19 # anyone here keen to test spdif recording? 01.10.47 # I can't, due to lack of proper optical cable 01.11.34 # i can't... due to lack of... hardware? 01.12.16 # anyone know if someone is actually working on plugging the ipod accessory protocol stuff up before I start looking into it? 01.12.33 # don't think anyone is. 01.12.53 # I probably will, but not before the 3.0 release 01.13.04 # The real problem is the serial comm afaiu 01.13.28 # but ok, if no one can test, i'll just commit it when it works here 01.13.50 # i'm tired of this remote ssh coding 01.14.01 # ipl doesn't have serial drivers for any of the newer ipods, so we need to find info about the serial port ourselves 01.14.32 # amiconn: how so? (... as I've only started glancing through the code and the info on the protocol itself) 01.15.10 # Yeah, but you'll also need a driver for the port you want to run the protocol on... 01.15.28 Quit fiftyfour123 ("Chatzilla 0.9.71 [Firefox 1.5.0.1/2006011112]") 01.16.35 # *nod* that could make things more "fun" 01.17.11 # not only fun, but also not a complete waste of time 01.18.13 # amiconn: i was able to get gcc 4.0.2 to build by removing the assert that was causing the ICE. i really, really don't recommend doing that because i have no clue if the assert is wrong or if the code that is causing the assert to trigger is wrong. the only reason i am even trying it this way is because someone else ran into a case where an assert in do_SUBST was incorrect for his IA-32 platform.. 01.19.16 # worth a shot 01.20.03 # tried building rockbox with it? 01.20.38 # i'm working on that now, but unfortunately i have no hardware to test it on.. i don't have any m68k-based players. 01.20.45 # Hmm, someone wasn't fully alert when hacking the recording screen. We do have enough space to show the sample frequency within 8 lines and the double height peakmeter 01.20.51 # i have a ton of coldfire boards at work though, so i can try running something on those on monday 01.22.30 # Would make sense to compare the binary produced by m68k-elf-gcc running on amd64 with the binary produced by the same m68k-elf-gcc version running on i686 01.22.34 Join ronbo [0] (i=shaggy_s@ppp062.hak.centurytel.net) 01.22.49 Quit webguest13 ("CGI:IRC (EOF)") 01.23.12 # yeah, or even the .S file 01.23.46 # oh well in the case of rockbox i guess that wouldn't work, we'd want to compare the entire thing 01.23.48 # Hmm, now I am confoozled. Obviously I am unable to count correctly :/ 01.25.13 *** Saving seen data "./dancer.seen" 01.25.14 Part ronbo 01.25.25 Join Inc [0] (n=inc@arcane/developer/inc) 01.25.29 # The requested URL /daily/ipodvideo/rockbox-ipodvideo-20060422.zip was not found on this server. 01.25.35 # any ideas?> 01.27.30 # Inc: try a CVS build instead 01.27.40 Join blindx [0] (n=blind@c-71-234-180-125.hsd1.ct.comcast.net) 01.28.34 # Looks like all the daily ipod builds 404 - also the iaudio 01.29.03 # Hey, I get rockbox error: -2 when trying to boot to rockbox.. what did I do wrong? 01.29.55 # ok 01.32.26 # http://www.rockbox.org/daily/changes-20060422.html 01.32.31 # so I need to grab that one? 01.33.01 # grab your build from the bottom of http://www.rockbox.org/cvs.shtml 01.33.37 # ok 01.33.46 # and this will still work with the installer right? 01.34.06 # you can also try an older one: http://www.rockbox.org/dl.cgi?bin=ipodvideo 01.35.17 Join Haykuro [0] (n=haykuro@c-66-176-103-13.hsd1.fl.comcast.net) 01.35.31 # Hello! Anyone here active that can help me out? 01.36.11 # sure 01.36.27 # Thx, sharpe :) 01.36.35 # Okay well, I have a 2GB nano 01.36.44 # and I installed rockbox without a problem 01.36.49 # got the JPEG viewer 01.37.06 # then noticed the RVF extension for videos (after reading the manual for nano) 01.37.18 # so i tried getting the video.rock file 01.37.21 # but only found 01.37.29 # erm.. hold on 01.37.31 # let me get the link 01.37.41 # http://home.ripway.com/2004-2/66978/RockVideoRelease.zip 01.37.44 # but that link is dead 01.37.47 # and no one else has it 01.37.50 # as far as i know, the rvf format is only supported on archoses 01.37.56 # hold on 01.37.56 # yes 01.38.11 # and it's only in grayscale. 01.38.27 # is there any other way to play videos? 01.38.31 # nope 01.38.39 # hmm 01.38.40 # http://pdf2html.spawncamp.net/pdf2html.php?url=http://download.rockbox.org/manual/rockbox-ipodnano-20060422.pdf 01.38.43 # scroll down a bit 01.38.50 # What does "Rockbox error: -2" entail? 01.38.58 # on ipod videos, you have to boot into the apple firmware. but there aren't any ways for other players, except the archoses. 01.39.03 # A.1. Supported File Formats 01.39.14 # argh 01.39.15 # .rvf is one of them 01.39.25 # i think that's just in general. 01.39.25 # then it's rather a mistake, Haykuro. 01.39.44 # it doesn't work on anything but the bitmap LCD archos players.. supported ones. 01.39.45 # Haykuro: The manual is far from finished, especially for targets which won't be supported in the 3.0 release 01.39.45 # i can't find the EBU1RCVCCHANNEL1 description in the coldfire docs 01.39.55 # This is simply a leftover from the archos manual 01.40.19 # hm.. 01.40.59 # blindx: Where do you get this? 01.41.14 # When turning on my iPod (color) 01.42.59 # -2 means the rockbox.ipod file is smaller than 4 bytes, i.e. corrupted 01.43.21 # oh. 01.43.33 # um. so i should download a new copy and swap em out? 01.44.00 # heh. 0 bytes. wonder how that happened.. 01.44.39 # okay, thx anyways.. just outa blight i'll mention wut i've accomplished.. i took the video.rock files from the archoses download cuz i didnt kno wut else to do, set the viewer properties and now it sais "Incompatible Module" which im guessing its been programmed to check which rockbox its for 01.45.11 # Thanks, amiconn. lets see if it boots now.. 01.45.39 # now i got a -1 :\ 01.45.52 # well, you're progressing :D 01.46.00 # heh 01.46.16 # It's a step back 01.46.21 # that means there isn't rockbox.ipod 01.46.27 # for you, anyway. 01.46.29 # -1 means the bootloader can't find rockbox.ipod at all 01.46.39 # but. 01.46.40 # ... 01.47.03 # o.o 01.47.05 # it's not there. 01.47.06 # bah 01.47.18 # i get random hangs when recording 01.47.35 # blindx: maybe you should like, not use whatever you currently use to unzip it... 01.47.36 # Am I missing something here? :| I copy and paste it. It shows.. shows as the correct sizes, but when I unplug, it 'disappears' 01.48.31 Quit bluebrother ("Leaving") 01.48.51 # I guess you have write caching enabled for the ipod volume. Either disable that, or don't just unplug but safely remove the ipod 01.49.12 # safely remove :\ 01.49.15 # /away 01.49.18 # how do you.. safely remove? 01.49.18 # d'oh 01.49.31 # /awayyyyyyyyyyyy 01.49.34 # wuts the advantages of rockbox aside from using the plain old regular ipod software if it doesnt do anything different aside from skins? (im not hating against RB im just wondering is there some features im looking over?) 01.49.44 # plugins... 01.50.43 # yea, but the plugins r to do useless things, screen savers (waste battery mode), jpeg viewers (ipod software views them already..), Doom (probably one of the only reasons i like RockBox compared to iPod Linux that the RB version has sound) 01.51.08 # http://www.rockbox.org/twiki/bin/view/Main/WhyRockbox ? 01.51.22 # or how about the short version: Rockbox Does Gapless Playback 01.51.32 # true 01.51.43 # r there documentations to code ur own plugins, maybe i can do my own video plugin (or any1 already try 2?) 01.52.27 # Gapless playback, really flexible playlist system, doesn't depend in itunes, plays way more formats...... 01.52.36 # http://www.rockbox.org/twiki/bin/view/TWiki/TWikiPlugins#Creating_Plugins ... 01.52.46 # that's for twiki... 01.54.09 # wuts twiki? anywho, this seems enough if i ever require help is there someone that i can contact to inform me some extra info for this? 01.54.29 # twiki is the wiki that rockbox runs on 01.54.34 # the website that is 01.54.34 # yea, thought so 01.55.23 # im new to RB just found it 2day, and loved it for about 2 seconds till i noticed no video, its the only thing thats bugging me. aside that i like the interface and all. thx again guys, help was apreciated 01.55.24 # http://www.rockbox.org/twiki/bin/view/Main/HowtoWritePlugins 01.55.30 # preglow: Archos shows the selected recording sample rate even for spdif, not the actual one. 01.55.40 # yeah, looked like it 01.55.53 # and you can also figure out more by looking at the source of plugins 01.55.56 # the nano can't play videos anyway even without rockbox 01.57.02 # Haykuro: The newer rockbox targets will perhaps play video, one day. But it's certainly not a priority. First of all rockbox is a powerful dap firmware, and the primary purpose of a dap is to play music 01.57.44 # Galois, i kno, but the ppl over at iPod linux got video working, and if i somehow accomplish video on RB i'd love RB and say its 10x better than iPod linux 01.57.58 # preglow: Ideally this should be fixed, so that it displays the detected samplerate for spdif 01.58.34 # I use rockbox because ogg vorbis sounds better than AAC at low bitrates and nanos have so little disk space that sound quality matters 01.58.40 # Haykuro: ipodlinux is also specifically for one platform, rockbox coveres 14 different targets 01.58.42 # Is anyone IN the ipodlinux room? 01.58.53 # amiconn: yeah, but i have no idea how to do that for archos 01.58.54 # I'm banned for some odd reason, considering I haven't been there for weeks. 01.59.04 # on iriver i'd just need a simple feedback variable from pcm_recording.c 01.59.17 # that, or just put some low-level code in recording.c 01.59.27 # preglow: Just add that for swcodec, and keep in mind not to tie it too closely to that 01.59.30 # On archos, we' 01.59.52 # ll need a feedback function somewhere in the recording code that reads the mas 02.00.21 # we'll see, i'll just keep it as it is in the first commit 02.00.44 # if i ever get it to work completely, that is 02.02.58 # We already have a function to read back the last encoded mpeg header from the mas 02.03.09 # It's simple to extract the sample frequency from that 02.03.28 # hey, i fixed it :D 02.04.11 # amiconn: oh, right, so that's the only way of discovering it? 02.04.13 # For simplicity, we can probably always use the readback value 02.04.33 # preglow: Well, we have to ask the mas, or check the bitstream ourselves 02.04.37 Join whatboutbob [0] (n=cbd6595d@labb.contactor.se) 02.05.02 # now, where should i copy songs to to play them on rockbox? 02.05.10 Quit TCK (Read error: 110 (Connection timed out)) 02.05.18 # to your ipod :) 02.05.21 # anywhere? 02.05.23 # The mas will tell us both the mpeg frame header bits, and the spdif input channel status bits 02.05.24 # yes 02.05.28 # nice. 02.05.28 # anywhere except iPod_Control 02.05.29 # preglow: still need a spdif tester? 02.05.42 # Not sure whether the channel status bits include the sample rate 02.06.03 # whatboutbob: sure 02.06.13 # whatboutbob: do you do patches? 02.06.26 # preglow: sure 02.06.34 # aight, i'll hook you up 02.08.25 # http://www.pvv.org/~thomj/rockbox/spdif_recording.patch 02.08.27 # Bah, it looks more and more like maybe-day instead of mayday 02.08.30 # it'll bork your settings 02.08.47 # * amiconn just discovered that another long-standing bug is still there 02.08.48 # amiconn: haha, you expected us to actually make that deadline? 02.08.53 # there's tons of stuff left to do 02.09.01 # and it was an optimistic date from the start 02.09.15 # Good old panic: recfile: -1 still present on archos 02.10.12 # preglow: will i need to reset my config or anything? 02.10.16 Quit stoffel (Remote closed the connection) 02.10.23 # whatboutbob: nah, that should happen automatically 02.10.32 # k. 02.10.36 # i bumped the config since i removed some unused option 02.10.53 # options 02.11.28 Part Haykuro 02.12.25 Join wehn [0] (n=wehn@82-143-222-203.rev.techex.net.au) 02.14.32 # ergh...its been a while since i updated source (i've just been lazy and have used Mmmm's patched build)...now when i'm typing cvs up -dP I'm getting an error msg: No CVSROOT specified. 02.15.12 # what am i screwing up? 02.16.54 # the cvs setup 02.17.06 # lol 02.17.11 # seems logical 02.17.35 Quit PaulJ (".") 02.17.42 # you probably need to check the repo out again 02.19.33 # k 02.23.00 # guess what i just finished? :D 02.24.02 Join ashridah [0] (i=ashridah@220-253-122-7.VIC.netspace.net.au) 02.24.07 # wait 02.24.19 Join Haykuro [0] (n=haykuro@c-66-176-103-13.hsd1.fl.comcast.net) 02.24.21 # that puncuation didn't go correctly. 02.24.53 # hey sharpe, i got a quick question, once i have a plugin programmed do i just compile like a normal C++ app or is there a special compiler? 02.24.53 # whatboutbob: so, any action? 02.25.14 # Haykuro: rockbox is written in c 02.25.31 # ahh 02.25.34 # Haykuro: and you should also compile it with rockbox, as it uses functions referenced in it 02.25.35 # that was my second guess 02.25.35 # :-p 02.25.54 # how wud i compile with rockbox? 02.26.08 # do you have a build enviornment already? 02.26.27 # im sticking simply to notepad and a general c/c++ compiler (gcc, g++) 02.26.31 # http://www.rockbox.org/twiki/bin/view/Main/DevelopmentGuide 02.26.36 # ahh 02.29.24 # So, any thoughts on Apple moving to sigmatel for their flash players? 02.29.44 # Haykuro: doubt it 02.29.45 # ehh 02.29.46 # scottder 02.29.52 # Will it impact rockbox much? 02.29.59 # if they move to sigmatel, then hell yes 02.30.01 # scottder: grr. it just makes me so angry. grr. 02.30.05 # heheh 02.30.08 # preglow: reinstalling cygwin :( 02.30.08 # let's just hope they move to something generic 02.30.15 # and not some bloody dsp thing 02.30.53 # we could also hope for apple's open source mp3 player, but, you know, that's never going to happen. :D 02.30.58 # amiconn: i did a 32-bit and 64-bit build (with the modification) of 3.4.6 and built rockbox with both of them. the output is exactly the same. which doesn't mean there isn't a ticking time bomb, of course.. 02.31.04 # That bad huh? 02.31.30 # lol... 02.33.11 # kapheine: Sounds good so far. 02.34.00 # Building for all coldfire targets and comparing binaries would give a bit more backing. We could also compare plugin & codec binaries 02.34.08 Quit Haykuro ("Thanks alot RockBox crew ;)") 02.34.15 # Could you stick your patch somewhere? 02.35.16 # i was only able to get one coldfire target to build at all, the others complained about not being able to fit in PLUGIN_IRAM, but i didn't play around with it much to see why that was happening. 02.35.22 # sure, give me a sec 02.36.41 # not enough room in iram? sounds weird 02.40.32 Quit Zetan ("Obviously got better things to do :P") 02.42.13 Join OnkelJonas [0] (i=kartoffe@ip230.rev112.brygge.net) 02.42.32 # amiconn: http://divineinvasion.net/tmp/gcc-3.4.6-amd64-subst.patch 02.42.48 # amiconn: it won't apply to 4.0.x but by looking at the patch it should be obvious how to do it manually 02.44.26 Quit mikearthur (Read error: 104 (Connection reset by peer)) 02.44.31 # hah. My original plan was to find something interested to work on for my iPod nano and instead I spent all of my time trying to build a cross-compiler for a platform I don't have any hardware for. 02.45.39 # haha 02.45.44 # and god bless you for it 02.47.40 Quit Moos ("Glory to Rockbox !!!") 02.49.32 Quit OnkelJonas (Read error: 54 (Connection reset by peer)) 02.50.44 Join RmnT [0] (n=icmmsf@dsl081-064-128.sfo1.dsl.speakeasy.net) 02.51.15 # whatboutbob: i need to sleep now, if you've got some feedback, just spill it here and i'll read the logs when i get up tomorrow 02.51.50 # will do 02.51.54 # hi all 02.51.57 Join quobl [0] (n=quobl@tor/session/external/x-fda72194dca205bc) 02.52.04 # is anyone here willing to help me with problems I'm having compiling rockbox for my 5G iPod? 02.52.36 Quit obo (Read error: 110 (Connection timed out)) 02.52.48 # I am able to compile the code but when I run the "make zip" command I get some heap allocation errors 02.53.08 # has anyone seen this before? 02.53.36 # I've reinstalled cygwin on my WindowsXP but that did not help 02.53.42 Join Kyomi [0] (n=a@24-196-196-108.dhcp.hckr.nc.charter.com) 02.53.44 Quit actionshrimp ("( www.nnscript.de :: NoNameScript 4.01 :: www.XLhost.de )") 02.53.48 # Alright.. I have a question for you all 02.54.16 # RmnT: what command is running when you get it? 02.54.17 # I got the latest build and I even SAW it copy over SID.codec and then when I try to play a SID file it says No Codec Found For... 02.54.38 # What would you all recommend? 02.57.34 # Kyomi, I don't think there's anyone alive in here. I asked right before you did but I got no answer. 02.57.43 # Hmm 02.57.48 # RmnT: i just asked you what command was running :P 02.57.49 # kapheine gave you an answer :P 02.57.57 Quit muesli__ (Read error: 110 (Connection timed out)) 02.58.01 # kapheine: Any suggestions for me? :) 02.58.12 Part bon 02.58.50 # I was thinking just delete all rockbox folders and start fresh 02.58.52 # kapheine: oh? I'm sorry. I do not see that. 02.59.13 # arr! 02.59.39 # let me try that again and I'll tell you 03.00.03 Join muesli__ [0] (n=muesli_t@88.134.20.76) 03.00.12 # sharpe! 03.00.14 # Help me :D 03.00.23 # Kyomi: i've been using rockbox for about 2 days now, so i'm not really authorized to answer :P but for a sanity check, try browsing for the codec file on the device itself 03.00.40 # I got the latest build and I even SAW it copy over SID.codec and then when I try to play a SID file it says No Codec Found For 03.01.36 # does it match codecs with files by extention or by headers? 03.02.41 # i had no idea there was an sid codec now 03.04.04 Join LordOfThePings [0] (n=d9e2044b@labb.contactor.se) 03.04.19 Join OnkelJonas [0] (i=kartoffe@ip230.rev112.brygge.net) 03.04.20 # Experimental build there is <3 03.04.55 # sure you updated everything when you copied it over? 03.05.01 # i just did a CVS update and i don't see it, maybe i'm crazy? 03.05.16 # kapheine It's not in the cvs thingy 03.05.22 # It's in the experimental build 03.05.23 # <4303hp 2373m 1901mv 0aqt 208qps> 03.05.23 # Atlas OOCs 'silly' 03.05.27 # o.o 03.05.37 # Ok.. something hijacked my clipboard 03.05.42 # oh 03.05.51 # 4303 horse power? 03.06.02 # it's a dinosaur 03.06.18 # is there anything like http://www.rockbox.org/twiki/bin/view/Main/IpodStatus but more detailed? 03.06.38 # More of an iPod TODO list, I suppose 03.06.55 # sharpe: It's a MUD 03.07.03 # 4303 is hitpoints.. aka health 03.07.11 # mana is next then move points 03.07.20 # then the autoquest timer and quest points 03.07.27 # i see. 03.07.32 # telnet://anime2.ipupdater.net:8000 03.07.33 # :) 03.08.00 # i've never been much of a mud person 03.09.18 Quit OnkelJonas (Read error: 104 (Connection reset by peer)) 03.09.18 Quit whatboutbob ("CGI:IRC (Ping timeout)") 03.09.33 # So.. noone has any suggestions? 03.09.40 # I mean it worked fine before 03.10.07 Join MrSinister [0] (n=Party@a81-197-250-153.elisa-laajakaista.fi) 03.10.22 # did you try doing a clean build? 03.10.31 # 'lo 03.10.42 # hi 03.11.11 # Kyomi: someone may have forgotten to update the file that associates codecs with songs. 03.11.21 Join OnkelJonas [0] (i=kartoffe@ip230.rev112.brygge.net) 03.11.29 Part OnkelJonas 03.11.37 # Hmmm 03.11.49 # Do you need the patchset for midi stuff to play Doom II? 03.12.04 # And did anyone update the Doom for music or get the MIDI thing to work? 03.12.05 # i didn't think they'd added midi support for the doom plugin yet 03.12.23 # There is for sound effects 03.12.43 # heh, my doom builds are like, broken. not sure why. 03.13.08 # Kyomi: is there an entry for sid in metadata.c? 03.13.10 # any info on the "vintersorg"-torrent? been stuck for days with only .02 left... 03.13.21 # or tree.c i guess 03.13.26 # MrSinister: hmm? 03.13.41 # wrong chanek? 03.13.46 # channel 03.13.56 # probably... 03.14.03 # k 03.14.21 # Hmm 03.14.25 # Vinterland? 03.14.28 # <3 03.15.46 # probably wrong server, you dont discuss things abut http://rockbox.psychocydd.co.uk here? 03.16.22 # nope 03.16.30 # k, sorry 03.16.42 # this is for the digital audio player firmware, http://rockbox.org/ 03.17.14 # cya 03.17.16 Part MrSinister 03.19.13 # Do you think maybe it's my batch file that removes all the stuff I dont want? Like themes/wps/some rocks 03.19.21 Join MrSinister [0] (n=Party@a81-197-250-153.elisa-laajakaista.fi) 03.19.23 Quit LordOfThePings ("CGI:IRC (EOF)") 03.19.53 Quit blindx ("Leaving") 03.19.55 Part MrSinister 03.20.26 # What are to codepages for? 03.22.12 Join MrSinister [0] (n=Party@a81-197-250-153.elisa-laajakaista.fi) 03.22.53 # MrSinister: server, irc.p2p-irc.net 03.22.57 # hmm... 03.23.41 # oh 03.23.53 # i remember what i was going to do now 03.24.14 # get laid? 03.24.30 # sadly, no. 03.24.34 # ok I'm back with more info about my "make zip" problem 03.24.35 # here' 03.24.43 # here's the error I get 03.24.44 # 4 [main] find 156480 fhandler_dev_zero::fixup_mmap_after_fork: requested 0x480000 != 0x0 mem alloc base 0x480000, state 0x2000, size 1040384, Win32 error 487 03.24.50 # schorche: thanks 03.25.08 # can anyone help me? 03.25.14 *** Saving seen data "./dancer.seen" 03.25.28 Part MrSinister 03.25.30 # that sounds like a... personal problem(tm) to me? :D 03.26.15 Join Paul_The_Nerd [0] (n=Paul@cpe-66-68-93-2.austin.res.rr.com) 03.26.22 # RmnT: but what is reporting the error? make itself? a zip program? 03.27.28 # it's make itself. After I compile all the code I enter the command line "make zip", just like in the instructions in rockbog.org say 03.28.27 # ah well i'm not familiar enough with windows to know what 'error 487' means :P but you should see what command make is issuing that causes the crash, and try to run that command manually 03.28.37 # it may be zip 03.28.41 # It mentions a fork problem, so it may have to do with make trying to spawn off the other process 03.28.45 # as i'm guessing make is running fine... 03.28.54 # if you can build it 03.29.29 # yes It builds fine, although I need ti increase my memory heap size to compile 03.29.46 # weird. 03.29.54 # I'll look up what's Win32 error 487 03.30.16 Join whatboutbob [0] (n=cbd6595d@labb.contactor.se) 03.30.17 # Yeah that definitely sounds shady, unless you have a serious lack of ram :P 03.30.30 # I've been fighting with cygwin and this thing for 3 days now 03.30.38 # Did you build the cross compiler yourself? 03.31.10 # no. I donwloaded everything followinf the instructions 03.31.30 # ergh...i'm such a clueless noob...i've reinstalled cygwin but now can't even see how to run it... 03.31.31 # and I do have 1GB or RAM on my system and nothing's running while I compile Rockbox 03.32.30 # I'm pretty clueless when it comes to Windows and even more so with Cygwin, but you could try googling for heap problems with cygwin or something like that 03.32.30 # whatboutbob: there's a batch file in your installation folder. run that one 03.32.37 # RmnT: well... tried rebooting? 03.33.09 # sharpe: i rebooted many times, yes 03.33.21 # well, that solution's out then. 03.33.34 # definitely. that was my first try 03.34.15 # tried reinstalling cygwin from a different server? 03.35.26 # The fact that he's the only person I've heard of who needs to increase his Cygwin heap size just to install makes me think the problems something a bit more obscure. 03.35.37 # I mean "Just to compile" rather 03.36.10 # Paul: I agree with you 03.36.27 # I'm googleing the Win32 error 487 03.36.41 # cygwin.bat?rmnt: thanks, but i must've screwed the setup cos i just get a prompt that i can't seem to do anything with 03.37.24 # whatboutbob: yeaj I hear you . I had to try the installation a million times before I got one that worked. 03.37.54 Quit jeremy (Connection timed out) 03.38.06 # i don't remember cygwin installation being this difficult...(or perhaps the wiki was just clearer 6 months back) 03.38.37 # Paul_The_Nerd: Yeah, that's true. Unless it is some interaction between Cygwin and some other setting in Windows. 03.40.35 # well, that kind of sucks. my friend who's father died recently, her cousin just died. 03.40.41 Join jeremy [0] (i=katzj@freenode/staff/jeremy) 03.43.46 Quit muesli__ (Read error: 110 (Connection timed out)) 03.45.00 # there's lots of lonks on the web referring to error 487 with cygwin....still reading 03.45.09 # lonks=links 03.47.23 # woo! firefox has froze with using 138megs of memory, again. :) 03.47.41 # bah 03.48.00 # i have gotten it to >500 03.48.16 # heh 03.48.19 Join TCK [0] (n=tckocr@81-178-249-38.dsl.pipex.com) 03.48.25 # noob 03.48.33 # psh. 03.49.00 # you wait, i'll get it to use the page file! 03.49.33 Join parametr [0] (i=parametr@eu85-86-132-117.clientes.euskaltel.es) 03.49.36 # heh 03.49.40 # it is at 135 atm 03.49.59 # then again, i am using downthemall to dl about 500 images 03.50.15 # starting over from 23 03.50.35 Quit parametr (Client Quit) 03.50.55 Join Jungti1234 [0] (n=jungti12@124.60.10.75) 03.51.44 # hi 03.51.48 # hello 03.52.18 # sharpe: you are such an upstanding young man 03.53.22 # thanks. 03.54.11 # http://dvdprime.dreamwiz.com/files/upload/200604/20060421113814726.jpg 03.55.13 # Jungti1234: ... 03.55.23 # hehe 03.55.32 # and the purpose of that was....? 03.56.10 # haha. 03.56.15 # purpose? 03.56.36 # reason for linking to it 03.56.39 # It's advertisement of nike. 03.57.39 # >_> 03.57.53 # Because it's nice. 03.58.00 # right then... 03.59.59 Nick BHSPitLappy2 is now known as BHSPitLappy (i=Steve-O@67.64.145.221) 04.02.52 Quit jeremy (Connection timed out) 04.04.15 Join jeremy [0] (i=katzj@freenode/staff/jeremy) 04.06.27 # heh, apparantly i made four errors in proofreading something. 04.07.06 # i've never seen someone write a message so happily. 04.07.32 # wow 04.07.32 # http://www.pmplab.org/bbs/data/screenshot/e_SV402156.jpg 04.08.08 # okay 04.08.21 # and the fact if i could read japanese, would make it soo much better. 04.08.24 Part Paul_The_Nerd 04.08.37 # but, yeah, i realize that's the windows xp install screen... 04.08.37 # it isnt jap 04.08.40 # sharpe: http://www.pmplab.org/bbs/zboard.php?id=eng 04.09.09 # wait...yes it is 04.09.22 # no it isn't 04.09.29 # it's korean 04.09.39 # hm? 04.09.40 # wait no it isnt 04.09.43 # well, it is in a country's language i haven't been to... 04.09.44 # rebooting.... 04.09.45 # :D 04.09.53 Quit RmnT () 04.10.12 # Mikachu: i thought i saw "end" somewhere in there, but i realize that i was mistaken 04.11.58 Join Haykuro [0] (n=haykuro@tor/session/external/x-1432a5016040ccb3) 04.12.29 # I believe that may use windows in my H300 sometime. 04.12.30 # i dont think downThemAll is working... 04.14.37 # bah...i'm damn close to giving up on cygwin...i just followed the noob guide with screenshots and i still can't get it to work... 04.14.55 Quit TeaSea ("Leaving") 04.17.53 # when i run cygwin i'm just getting a prompt: bash-3.1$ that i can't seem to do anything with.... 04.18.12 # path isn't set correctly... 04.19.15 # any ideas what i need to set it to? 04.19.39 # erm 04.19.48 # i suddenly don't realize what i was talking about, hold on 04.20.12 # add $cygwin\bin 04.20.31 # errrr 04.21.08 # are you starting cygwin with the batch file ? 04.21.23 # c:\cygwin\usr\local\bin 04.21.25 # and 04.21.25 # wait 04.21.27 # er... 04.21.34 # c:\cygwin\bin 04.21.42 # when i get the prompt: no. When i run the batch file the screen pops up for a split second and closes. 04.22.07 # hmm 04.22.29 # what is in the batch file? 04.22.31 # batch file is currently: 04.22.32 # @echo off 04.22.35 # C: 04.22.39 # chdir C:\Rockbox_Final3\bin 04.22.43 # bash --login -i 04.22.56 # that's it. 04.23.11 # is that where the executables are? 04.23.17 # yes 04.23.23 # i'm asking him... 04.23.35 # =P 04.23.40 # heh 04.23.55 # there's a whole bunch of exes in that dir, yeah... 04.24.00 # okay... 04.24.27 # tried reinstalling to a different directory? :D 04.25.15 # Hmmm 04.25.17 # This is strange 04.25.17 # yeah...see 'Final3'? ...there's been a 'final2' and a 'final' as well... 04.25.32 # i see... 04.25.49 # want to make a Final4? :) 04.25.51 # I've completely re-installed rockbox and theres a SID.codec sitting right there 04.26.07 # And yet when I try to play a SID file it says no codec found 04.26.31 # feels alot like i'm going around in circles. :( 04.27.11 # whatboutbob: only if you start to use final, then you're circular. otherwise, so far you're linear 04.27.33 # hehe...gee thanks... 04.27.39 # eh, i try. 04.27.47 # i'm not very sure about your problem though. 04.27.54 # has that happened every time? 04.28.02 # yup. 04.28.09 # weird 04.28.14 # tried a different drive? 04.28.58 # nope. i've just installed vmware though. 04.29.04 # heh 04.29.22 Join JdGordon [0] (n=JdGordon@c211-28-227-249.smelb1.vic.optusnet.com.au) 04.29.31 # AHRH! 04.29.45 # now i've got no idea how to use this. *rolls eyes* 04.30.04 # aren't there instructions on the wiki? 04.30.21 # not to patch... 04.30.29 # hehe...i can't even see where the output files are... 04.31.11 # er 04.31.26 # //Debian ? 04.31.37 # ...see...that's what i would have thought.... 04.32.06 # ...but no. 04.32.21 # mmhmm 04.33.08 # i'm not sure what to tell you then 04.33.21 # screw it...does some kinda sole feel like compiling a build with preglows's optical recording patch in it and sharing it w/ me? 04.33.34 # i just wanna test the bloody thing. 04.33.36 # what target? 04.33.43 # h120 04.33.44 Quit jeremy (Connection timed out) 04.33.47 # eh, why not... 04.33.57 # but i've spent 2 hours frigging around with cygwin and vmware. 04.34.00 # thanks mate. 04.34.15 # i just don't have the patience to deal with cygwin anymore today. 04.34.18 # heh 04.34.23 Join Paul_The_Nerd [0] (n=Paul@cpe-66-68-93-2.austin.res.rr.com) 04.34.38 # where would be preglow's patch? 04.34.56 # he posted a link earlier...lemme see... 04.35.04 Join jeremy [0] (i=katzj@freenode/staff/jeremy) 04.35.08 # http://www.pvv.org/~thomj/rockbox/spdif_recording.patch 04.35.15 # 'kay 04.35.56 # wish i knew why my old cygwin stopped working...never had a prob w/ it... 04.36.10 # new fangled cygwin :D 04.36.15 # * Paul_The_Nerd suggests VMWare. 04.36.33 # he can't access //Debian ... 04.36.44 # Firewall? 04.36.55 # Paul_The_Nerd: w/ VMWare, when I make a build, how the hell do i access it? 04.37.23 # whatboutbob: Do you have a firewall, like Zone Alarm? 04.37.33 # sygate 04.37.58 # Okay, firewalls often prevent access. Try disabling it briefly to see if that's it. 04.38.03 # Also, its \\Debian not //Debian 04.38.07 # The direction is important 04.38.29 # well, we all know my luck with... something i don't have much luck with. 04.39.33 # spreadable butter with canola oil! oh my god! 04.39.39 # such an innovation! 04.39.55 # because of canola oil! who would've though of that? 04.40.38 # i think i'm doing something stupid tho....i'm in vmware, in /home/user/rockbox-devel/build_h120...i can see rockbox.zip...but how do i get that to the iriver? 04.41.09 # whatboutbob: The VMWare image is seen as a virtual machine on your network. Start->Run-> \\Debian 04.41.22 # whatboutbob: It's a samba share so you can then just browse to the file 04.41.55 # u/p? 04.42.12 # Okay, I don't know what "u/p" means. 04.42.16 # Can you speak in words maybe? 04.42.19 # got me too. 04.42.23 # sorry...username/password. 04.42.38 # Same as logging into the VMWare image 04.42.46 Quit Shadowarrior13 (Read error: 110 (Connection timed out)) 04.43.41 # hallelujah! 04.43.50 # thanks for talking slow for the ultra-noob guys. 04.44.00 # grarrrr! 04.44.02 # heh 04.44.28 # The VMWare thing is generally much better than the Cygwin thing. 04.44.46 # yeah 04.44.53 # even though i don't use it 04.45.53 # ok...now i've got a base build working...does patching in vmware work the same way as cygwin? 04.46.09 # Yup 04.47.06 # Paul_The_Nerd! 04.47.13 # oh dear...how do i go back a dir *blushes* 04.47.28 # cd .. 04.47.29 # Would you know anything about how to solve a Codec Not Found for error? 04.47.54 # whatboutbob: To get to complete home dir just do cd\ 04.47.55 # :) 04.47.57 # Kyomi: What kinda file is it? 04.47.58 # see...that's what i would have thought...but it says command not found... 04.48.11 # you think a lot, don't you? 04.48.22 # i try not to... :-/ 04.49.55 # whatboutbob: cd ~ gets to your home dir. cd .. goes up a level. 04.50.13 # Paul_The_Nerd: It's a SID file 04.50.23 # The SID codec is ther... sitting in codecs 04.50.27 # And it worked before 04.50.34 # But since the updates its... crapped out 04.51.12 # Kyomi: You're using the 1.2b patch? 04.51.16 # wow... 04.51.18 Join Sinbios [0] (n=Sinbios@69.156.116.162) 04.51.37 # i just got a bag of chips out of my refridgerator... that have been in there, unopened... since thursday.. 04.51.53 Quit Kohlrabi (Read error: 104 (Connection reset by peer)) 04.51.57 Quit ProgramZeta (Read error: 104 (Connection reset by peer)) 04.52.37 # Paul_The_Nerd: I dunno how to check 04.52.55 # Paul_The_Nerd: I don't believe so.. KOSH didn't say anything about it 04.53.11 # The last thing I saw on the SID codec is he/she removed 1.0 and added 1.1 04.55.57 # Kyomi: Well I can't help with the optimized build at all. That error would imply that the proper codec file wasn't found. 04.56.29 # But it's sitting right there in the codecs dir 04.56.36 # I can see it in windows and on the h300 04.56.42 # h320 rather 04.56.51 # Kyomi: Yes, but are you user that's a NEW version of it, or is that left over from your previous install? 04.57.00 # That could be an outdated file 04.57.21 # duh...i was typing 'cd..' not 'cd ..'. Thanks for your extreme patience guys...and not openly laughing at me. :) 04.57.56 # Paul_The_Nerd: I've deleted my entire rockbox dir and re-installed it 04.58.07 # I'm pretty sure my batch file isn't the problem 04.58.14 # All it does is remove the themes/wps folder 04.58.20 # And some of the rocks I never use 04.58.33 # Kyomi: Well, there's something wrong with the experimental build then probably 04.58.36 # 3 hours later and i'm ready to start testing optical recording... 04.59.44 # Where is tag browser? 04.59.47 # Kyomi: You really shouldn't come asking for help unless you can verify the problem exists with the newest version of everything applicable (which would be a CVS Rockbox with the sid_1_2b.diff) 05.00.00 # Jungti1234: http://www.rockbox.org/twiki/bin/view/Main/TagCache 05.00.02 # Yep 05.00.13 # Paul_The_Nerd: It's in sync with the newest CVS 05.00.33 Quit jeremy (Connection timed out) 05.00.56 # Kyomi: No, it's not. It's in sync with it from whenever he made the most recent update, which can often be a day or two ago. It also has about 50 other patches that could break SID. 05.01.21 # I can see this is a losing battle :P 05.01.28 # * Kyomi gives way 05.01.30 Join jeremy [0] (i=katzj@freenode/staff/jeremy) 05.01.32 Join Gibbed [0] (i=rick@pool-71-108-2-183.lsanca.dsl-w.verizon.net) 05.01.36 Quit Rick (Nick collision from services.) 05.01.43 # Kyomi: I'm just saying that it's impossible to help with a problem that can't even be identified. 05.01.48 Nick Gibbed is now known as Rick (i=rick@pool-71-108-2-183.lsanca.dsl-w.verizon.net) 05.01.50 # TagCache is ID3 tag? 05.01.53 # It is identified 05.02.02 # Sid codec can't be found even though its right there 05.02.06 # Kyomi: Alright. Tell me then, which version of the SID patch is he using? 05.02.16 # 1.1 as far as I know 05.02.24 # Kyomi: Which is outdated, and doesn't work period any more. 05.02.29 # Unless CVS has SID in it 05.02.39 # There we go, problem solved :) 05.02.41 # Kyomi: CVS does not have SID. That's one you can check for yourself. 05.02.50 # Kyomi: You can't *build* Rockbox with the 1.1 patch. 05.03.00 # o.o 05.03.10 # So, it can't be the 1.1, at least not without modifications. 05.03.15 # Alright then 05.03.18 # It's the 1.2b :) 05.03.24 # Since it works for everything else :) 05.03.59 # You're now guessing though 05.04.14 # Well there isn't any newer SID codec 05.04.20 # And you can't build it with 1.1 05.04.24 # So it's 1.2 05.04.27 # :) 05.04.27 # Or 1.2b 05.04.32 # o.o 05.04.37 # Or he modified 1.1 to build 05.04.41 # hey, Tag Browser is "ID3 database" menu? 05.04.44 # Alright... I give up, I'm retarded :P 05.04.44 # yes 05.04.46 # And because the 1.1 is out of date, it builds but does not actually run 05.04.57 # You win ok? : 05.05.01 # *surrenders* 05.05.13 # I'm just saying it's not a good idea to ask for help unless you can actually clearly state the conditions under which the problems occur. 05.05.30 # Well.. I did o.o 05.05.34 # As it is, 1.2b doesn't even build with the newest CVS, which is why I was 100% sure it wasn't the NEWEST CVS. 05.05.47 # What was "clear" about "I don't know which version of the SID patch he's using, or how old the build is?" 05.05.56 # I didn't say that :P 05.06.33 # Well, you couldn't answer me with a solid answer when I asked. 05.06.50 # That's the "conditions under which the problems occur" right there. 05.07.00 # Are you trying to torture me or something o.o 05.07.15 # Well, you keep saying you *did* give the relevant information 05.07.19 # I give up and then it's like.. you continue then I start again and then you make me give up again 05.07.24 # because I did 05.07.26 # Okay 05.07.27 # According to me :P 05.07.30 # Yes. 05.07.34 # According to you 05.07.38 # Who clearly doesn't know what "relevant" means 05.07.57 # And there you go again 05.07.59 # It's like saying "I run windows" and expecting someone to know whether that means XP, 2000, NT, ME, 98, 95, 3.1, 3.11, or 3.0 05.08.12 # Well I would assume it's xp 05.08.15 # Yes 05.08.18 # Then what do you do if it's not? 05.08.31 # Because I doubt people still use any 3.x to get to the internet 05.08.36 # 95 probably not 05.08.38 # 98 maybe 05.08.50 # Paul_The_Nerd: Ask them? 05.08.58 # Kyomi: And when I asked you, you said "I don't know." 05.09.36 # What do you want from me? >_< 05.09.53 # It's like you keep shoving my mistakes or whatever in my face 05.09.55 # answers, apparantly. 05.09.59 # apparently. 05.10.15 # Well you keep saying you didn't *make* a mistake 05.10.17 # I give up, you make me continue.. I give up again, you make me continue then insult me 05.11.06 # All I'm trying to do is press upon you the importance of actually identifying the full circumstances of a problem. 05.11.36 # I did.... but apparently not concise enough for you 05.11.42 # Notice the word "full" 05.11.49 # Which you fail to mention when I do and then just.... drill me 05.12.01 # What about what you told me was anything near full? 05.12.23 # You couldn't tell me the date the build was made, or what version of the offending patch it used. You basically said "I don't know" to the only important questions I had about it. 05.12.31 # Kyomi: windows crashes for me 05.12.33 # fix it 05.13.03 Quit Haykuro ("i'm off everyone, good bye!") 05.13.17 # I mean, you ask for help, then say I "drilled" you, when all I did was ask for the information I'd need to at least diagnose it. 05.14.42 # You even lied to me when you said "It's in sync with the latest CVS" 05.14.42 Join Gibbed [0] (i=rick@pool-71-108-2-183.lsanca.dsl-w.verizon.net) 05.14.42 Quit Rick (Nick collision from services.) 05.14.54 Nick Gibbed is now known as Rick (i=rick@pool-71-108-2-183.lsanca.dsl-w.verizon.net) 05.15.24 # eh, the love. 05.16.38 # sharpe: Well, a quick spot of research to me shows the latest Experimental is 14 hours out of date. I'm not a fan of people who ask for help, then won't actually *answer* questions, and then lie instead of actually checking their answer. 05.16.45 Join nave7693 [0] (n=evan@c-71-198-247-170.hsd1.ca.comcast.net) 05.17.49 # You are still going on about it? 05.17.59 # Jesus man... let it go already o.o 05.18.15 # lie? 05.18.22 # Right... I do that just to piss you off 05.18.42 # I answered your damn questions... maybe not the answers you wanted but I answered them to the best of my ability 05.18.53 # oh noes. 05.18.54 Join RmnT [0] (n=icmmsf@dsl081-064-128.sfo1.dsl.speakeasy.net) 05.19.06 Part ashridah ("whoa.") 05.19.09 # Kyomi: So your ability does not include "Going back to see in the thread what date he last updated to CVS?" 05.19.28 # Instead claiming that it's up to date with no evidence to back that up at all. 05.19.36 # I'm back....with a bit more info about my heap memory problem. 05.19.43 # RmnT: Whatcha got?\ 05.19.45 # ooh 05.19.51 # I found out that the find command is causeing the error. 05.20.08 # there's a perl script that uses the command "find" 05.20.19 # this is the command line that causes the proble, 05.20.21 # find apps "(" -name "*.rock" -o -name "*.ovl" ")" ! -empty -exec cp {} .rockbox/rocks/ \; 05.20.31 Join ProgramZeta [0] (n=zetachan@ip68-101-175-19.sd.sd.cox.net) 05.20.51 # if I run that command line it I get the same error I get when I run "make zip" 05.21.07 # strange 05.21.16 # sure it isn't cp ? 05.21.55 # well, the erro says it's "find", not "cp" 05.22.01 # 5 [main] find 2988 fhandler_dev_zero::fixup_mmap_after_fork: requested 0x480000 != 0x0 mem alloc base 0x480000, state 0x2000, size 1040384, Win32 error 487 05.22.10 # meh 05.23.40 # Kyomi: Look, I'm sorry for getting snappish at you. I've just been getting frustrated because people keep deciding my questions are unnecessary, and answering with what they think I'm asking, instead of simply giving me exactly what I ask. It makes it vastly harder to help people if they decide they know better than the person they're asking for help. 05.24.09 # Anyway, off to dinner. 05.24.10 Part Paul_The_Nerd 05.25.15 *** Saving seen data "./dancer.seen" 05.29.44 # im out 05.29.51 # sharpe: wanna come with me? 05.29.58 # why not, still nothing else to do. 05.30.16 # you can probably get laid 05.30.23 # well, i take that back 05.30.27 # meh 05.30.38 # maybe if someone gets really drunk you can =0 05.30.50 # that sounds like a personal insult 05.31.01 # well, there wont be anyone your age there 05.31.13 # i know 05.31.15 # you can still come though 05.31.20 # eh, it's okay 05.31.27 # fine...i see how you are 05.31.34 # heheh 05.46.00 # good evening! 05.47.26 # wow, hoppin' place. 05.48.05 # i meant to say hi but apparently i forgot to actually type it 05.48.18 # wha? 05.49.11 # :) 05.52.15 Part nave7693 05.52.44 # and...for those that are still interested in my memory heap problem: I have a workaround!! :) 05.52.50 # yay 05.53.02 # I replaced teh find with a straight cp 05.53.13 # very simple 05.53.23 # not really solverd the problem, just worked around it 05.53.29 # heh... 05.53.41 # but I can do a full rockbox build now 05.53.49 # that's good 05.53.59 # yep. that's all I wanted anyway 05.54.14 # thanks for your interest, sharpe 05.54.51 # heh, you're welcome 05.56.13 Quit Kyomi () 05.56.43 # I can go cook dinner now. Take care y'all. 05.57.17 # later 05.57.22 Quit RmnT () 06.00.21 Join amiconn_ [0] (n=jens@rockbox/developer/amiconn) 06.05.58 # do i really, want to try to get multicolor text mode working... 06.07.48 Join Zzompp [0] (n=zzompp@b81.myrootshell.com) 06.07.49 # of course you do! 06.08.00 # What's a C64 without blinknig yellow on red text! 06.08.04 # ::grin:: 06.08.11 # lol 06.08.16 # you want to write it ? 06.09.03 # :D 06.09.03 # hmmm... got enough trouble with playback currently :-P 06.09.06 # aww 06.09.21 # what about the code for the bitmap modes? 06.09.23 # plus, after 3.0, I think I'm going to take a rockbox break and work on writing an SCM or something. 06.09.41 # ooh. 06.09.53 # pretty acronym. :D 06.10.00 # VCS? 06.10.16 # ? 06.10.40 # Source Code Management system or Version Control System 06.10.47 # what CVS is, sorta 06.10.55 # Why bother, darcs already exists :P 06.11.01 # where did vcs come from? 06.11.08 # kapheine: whadat? 06.11.43 # lostlogic: http://www.darcs.net I couldn't live without it 06.11.52 # reading. 06.12.56 # nope, darcs doesn't do what my VCS will do. 06.13.12 # Solve world hunger? 06.13.14 # what will your VCS do? 06.13.45 # not telling. I might try to sell it and I don't want you bastards beating me to market (even though it will probably end up open source) 06.13.59 # yeah, i live to thrive off your ideas. ;) 06.14.15 # Well, as great as darcs is, SCM is hard and there is always room for improvement, so best of luck :P 06.14.35 # mmm bitkeeper 06.14.35 # It's one of those things that seems impossible to make perfect 06.14.40 # Galois: do you use bitkeeper? 06.14.56 # no!! 06.15.23 # Oh no, I hope I didn't bring back some childhood memories 06.15.31 # lostlogic: can i help? pretty please? heheh 06.16.14 # haha 06.16.54 # it's funny because, it's me :D 06.17.51 # kapheine: darcs feels a lot like Git. Why darcs over git? 06.18.57 Quit amiconn (Read error: 110 (Connection timed out)) 06.18.57 Nick amiconn_ is now known as amiconn (n=jens@rockbox/developer/amiconn) 06.19.11 # lostlogic: well, for one git isn't an SCM, it's a layer down. In fact, darcs has some initial support for using git as a backend. But beyond that, the major feature of darcs is patch theory. Which, in very simple terms, means it is meant for pulling in individual changes, rather than a state of a given tree. 06.19.40 # That is a very simplified explanation of it, but also I have about 8 or 9 beers in me, so don't expect me to explain the intricate details of patch theory :P 06.19.43 # okokok, why darcs over cogito then :-P 06.20.19 # ah, that does sound nice 06.20.31 # But I will point out that cogito still wins for large source trees. Darcs is still young and patch theory is processor intensive. It still has trouble with trees as large as the Linux kernel. 06.20.44 # so you can say "Hey, give me the cahnges from transaction X" and supposedly get just those changes applied in a Best Guess way to your current tree 06.21.43 # hmm. why is it i'm writing an emulator? 06.22.06 # oh i'm missing a page here. 06.22.10 # If I didn't have zero interest in learning haskell, I would like to incorporate my ideas with darcs. In theory, what I want to do is make an VCS that is _parse tree_ rather than _text_ based. 06.22.12 # Right. Which can be very handy when you have a stable tree and an unstable tree, and you want to pull bugfixes from unstable into stable, but not other changes 06.22.16 # nevermind 06.22.20 # kapheine: yep 06.22.59 # Darcs allows different patch types, but currently there is only the text based and searc/replace type changes. Nobody has implemented anything else, but thigns liek parse tree changes would be great. 06.23.25 # If you do start a VCS, you should try darcs for a bit. It's very possible it doesn't do all of what you want, but it should at least give you ideas to incorporate into your own system. 06.23.48 # you should name it something catchy. 06.23.54 # like, stick. 06.24.16 # *nod* Knowing myself, I won't actually end up wtih anything useable, but I'll learn a lot in the process of not making anything useable :) 06.24.21 # pancake sausages 06.24.45 # or gumby 06.24.54 # or pokey 06.25.02 # as of right now, my working name is STYLE 06.25.06 # don't know what it stands for yet. 06.25.07 # damn. 06.25.24 # shall try yelling less, everyone. 06.25.47 # it works... 06.25.54 # Style Tyle Yle Le E 06.26.06 # preglow: Sorry boss, but I can't get spdif recording working. 06.27.02 # hmm... 06.27.05 # first my rig: at853 mics > 3wire battery box > denecke ad20 > iriver H120 06.27.19 Quit axion_ (Read error: 110 (Connection timed out)) 06.27.31 # the denecke ad20 outputs 44.1Kz/20 bits 06.28.13 # First step was tp confirm that the rig worked in the iriver f/w (the ad20's been in the cupboard for a while). It worked fine. 06.28.42 Quit ProgramZeta (Read error: 104 (Connection reset by peer)) 06.29.30 # has any1 tried recording live gigs on the h300? is it pointless? 06.29.35 # Then I booted into rockbox, selected freq: 44.1, Source: digital, and left all other settings untouched. 06.29.56 # (will answer that in a minute jdgordon) 06.31.31 # Attempted to record: Size got to 8.00KB then stopped. Time kept running. I left it for a minute and then pressed stop. Nothing happened so I eventually reset. I attempted to salvage the file to no avail...it appears nothing was saved. 06.31.54 # such a tragedy... 06.32.06 # bye 06.32.16 Quit Jungti1234 () 06.34.09 # I changed Freq to 48khz, attempted to record again. Everything appeared to be working (well, the file size and time kept ticking), but when i stopped after 3 minutes and opened the file in adobe audition i'd recorded 6(!) minutes of silence 06.35.03 Join Paul_The_Nerd [0] (n=Paul@cpe-66-68-93-2.austin.res.rr.com) 06.35.41 Join ProgramZeta [0] (n=zetachan@ip68-101-175-19.sd.sd.cox.net) 06.39.23 Quit whatboutbob ("CGI:IRC (Ping timeout)") 06.47.21 Join whatboutbob [0] (n=cbd6595d@labb.contactor.se) 06.51.32 # preglow: so that's where i'm going to leave testing for now. I'm guessing (and what the hell would i know?) that its not liking the sample rate. 06.53.23 # oh, i forgot to mention that after successfully saving the 48khz file i shut down the iriver, plugged in the usb cable and restarted - but got an ata 11 error. This was replicable. 06.54.07 Join quobl_ [0] (n=quobl@tor/session/external/x-d3d9e2024fa7346f) 06.54.23 # and from comments in your code it sounds like Freq selection shouldn't change anything, so I tried recording w/ 44.1khz multiple times to no avail. 06.54.58 # JdGordon: I've not recorded w/ the H300 but I've mates that have quite successfully. 06.55.31 # i tried it once and i was on the back wall and pretty much all i got was the bass.. 06.55.58 # * JdGordon is going to a concert tomorow night and wants to record it :D 06.56.38 # oooh...are you talking about just using the internal mic? 06.57.13 Join MusiFreq [0] (n=MusiFreq@cpe-24-195-84-126.nycap.res.rr.com) 06.57.19 # ye 06.57.25 # yeah, i wouldn't bother. 06.57.39 # you need external mics tomake it worthwhile. 06.57.53 # thats what i guessed 06.58.12 # you can pick up budget mics for ~AU$100.... 06.58.28 Join Arrogant [0] (i=Scott@12.78.67.64) 06.58.44 # hahahaha budget! 06.59.18 # which gig are you hitting up? 06.59.49 # opeth tomorow night 07.00.10 # hehe...no wonder you just get bass if that's the stuff you're recording. :) 07.00.48 Quit quobl (Remote closed the connection) 07.01.09 # you can borrow my mics if you really want to... 07.01.38 # na, i like singing along and it would rec the recording :D 07.01.48 # hehe...that's true. :) 07.02.07 Join RoC_MM [0] (i=dragon@dsl-29-8.cofs.net) 07.02.14 # the forum's one of my fave venues. 07.02.20 Quit MusiFreq (Remote closed the connection) 07.02.41 Join MusiFreq [0] (n=MusiFreq@cpe-24-195-84-126.nycap.res.rr.com) 07.04.34 # wheee.... 07.11.20 Quit whatboutbob ("CGI:IRC (EOF)") 07.14.43 Quit TCK (Read error: 110 (Connection timed out)) 07.18.34 Quit RoC_MM ("Leaving") 07.23.57 Quit MusiFreq ("Lost terminal") 07.24.02 Join damaki_ [0] (n=Chocolat@ALille-153-1-16-246.w83-198.abo.wanadoo.fr) 07.25.17 *** Saving seen data "./dancer.seen" 07.30.07 Quit RotAtoR ("zzzzzzzzz") 07.31.21 # commit and run! 07.33.58 # Bah, if you manage to break something with *that* I'll be impressed. 07.36.12 Join KlrSpz [0] (n=klrSpz@c-24-0-64-6.hsd1.tx.comcast.net) 07.39.38 Quit damaki__ (Read error: 110 (Connection timed out)) 08.00.32 Join mymomthelush [0] (n=lush@68-65-235-200.ontrca.adelphia.net) 08.01.58 Quit JBGood25 (Read error: 110 (Connection timed out)) 08.18.24 # good morning 08.20.07 # anyone have a copy of the WPS Simulator? 08.20.19 # http://rasher.dk/rockbox/simulator/ shows that he's no longer hosting them 08.21.15 # Well, you could always just build one. 08.21.43 # Those ones were likely quite out of date anyway. 08.22.17 # on win32? 08.23.10 # Does it not work any more? 08.25.40 # supposedly not.. i mean he doesn't eve have links anymore 08.26.06 # KlrSpz: So, you haven't tried for yourself 08.26.15 # He says he can't build a Win32 SDL sim *from Linux* 08.26.32 # That note is also at least 23 days old. 08.27.19 # well i can't find it to build it anyway... i must be missing the link somewhere 08.27.48 # When you run "make" in your build directory, one of the choices is "Simulator" 08.29.18 # configure, not make 08.29.24 # Oh, right 08.29.25 # Sorry 08.29.41 # ../tools/configure, pick a target, then S for sim instead of N for normal 08.30.03 # Then make, and make install (instead of make zip) 08.30.25 # The cross-compilation of a win32 sdl sim from windows should be possible, but has to be added to configure 08.30.38 # Erm, from linux of course 08.31.14 # I think the site's a good bit out of date. 08.32.03 # Yeah, rashers seems to have little time and/or interest to do rockbox work lately 08.32.56 # The fonts are also a bit outdated; the .fnt files are made with the buggy convbdf that made some glyphs appear half-height 08.33.28 # The .bdf files are fine though 08.34.15 Quit mymomthelush ("Trillian (http://www.ceruleanstudios.com") 08.36.08 # anyone have a nanopod skin/protector they can suggest? 08.36.34 # a 08.36.40 # think plastic bag! 08.36.48 # thick.. 08.36.51 # I'm a fan of the iSkins one. It makes it a bit bulkier, but I rather like it. 08.37.21 # i was thinkin of this one: http://tinyurl.com/jpsl5 08.37.29 # It's also really good at keeping the scrollwheel from getting bumped if I have hold off, and makes it easy to press any of the 4 buttons without accidentally scrolling. 08.37.32 # Haha, imho that's one off their weird things about most ipods, especially the nano 08.38.19 # KlrSpz: They use "dirt" as a verb. I don't like it. :-P 08.38.54 # What's the point in making such a small device but at the same time making it so scratchy that you need to make it larger by adding some protector?? 08.38.55 # amiconn: The scrollwheel protector has a sorta folded ridge around the outside edge that lets you press the buttons without getting close enough for it to pick up your finger contact. 08.39.09 # gotta link? 08.39.13 # * Paul_The_Nerd felt it was too small anyway' 08.39.28 # I have large, clumsy hands. I don't mix well with small devices. 08.39.47 # KlrSpz: This is the one I use http://www.iskin.com/duo_nano/features.html 08.40.07 Join JBGood25 [0] (i=Johnq@JBAUMAN.WV.CC.cmu.edu) 08.40.10 # i are graphically editing. 08.40.22 # and am also incoherent. 08.41.08 # which color do you have paul? 08.41.29 # that looks tight 08.41.30 Quit ap0calypse (Read error: 104 (Connection reset by peer)) 08.41.32 # the black and red one 08.41.38 # or the orange one 08.41.41 # KlrSpz: I have the black and green. 08.41.49 # acid groove? 08.41.52 # Yup 08.41.55 # how does the glowing look? 08.42.03 # It's not a glowing one. 08.42.07 # At least I don't think it is. 08.42.34 # ah, yeah only 3 of them are 08.42.38 # the rest look like they glow though 08.42.46 # or is there a thin protector on it? 08.43.01 # What? 08.43.03 # lostlogic: Regarding voice: how much delay to expect from the mix buffer when playback is stopped? 08.44.20 # Voice got tons better on swcodec thanks to your rework, but clip preemption still seems to have problems 08.44.55 Quit ProgramZeta (Read error: 104 (Connection reset by peer)) 08.45.23 # Paul_The_Nerd, nm.. just trying to figure which i like better 08.45.28 # carbon blast or the black/red one 08.45.53 # http://www.iskin.com/duo_nano/images/Duo_nano/gallery/large/A12.jpg 08.46.07 # KlrSpz: Honestly, the main reason I ordered an iSkin was I wanted a better case for my H120, and those were on sale at the time, and I thought "Hmm... why not just order cases for both from the same place." 08.46.28 # but you would recommend it right? 08.46.32 # Absolut3e 08.46.35 # Absolutely even 08.46.54 # lostlogic: I have an idea what might cause this. Is it correct that you didn't touch talk.c, or did I overlook something? 08.47.31 # Also, would talk.c be allowed to preempt a clip immediately on swcodec, causing incomplete frames? 08.51.16 # I wonder. If I take a H3xx rockbox wps theme and make it fit to a x5l would be the best way to adjust the pic sizes the quickest 08.53.13 # Hotfusion: Scale them all to 72% of their size, then scale the pixel coordinates to 72% of their values, then pick a font 72% smaller, then add a padding pixel or two to the backdrop image if it's a wee bit too small as it may be. 72.72727272 is a more valid value, but 73% may result in a too large backdrop. 08.54.53 # yeah I'll have to play with the font size 08.55.05 # got to sleep 08.55.12 # l8 08.55.15 # Ooops, not "72% smaller" but "72% of the original size" 08.56.02 # yeah, fire up photoshop. Cant remember the free one though. 08.56.14 # name keeps slipping 08.56.14 # gimpshop 08.56.24 # or mspaint.net 08.56.31 # there is that but there is another 08.57.00 # it wans't very advanced but you could save multiple formats and very easy to resize stuff 08.57.05 # didn't take up much memory 08.57.46 Join TCK [0] (n=tckocr@81-178-249-38.dsl.pipex.com) 09.02.21 Quit JBGood25 (Read error: 110 (Connection timed out)) 09.04.17 Part Paul_The_Nerd 09.04.26 # ah I remember now 09.04.28 # infranview 09.04.50 Quit macdonalder ("bye bye ;D") 09.08.32 # woo! i did it again. 09.08.38 Join dj-fu [0] (n=deejay@60-234-218-124.bitstream.orcon.net.nz) 09.11.28 # who wants to see a badly done planet graphic... heh... 09.14.46 Part taz 09.18.46 # me 09.18.56 # okay... http://mattb.strangled.net/qdig/random/plan3.png 09.19.15 # my last planet endeavour: http://test.killerspaz.com/flash/newSite/ 09.19.26 # that's not too bad 09.19.38 # heh 09.19.45 # done in gimp without any tutorial... 09.19.57 # if you take the part that's white and color it to blue or something, then repeat it and make it green, you can have a habital planet 09.19.58 # i know i'm going to forget how i did it in a few hours 09.20.14 # i know, it's supposed to be more of a moonish type thing. 09.20.28 # ahh yeah 09.20.53 # and supposed to be smaller than that 09.20.53 Join stoffel [0] (n=sfr@p50815678.dip.t-dialin.net) 09.20.58 # http://babes.killerspaz.com/babes/!layout/layout2.jpg you can kinda see a moon i have in the top left there (nsfw) 09.21.13 # it looks like the exact same technique 09.21.25 # heh 09.21.30 # did you use gimp? :D 09.21.37 # photoshop 09.21.43 # ahah, one up. 09.22.20 # i probably could've done a grunge brush type thing... 09.22.30 # for a better looking surface. 09.23.13 # i'm gunna pass out 09.23.19 # that's nice 09.23.23 # gotta dream up my wonder-wps 09.23.47 # hah, mine's text based. 09.24.03 # i want mien to be cool so my friends will drool :).. c'ya tomorrow 09.24.06 Quit KlrSpz () 09.25.18 *** Saving seen data "./dancer.seen" 09.25.51 Join MarcoPolo [0] (n=MarcoPol@che78-2-82-227-240-106.fbx.proxad.net) 09.26.59 Part amiconn 09.28.06 Join amiconn [0] (n=jens@rockbox/developer/amiconn) 09.28.45 Join Acksaw [0] (n=Acksaw@spc1-stok5-0-0-cust770.bagu.broadband.ntl.com) 09.34.32 Quit MarcoPolo (Remote closed the connection) 09.40.31 Join powr-toc [0] (n=r@84-51-129-124.rickmo645.adsl.metronet.co.uk) 09.40.40 Quit `3nergy (Read error: 104 (Connection reset by peer)) 09.45.27 Join Ribs [0] (n=ribs@riblet.plus.com) 09.47.47 Join mikearthur [0] (i=mike@82-41-205-190.cable.ubr11.edin.blueyonder.co.uk) 09.51.55 Quit TCK ("well, if you say so.") 10.12.26 Join SereRokR [0] (n=Fletcher@Fcf8a.f.strato-dslnet.de) 10.17.16 Join ender` [0] (i=ychat@84.52.165.220) 10.21.56 Quit SereR0KR (Read error: 110 (Connection timed out)) 10.27.21 # hahaa, found a solution to do the fast tagcache committing: two-way lookup lists :) 10.27.54 Quit SereRokR ("XChat Aqua") 10.28.21 Join SereRokR [0] (n=Fletcher@Fcf8a.f.strato-dslnet.de) 10.29.09 Join ProgramZeta [0] (n=zetachan@ip68-101-175-19.sd.sd.cox.net) 10.38.39 Quit jeremy (Connection timed out) 10.39.09 Join TeaSea [0] (n=Thunderc@lonsdale.nat.lancs.ac.uk) 10.39.38 Join MarcoPolo [0] (n=MarcoPol@che78-2-82-227-240-106.fbx.proxad.net) 10.39.50 # omg. The iriver retail firmware seems to be unoptimised code... 10.40.16 # well... duh! 10.40.30 Join bluebrother [0] (i=jtFnE2Ja@nat-wh-1.rz.uni-karlsruhe.de) 10.40.32 Join jeremy [0] (i=katzj@freenode/staff/jeremy) 10.40.53 # Of course the codecs can't be unoptimised, but at least the isp1362 driver code is 10.44.39 Join muesli__ [0] (n=muesli_t@88.134.20.76) 10.53.31 Join PaulJ [0] (n=PaulJ@vpn-3035.gwdg.de) 11.01.28 Join lodesi [0] (n=moi@d02m-89-83-210-49.d4.club-internet.fr) 11.05.15 Join `3nergy [0] (n=3nergy@techgaming.net) 11.11.38 # looks good, now the fast committing seems to be actually working 11.12.12 Join jbauman [0] (i=Johnq@JBAUMAN.RES.cmu.edu) 11.16.48 Quit MarcoPolo (Remote closed the connection) 11.19.04 Join Paul_The_Nerd [0] (n=Paul@cpe-66-68-93-2.austin.res.rr.com) 11.19.29 Join Hansmaulwurf [0] (n=maerlyn@p5081AAA3.dip0.t-ipconnect.de) 11.19.56 Quit Arrogant ("Leaving") 11.20.14 Quit Hansmaulwurf (Client Quit) 11.22.59 Quit `3nergy (Read error: 104 (Connection reset by peer)) 11.25.07 Join Hansmaulwurf [0] (n=maerlyn@p5081AAA3.dip0.t-ipconnect.de) 11.25.15 Part Paul_The_Nerd 11.25.21 *** Saving seen data "./dancer.seen" 11.32.02 Part amiconn 11.33.01 Join speacial_ed [0] (n=chatzill@00095b0ec047.click-network.com) 11.38.27 Join ep0ch [0] (n=ep0ch@84.12.171.53) 11.41.32 # i fancy doing some testing with the Voice files, which English one sounds best? 11.43.31 Join powers [0] (n=gentoo@ppp31-74.adsl.forthnet.gr) 11.44.35 # hi everyone! I was wondering if i can have both rockbox and ipodlinux on my nano.. 11.44.49 # yes 11.45.15 # u know how? i would really appreciate your help 11.45.56 # or just point me a link 11.46.11 # i dont have an ipod.. but i think u need to format the disk for an ext2 part and fat32 and use ipodloader2 or something 11.46.32 # oh 11.46.49 # http://www.rockbox.org/twiki/bin/view/Main/IpodInstallation 11.47.02 # somehwere on that page should be able to help u 11.47.16 # u mean i have to make different partition for linux? 11.47.37 # i dont know... 11.47.41 # nevermind, i think i found something 11.47.45 # paul_the_nerd is the guy to ask.. 11.47.47 # thanks :) 11.48.25 # yeah i remember paul 11.48.47 # u know what times he hangs in here? 11.49.28 # might need some help if i screw up my pod 11.49.33 # :P 11.49.46 # he's in the us iirc, so ye... 11.50.01 # he is normally online when i am.. left 20min ago 11.50.13 # damn 11.50.22 # anyway.. thanx again : 11.50.29 Quit powers () 11.51.54 # lostlogic, linuxstb: fancy updating the SID patch to work with CVS? 12.03.46 Join pondlife [0] (n=pondlife@86.21.225.217) 12.04.47 Quit stoffel (Remote closed the connection) 12.04.50 Join matsl [0] (n=matsl@1-1-4-2a.mal.sth.bostream.se) 12.07.21 Join obo [0] (n=obo@82-46-82-224.cable.ubr02.trow.blueyonder.co.uk) 12.08.49 Join lee-qid_ [0] (n=liqid@p5496569D.dip.t-dialin.net) 12.09.54 Nick lee-qid_ is now known as lee-qid (n=liqid@p5496569D.dip.t-dialin.net) 12.10.31 Quit speacial_ed ("Bye") 12.12.35 Join JBGood [0] (i=Johnq@JBAUMAN.WV.CC.cmu.edu) 12.13.07 Join Kohlrabi [0] (n=Kohlrabi@dslb-082-083-138-075.pools.arcor-ip.net) 12.14.11 Join lodesi_ [0] (n=moi@d02m-89-83-210-49.d4.club-internet.fr) 12.15.41 Quit lodesi (Read error: 110 (Connection timed out)) 12.15.51 Join powers [0] (n=gentoo@ppp31-74.adsl.forthnet.gr) 12.16.29 Quit powers (Client Quit) 12.18.18 # hmm, it seems tagcache is currently allocating ram much more than it needs when loading to ram 12.18.57 # about 400 kB too much at least 12.21.54 # preglow: do you know why mp1 and mp3 play with no boost (on ihp) whereas mp2 requires 50% boost? 12.22.43 Quit jbauman (Read error: 101 (Network is unreachable)) 12.25.53 Quit jeremy (Connection timed out) 12.27.26 Join jeremy [0] (i=katzj@freenode/staff/jeremy) 12.28.48 Quit matsl (Read error: 110 (Connection timed out)) 12.29.09 Join matsl [0] (n=matsl@1-1-4-2a.mal.sth.bostream.se) 12.35.32 Join JBGood25 [0] (i=Johnq@JBAUMAN.RES.cmu.edu) 12.47.44 Quit Kohlrabi (Nick collision from services.) 12.47.55 Join Kohlriba [0] (n=Kohlrabi@dslb-082-083-154-010.pools.arcor-ip.net) 12.52.21 Quit JBGood (Read error: 110 (Connection timed out)) 13.01.52 # linuxstb_: there's a silly bug in sudoku, if you open a saved .ss that isn't in a legal state, you can't exit the plugin because you can't open the menu while the board is illegal 13.04.10 # linuxstb_: i also can't figure out why you return PLUGIN_USB_CONNECTED when you quit from the menu 13.08.06 # ep0ch: no 13.08.17 # arghhhh 13.08.22 # so recording hangs with other people as well 13.08.24 # great 13.14.07 Quit jeremy (Connection timed out) 13.15.06 Join jeremy [0] (i=katzj@freenode/staff/jeremy) 13.16.45 Join amiconn [0] (n=jens@rockbox/developer/amiconn) 13.17.44 Join darkless [0] (n=darkless@62.79.44.48) 13.21.28 # Mikachu: Thanks for the bug report - I'll have a look. I seem to recall that I returned PLUGIN_USB_CONNECTED to force Rockbox to rescan the disk because the plugin might have created a new file. But it probably shouldn't always return that... 13.21.33 Nick linuxstb_ is now known as linuxstb (n=linuxstb@i-83-67-212-170.freedom2surf.net) 13.21.43 Quit lodesi_ (Read error: 110 (Connection timed out)) 13.22.36 Quit obo ("bye") 13.25.22 *** Saving seen data "./dancer.seen" 13.26.06 Join lodesi_ [0] (n=moi@d02m-89-83-210-49.d4.club-internet.fr) 13.29.18 # linuxstb: Another sudoku quirk: If you start sudoku as a plugin, it always starts with generating a new game 13.29.22 # linuxstb: i also don't think the quit menu entry should save, or rename it Save & Quit 13.29.52 # linuxstb: i solved it like this 13.30.02 # - return(true); 13.30.02 # + return(!check_status(state)); 13.30.05 # in load_sudoku 13.30.13 # This is a lenghty operation esp. on archos, and it is annoying if you don't want that, but e.g. want to build yor own game 13.30.17 # anyone got any idea what might cause recording to just hang? 13.30.55 Quit wehn () 13.31.45 # Mikachu: I'm not sure if that's enough - check_status() doesn't check the whole board, it just checks the part of the board affected by the number at the cursor position. 13.32.05 # linuxstb: hm yeah 13.32.22 # you could still move the cursor into a space that doesn't let you exit 13.36.10 # amiconn: If the default "sudoku.ss" file exists, then that will be loaded when you start Sudoku as a plugin. But as you say, if that doesn't exist it will generate a game randomly. I'm not sure I would want to change that. 13.36.51 # what happens if you open a .ss file, generate, and save? 13.36.52 Join webguest15 [0] (n=5223207c@labb.contactor.se) 13.37.17 # The generate function sets the filename to sudoku.ss 13.37.32 Join Moos [0] (i=DrMoos@m132.net81-66-158.noos.fr) 13.37.35 Join mborus [0] (n=54908e43@labb.contactor.se) 13.37.52 # okay 13.37.56 # Hi - just testing spdif in :) 13.38.40 Quit webguest15 (Client Quit) 13.38.55 Join Paul_The_Nerd [0] (n=Paul@cpe-66-68-93-2.austin.res.rr.com) 13.39.21 # linuxstb: Generating takes 15..30 seconds on Ondio... 13.40.10 Part Paul_The_Nerd 13.40.34 # Regarding ideas why recording hangs: Is it possible that the Iriver hangs when no signal is found? 13.40.58 # amiconn: I still think that the majority of users will start Sudoku in order to play a random game, rather than enter one manually. 13.41.38 # And I think that should only happen the first time you start the plugin. The next time, you will have a sudoku.ss file which will be loaded. 13.41.48 # mborus: doubt it 13.41.58 # i haven't done much to the code either 13.42.03 # linuxstb: It happens everytime as long as there is no sudoku.ss 13.42.09 # so it's probably some braindead hardware thing 13.42.29 # When I go into debug - S/PDIF analyser to signal is shown. I tried both 44.1kHz and 48 kHz signals and with the same setup I can record 44.1 using the Iriver firmware. 13.42.38 # ...which won't exist unless you explicitly save a game with that name 13.42.55 # mborus: i can record both 44.1khz and 48khz here with no problems 13.43.05 # amiconn: Then something is going wrong - a randomly generated game should be given that name, and quitting should cause it to be saved. 13.43.09 # i have only tried 16 bit sound, thoigh 13.43.27 # linuxstb: It's definitely not saved on Ondio 13.43.51 Quit Moos (Read error: 104 (Connection reset by peer)) 13.44.14 Join mborus_2nd [0] (n=54908e43@labb.contactor.se) 13.44.52 Quit mborus ("CGI:IRC (EOF)") 13.45.15 Join Paul_The_Nerd [0] (n=Paul@cpe-66-68-93-2.austin.res.rr.com) 13.46.30 Quit matsl (Read error: 110 (Connection timed out)) 13.46.34 # i can only make recording hang after having switched from either mic/line in to digital 13.46.38 # preglow, just to make sure it's not a hardware problem I'm going to do a digital recording on the Iriver firmware right now and try Rockbox again afterwards. 13.46.59 # amiconn: I'm guessing you're quitting using the OFF button, rather than selecting Quit in the menu? The game only seems to be saved when you quit from the menu, and ipods don't have a quit button defined.... 13.47.06 Join matsl [0] (n=matsl@1-1-4-2a.mal.sth.bostream.se) 13.47.27 # linuxstb: Yes of course I'm using the Off button. Using the menu would be cumbersome 13.47.47 # so create an empty sudoku.ss? 13.48.05 # mborus_2nd: oh, i'm almost certain it's not a hardware problem 13.48.19 # Imho all plugins should have a quit button. Showing the menu when the intended operation is to quit is counter-intuitive 13.48.37 # (like the current behaviour of the jpeg viewer and jewels) 13.48.40 # and a separate button for quit is also quite a waste 13.49.07 Nick lee-qid is now known as lee-qid||0xf00d (n=liqid@p5496569D.dip.t-dialin.net) 13.49.46 # Imho it's not a waste, but rather ensures consistent operation 13.50.06 # I like the jewels game, but exiting it has become a button orgy recently... 13.50.07 # i'm ok with it if there's enough buttons 13.50.17 # but how would you fit a quit button in ipod doom? 13.50.39 # exiting it has become a case of entering the menu and pressing quit 13.50.42 # hardly a big bother 13.50.48 # Doom is different in that it has its own in-game menus, which do have a quit option 13.50.49 # amiconn: I agree with you, but in practice we don't have enough buttons to give everything a consistent purpose. 13.51.03 # i don't feel entering a menu and quitting is a big bother at all 13.53.05 # Quitting jewels used to be as simple as pressing Off. Now it is: Press Off, select 'End Game' from the in-game menu (3x down, right), and select 'Quit' from the outer menu (4x down, right) 13.53.20 Quit bluebrother ("brb ...") 13.53.30 # An operation that used to be 1 keypress extended to 10 keypresses... 13.53.33 # put quit in the first menu as well 13.54.08 # but ok, what suggestion do you have for a quit button on ipod? 13.54.09 # sid.c doesn't seem to compile anymore. =/ 13.54.25 # An the in game menu isn't a standard rockbox menu; on ipod it doesn't react on scroll-repeats... 13.54.56 # Back. Here's the test result just to make sure. Iriver firmware records digitally both of 48 and 44.1 kHz - so my setup works. Rockbox creates a 0-Byte sized 13.55.03 # 10 pressed does seem like a bit much. 13.55.18 # amiconn: won't it wrap if you press up instead of down? 13.55.19 # It seems that "Quit" should be standardized to "Pull up the menu, go up one (looping to the bottom) and press." 13.55.20 # file - shows 8k in the display and the time counts up 13.55.36 # mborus_2nd: i can record just fine here 13.55.36 # amiconn: What's the normal button to bring up the main menu on the Ondio? Is that free in Jewels? 13.55.40 # Well, you can use Up to wrap around, but with the non-standard menus you can't be sure it works 13.55.54 # mborus_2nd: what format does it send in? 13.55.56 # Main menu on Ondio is long Mode 13.55.57 # mborus_2nd: 16 bits? 13.56.11 # amiconn: what would you suggest we use as a quit button on ipod? 13.56.14 # yes - it should be 16bit stereo 44.1 kHz 13.56.28 # mborus_2nd: btw, do a proper reboot 13.56.34 # mborus_2nd: then try again 13.56.40 # ok 13.57.25 # preglow: On ipod there isn't a real standard yet, seems to be common to use just Menu if the plugin doesn't have a menu or otherwise needs many buttons. In the latter case Select+Menu is common 13.57.56 # amiconn: I totally agree with you about Jewels - it seems there are enough free buttons (not including the ipod) to keep the standard behaviour for menu and quit. 13.58.15 # exactly 13.58.52 # Paul_The_Nerd: In the 'Main menu' that some game plugins have, the quit button should always quit the game instead of just the menu 13.58.58 # and in the case of jewels we have to use some weird button combo for quit 13.59.51 # amiconn: So, menu once for menu, then again to leave the game? 13.59.53 # My suggestion for better consistency on ipod is that Select+Menu should always act as quit, even if just Menu can also be used for quit 14.00.20 # I agree with that. 14.00.21 # Sounds sensible. 14.00.49 # the cube is confusing, select+menu changes some parameter but just menu quits it 14.00.59 # not that the cube is the most important plugin 14.01.08 # I just realized something... The front page shows actual names, but the since 2.5 page shows things like "Lostlogic" and "Kkurbjun" 14.01.24 # I'm back. If I reboot, select digital, start a recording the Iriver hangs. I I do a mic recording after rebooting and start a digital recording, it does not hang... 14.01.24 # Importance doesn't matter here. If cube is inconsistent with the rest, it needs to be fixed 14.01.32 # yeah, just like the commit mails and front page as well 14.01.45 # .. however the recorded file is filled with silence only. 14.01.52 # * Paul_The_Nerd was confused when he started scanning for "Brandon" 14.01.53 # (and the parameter setting in cube is a bit odd anyway. It could use a similar scheme as bounce) 14.01.53 # amiconn: When pcm is stopped, the delay is lowever long it takes the voice codec to decode ~1s of audio, or the whole clip, whichever is less. 14.02.10 # Although that means we need to make sure that no plugin uses the SELECT press event - only the release events. 14.02.16 # amiconn: I did not touch talk.c, and preemption _when pcm is stopped_ can fairly easily be improved, but much harder when pcm is playing. 14.02.23 # g'morning. 14.02.43 # lostlogic: yo, still no idea why the skipping tracks backwards across dirs hang? 14.02.55 # mborus_2nd: i have no idea, i can't make it hang that easily here 14.03.08 # The preemption doesn't seem to work at all sometimes. 14.03.08 # lostlogic: Did you remove "CODEC_DSP_ENABLE" at some point recently? (I just started looking for it.) 14.03.18 # he did 14.03.20 # which was good 14.03.33 # preglow: It's still in the SID patch. Should it be safe to just comment out that line? 14.03.41 # remove it 14.03.44 # it's not legal anymore 14.04.05 # Not only doesn't it preempt the current clip, but it also keeps clips in the queue which should have been dropped completely... 14.04.05 # codecs should not be able to decide if they want dsp or not anyway 14.04.07 # preglow: glad you agree :) 14.04.16 # ...which is strange, since it works on archos... 14.04.18 # preglow: no, haven't looked at it yet, was working only on that voice rework 14.04.25 # If the patch I used still current? (http://www.pvv.org/~thomj/rockbox/spdif_recording.patch) 14.04.35 # Is... (not if) 14.04.38 # should be, i haven't done anything since last night 14.04.40 # amiconn: that's because the clips are already decodec to the pcm buffer then 14.05.21 # lostlogic: Then something is wrong with how voice clips are decoded. They need to be kept in the voice queue as long as possible, in order to keep the latency down 14.05.51 # amiconn: it's too hard to calculate the insertion point and stuff, IMO 14.06.16 # Iirc you told me that the pcm buffer is no longer than 1/4 sec for voice 14.06.48 # amiconn: when playback is stopped, voice uses the 'normal' pcm buffer 14.07.06 # for mixing, it is inserted starting about 1/4 second back from the music playing point 14.07.08 # Hmm, why is that? 14.07.25 # amiconn: they are two totally different beasts, playing voice on its own vs. mixing 14.08.02 # Hmm, but the normal pcm buffer can be adjusted in length? 14.08.13 # but either way, up-to the whole pcm buffer may be decoded ahead, and I haven't come up with a way to reduce this without introducing a lot of skippiness when mixing 14.08.47 Quit mirak (Read error: 110 (Connection timed out)) 14.08.52 # ideally you should have separate decode buffer for voice that you just flush whenever what's in it is invalidated 14.08.56 # for non-mix voice, it would be almost trivial to flush the buffer for a preempt. 14.09.14 # mixing should happen as late as possible 14.09.18 # preglow: we could do that, but there's still the problem of which thread and how far back to mix. 14.09.47 # the only 'person' who is guaranteed to know when more data needs mxiing is the DMA, and we sure as hella ren't mixing on the DMA interrupt. 14.10.16 # Hmm, iiuc there could be a secondary pcm buffer for voice. This one is where decoded voice is buffered, and it would offer a flush function 14.10.38 # yes, we could do that. 14.10.49 # I gotta work on other playback bugs for a while though. 14.10.50 # Then we could mix real close to the playback point 14.11.06 # yes. 14.11.10 # The voice pcm buffer could be mono of course, saving ram 14.11.28 # no worries 14.11.32 # hmm, interesting, that would involve DSP and voice codec adjustments. 14.11.34 # we'll never hit the date anyway 14.11.43 # lol 14.12.03 # * amiconn needs to work on remote recognition and remote lcd init 14.12.04 # well I need a break from voice any way, it's not a feature I use, so it was pretty brutal to work on it a lot. 14.12.12 # btw 14.12.19 # i'm still looking for bug reports on the resampler 14.12.24 # i can't make it clicky anymore 14.12.51 # preglow: I have bugs that relate to resampling (causing misscalculation of playing points) but none in the resampler itself. 14.13.07 # i'd be interested with the resampler based ones, yes 14.13.17 # i don't have time to come up with anything that sounds better 14.13.22 # so i have to go for bug fixing/optimising now 14.14.05 # preglow: seems like seeking and a/b repeat with 48khz audio causes the playback point reported not to match at all the real playing point. 14.14.12 # according to forums 14.14.15 Quit matsl (Read error: 110 (Connection timed out)) 14.14.21 # mp3? 14.14.32 # believe so, lemme try and find it. 14.14.59 # I can second that 48kHz problem. Have had that all week 14.15.13 # logbot-: 14.15.15 # mborus_2nd: did it only start this week? 14.15.16 # oops 14.15.25 # mborus_2nd: and is it only mp3 or any 48khz stream? 14.15.45 # I'm testing this with 48kHz mp2 streams 14.16.12 # these are radio shows, so they normally run three hours 14.16.17 # lostlogic: Hehe, similar here. I don't use the remote for real, but I am working on improving remote detection... 14.16.26 Join ronbo [0] (i=shaggy_s@ppp088.hak.centurytel.net) 14.17.14 # I haven't tested AB repeat on those lately, so I can't say when this started. But I noticed two bugs over this week 14.17.33 # * amiconn wonders whether it would be better to add yet another thread, or make the remote_scroll thread a bit more complex to save an extra thread 14.17.36 # i never record, and am working on spdif recording 14.17.40 # heh 14.17.56 Part ronbo 14.18.05 # the first one was, that bookmarks towards the end of the file didn't play. This now works again 14.18.43 # The second problem is AB repeat. When this failes, afterwards forwarding or rewinding can freeze the Iriver. 14.19.04 # lostlogic: Btw, speaking about playback. Now that you fixed the bug that a resume position was never cleared at the end of a playlist, there's a new bug 14.19.27 # mborus_2nd: so, you always get silent recordings with spdif? 14.19.29 # Now the resume position gets sometimes cleared prematurely 14.19.56 # I.e. if you stop a playlist, you can't be sure that it's possible to resume it later 14.20.23 # preglow, yes - either crash=0 bytes or silent. 14.20.41 # i can make it record just fine here 14.20.44 # bargh 14.20.54 # Happened at least 3 times on my mini2g 14.21.29 # amiconn: :( ok 14.21.31 Quit Rob2222_ () 14.21.32 # Everytime *towards* the end of the playlist 14.21.46 # (like in the 2nd-last or 3rd-last track) 14.22.21 # Maybe it happens if the whole rest of the playlist is already buffered? 14.22.25 # amiconn: ah, I think that makes sense -- my if() might have been on playlist end. 14.22.28 # yeah 14.22.41 # I prefer bugs that at least make sense :) 14.23.09 # ah, the joys of releases, we all get to work on not our favorite things but things that will make the 'product' 'better' :-\ 14.23.25 # haha 14.23.45 # think of the fame! 14.23.53 # ::blink blink:: riiiight' 14.23.55 # and the money and bitchazzzz 14.24.49 # pondlife: wait... something changed with crossfade!? I mean I changed beep... but I don't think I changed crossfade :-\ 14.31.13 Join bluebrother [0] (i=BmOpzbhQ@nat-wh-1.rz.uni-karlsruhe.de) 14.32.15 Join MarcoPolo [0] (n=MarcoPol@che78-2-82-227-240-106.fbx.proxad.net) 14.34.27 # Y'know, putting builds on your player that should bump the config block but don't can have some funny side effects. 14.34.43 # mmhmm 14.34.45 # For example, the iPod Nano doesn't have a screen flip, but apparently the option got enabled because all controls were reversed. 14.36.32 # Paul_The_Nerd: Someone needs to implement screen flip for the ipod colour lcds 14.36.59 # It should be perfectly possible since it is already implemented for H300, and the lcd controller is the same 14.39.21 Join Lear [0] (n=chatzill@h194n1c1o285.bredband.skanova.com) 14.41.15 # ouch. just turned on my ipod and had it at vol. -11 from using it in car stereo 14.43.53 # I usually can't take over about -20 or so unless it's one of a few specific songs. 14.46.21 # lostlogic: before I leave, I just tested the 48kHz AB problem again with the build I made to try digital recording. Here the AB repeat fails as soon as I set the "B" point. Instead of jumping to "A", the display shows the time for "A", but audio from a point in the file even after "B" is played. 14.49.00 Join twisted` [0] (n=twisted@a213-84-144-245.adsl.xs4all.nl) 14.49.11 # sharpe: *poke* 14.49.34 # mborus_2nd: was there a long (> 30 meg) distance between the two points? 14.52.11 # No. - aproximately 10 minutes of 192k audio. Maybe there's a problem in how I set the points: I set point A, then I forward a few minutes and then set point B. 14.56.57 # Hmm, I'll try this now without forwarding when setting the points. 14.57.03 Nick lee-qid||0xf00d is now known as lee-qid (n=liqid@p5496569D.dip.t-dialin.net) 14.59.27 Join ashridah [0] (i=ashridah@220-253-121-23.VIC.netspace.net.au) 15.00.31 # While I wait for point B - is there a reason why A-B points get lost when I turn off the Iriver? Currently I have to re-set every time I start the Iriver... 15.02.03 # lostlogic: Well, crossfade with track skipping seems fixed now. 15.02.39 # lostlogic: But navigating to another track (maybe the next track) is broken, on my H300. 15.03.35 # lostlogic: Am also getting fairly regular crashes that are probably resume related, but haven't come up with a simple recipe yet. 15.04.02 # * pondlife is using voice+crossfade+beep and really trying to Break Things 15.04.09 # Point B reached and set without forwarding to it. It was only 6 minutes. The details: File length (3:09:57) Point A 2:45:00 Point B 2:51:11. The jump back to A worked. Now let's see what happens, when B is reached. 15.06.14 # do other get superslow transfer rates with their ipod nano after installing rockbox? 15.06.37 # novimon: Try booting into the Retail OS if you're planning on transferring a lot of files. 15.06.46 # oki 15.07.00 # is there some know problem? 15.07.17 # novimon: I have decent transfer rates, but I seem to be the only one without a problem 15.07.41 # Galois: I find your 2 second transfer somewhat doubtful, personally 15.08.05 # well I can't prove it to you short of flying you to washington 15.08.32 Quit Lear ("Chatzilla 0.9.72 [Firefox 1.5.0.2/2006030804]") 15.08.34 # * Paul_The_Nerd shrugs 15.08.50 # Point B reached. Jump back to A worked again. Hmm. Could the forwarding in between setting point have caused the problem? I'll reboot my Iriver and try again. 15.18.08 # Galois, thanks for the tip, transferring is now super fast :) 15.18.20 # More test results: There is a forwarding problem. I have a 15 second minimum forwarding step defined (so I can move quickly within radio shows) and in trying to navigate to the A 2:45:00 point I managed to misplace the audio also. So maybe AB is working OK 15.18.24 # hey it wasn't my tip 15.18.39 Quit markun (Remote closed the connection) 15.18.47 # sorry, Paul_The_Nerd :) 15.19.08 Quit HCl (Remote closed the connection) 15.19.38 # but, I'm telling you, I get the same transfer rates in the hardware disk mode and the retail firmware, whether you believe it or not 15.19.55 Join HCl [0] (i=hcl@titania.student.ipv6.utwente.nl) 15.20.00 Join markun [0] (n=markun@bastards.student.utwente.nl) 15.20.13 # is "hardware disk mode" something special that you have to enable 15.20.28 # you get it just by plugging in the usb cable while rockbox is running 15.20.42 # for me it was ten times slower :) 15.21.21 # can you music by folders in itunes? 15.21.25 # *transfer 15.21.37 # I have no idea. I don't use itunes. 15.21.45 Join Moos [0] (i=DrMoos@m132.net81-66-158.noos.fr) 15.21.46 # its hideous :) 15.21.56 # itunes is an abomination 15.23.50 Join obo [0] (n=obo@82-46-82-224.cable.ubr02.trow.blueyonder.co.uk) 15.24.08 Quit mborus_2nd ("CGI:IRC (EOF)") 15.25.23 Quit JdGordon ("Miranda IM! Smaller, Faster, Easier. http://miranda-im.org") 15.25.26 *** Saving seen data "./dancer.seen" 15.27.04 # rrrrrrockbox 15.27.34 # lllllllllokl 15.28.24 # anyone have the 5g countour showcase? 15.28.46 Quit ashridah ("Leaving") 15.41.42 Quit pondlife ("Dinner time") 15.41.53 Part Paul_The_Nerd 15.43.47 Quit SereRokR ("XChat Aqua") 15.45.56 Join SereR0KR [0] (n=Fletcher@Fcf8a.f.strato-dslnet.de) 15.47.27 Quit MarcoPolo (Read error: 104 (Connection reset by peer)) 15.50.30 Quit twisted` (Remote closed the connection) 15.54.17 Join lodesi [0] (n=moi@d01v-89-83-172-11.d4.club-internet.fr) 15.57.16 # arghq23¤"#! 15.57.32 Join twisted` [0] (n=twisted@a213-84-144-245.adsl.xs4all.nl) 16.00.44 # amiconn: i can't build gcc 3.4.6 for coldfire even with the patch 16.01.16 # stupid old -mc68020 option unrecognized thing 16.01.20 # i can't remember how to fix it :/ 16.04.01 Join whatboutbob [0] (n=cbd6595d@labb.contactor.se) 16.07.41 Quit lodesi_ (Read error: 110 (Connection timed out)) 16.12.44 Join Rob2222 [0] (n=Miranda@ACAD6EF2.ipt.aol.com) 16.14.32 # preglow: having fun with spdif? :-) 16.17.14 Quit twisted` (Remote closed the connection) 16.18.23 # recording with optical in works? 16.18.26 # :eek: 16.19.45 # hansmaulwurf: not yet. 16.23.11 # ...but preglow's giving it a shot.. :-) 16.23.47 # nice 16.24.06 # *fingers and toes crossed* 16.25.25 Join stoffel [0] (n=sfr@p50815678.dip.t-dialin.net) 16.25.42 # This evening I managed to record the first song of one of the best concerts I've been to for aaaages, before the iriver crapped out on me with a hdd full message when there was 18gig free. 16.26.10 # lol? 16.26.14 # To add salt to the wound the recording of the one song sounds amazing. 16.26.22 # *sigh* 16.26.37 # at the moment my 20GB disk have only 512mb free 16.26.38 # sucks :( 16.26.53 # need a bigger disk or a new "rockbox ready" player 16.26.56 # ;) 16.28.01 # i'd made a point of formatting the drive today so i'd have plenty of room free. Got home and read about the issue w/ the fake full hdd msg. doh! 16.28.25 # whatboutbob: well, the problem is that spdif recording does work 16.28.26 # here 16.28.40 Quit stoffel (Client Quit) 16.28.42 # preglow: what sort of rig are you recording with? 16.29.05 # testing with standard spdif from the cd player (44.1khz) and pc (48kgz) 16.29.22 # both 16bit? 16.29.44 Quit dj-fu (Read error: 110 (Connection timed out)) 16.29.49 Join twisted` [0] (n=twisted@a213-84-144-245.adsl.xs4all.nl) 16.29.53 # whoa, my iPod fixed itself 16.30.40 # twisted: Did it give itself a pat on the back when it was done? 16.30.53 # whatboutbob: yes 16.30.59 # whatboutbob: I did that for him 16.30.59 # but i don't think the bit rate should matter 16.31.01 # it got no arms :( 16.31.30 # ...and it fixed itself?! Its a miracle! 16.31.39 # but no, there's something else wrong here too 16.31.43 # but i can record just fine 16.31.46 # until it hangs, heh 16.32.10 # preglow: My preamp outputs a funny sample-rate... 16.32.55 # whatboutbob: LOL, no I formatted it's partition to ext2 to backup my files... but I copied it back... so I formatted it back to fat32 and it reinstated itself... 16.33.33 # It says it outputs 20bits...but then it does some weird-arse sampling down...not sure if that would cause the issues i'm seeing, but thought it may be worth mentioning. 16.34.50 Join blindx [0] (n=blind@c-71-234-180-125.hsd1.ct.comcast.net) 16.35.22 # having some difficulties browsing through stuff with rockbox. I'm viewing an image, how do I get back to the filelist? 16.36.55 # What player do you have? 16.38.03 # iPod color. 16.38.16 # Hold select+menu 16.38.23 # i have to reset it? 16.38.27 # No 16.38.29 # oh ok 16.38.36 # oh cool. thanks. 16.39.29 Quit powr-toc (Remote closed the connection) 16.40.18 # is there a list of commands somewhere? 16.41.01 # http://www.rockbox.org/twiki/bin/view/Main/IpodFAQ#How_to_control_Rockbox_on_the_iP 16.41.06 # blindx 16.41.12 # thanks 16.43.28 Quit jeremy (Success) 16.43.34 Join mirak [0] (n=mirak@AAubervilliers-152-1-10-99.w82-121.abo.wanadoo.fr) 16.43.46 Quit lee-qid ("Trillian (http://www.ceruleanstudios.com") 16.46.25 Join new5guser [0] (n=425d0cd3@labb.contactor.se) 16.47.58 # whatboutbob: what sample rate? 16.48.13 # the spdif debug screen should be able to tell you 16.48.29 # hi 16.52.29 Join stoffel [0] (n=sfr@p50815678.dip.t-dialin.net) 16.52.33 # preglow: s/pdif analyzer? 16.52.40 # whatboutbob: in the debug menu 16.52.43 # yea 16.53.08 # all 0's. 16.53.25 # oh...wait...sorry...wrong build. 16.53.34 # all throw yours back on now. 16.53.40 # nono 16.53.43 # all=i'll 16.53.47 # the spdig analyzer should work anyway 16.53.50 # it's been there for a long time 16.54.09 # oh...well...its giving me all 0's. 16.54.31 # iwhat about the sample rate? 16.54.33 # at the bottom 16.54.53 # clock accuracy: 0 16.55.08 # above that 16.55.33 # ok this is, really bad 16.55.37 # why? 16.55.39 # frequency: 0 (44.1kHz) 16.55.40 # I can't restore my ipod :| 16.55.51 # windows doesn't reconise it 16.55.55 # twisted`: reformat it 16.56.09 # preglow: it's already fat32 16.56.23 # yeah, but windows obviously can't see the drive 16.56.32 # sometimes before you can restore it, you need to just clean reformat it 16.56.35 # preglow: when I plug it in Windows goes like, cannot reconise... 16.56.42 # format everything or... 16.56.45 # only... that one partition 16.57.03 # just try until something works, i have no idea 16.57.10 # some people need to repartition, even 16.57.24 # hmm doesn't the first partition hold the original firmware etc? 16.57.30 # yes 16.57.58 # whatboutbob: not exactly what i'd call a weird sample rate 16.59.46 # twisted`: what you want to do is kill all the partitios (either using windows/linux or the HP reformatting tool that's linked on the ipl wiki) 17.00.02 # and then, put the ipod into disk mode, and use the apple updater to reset it to factory defaults 17.00.35 # crashd: how can I put it into disk mode? doesn't killing all partitions kill the firmware? 17.01.14 # when you're booting, hold down menu and select to reboot, then immediatly hold select+play 17.01.30 # well, it removes the retailos version you have, but the disk mode is still there in flash 17.01.36 # crashd: ya original firmware? 17.01.38 # you'd have to pretty clever to actually delete that 17.01.52 # twisted`: it doesnt matter, the apple updater will restore that 17.02.49 # crashd: hmm... ok me searchin for the setting where I can set it to diskmode 17.02.55 # dude, i just told you 17.03.01 # :01 < crashd> when you're booting, hold down menu and select to reboot, then 17.03.01 # immediatly hold select+play 17.03.08 Join jeremy [0] (i=katzj@freenode/staff/jeremy) 17.03.12 # sigh. now look what you made me do 17.03.24 # you can't fuck up your ipod 17.03.27 # rofl 17.03.28 # :preglow: *slaps forehead* i meant resolution...(tis 1am here and i got 2hrs sleep last night) 17.03.29 # it's damned close to impossible 17.03.39 # whatboutbob: i don't think resolution should matter at all 17.03.54 # twisted`: you can erase the entire bloody disk with zeroes, and you'll still be fine 17.04.09 # disk contents doesn't matter 17.04.17 # I pressed that and now I see a big Check and it says OK to disconnect 17.04.18 # hmm... 17.04.27 # have you plugged it into something, ie: usb? 17.04.30 # nope 17.04.33 # I have it in my hands 17.04.36 # it says Diskmode on top tho 17.04.37 # well, let's try that eh? they dont have wireless connectivity 17.04.49 # right, that's diskmode, so now connect it to something and try using the apple updater 17.04.52 # preglow: can you think of anything else you want me to try before i hit the hay? 17.05.14 # crashd: ah ok, let's kick my lil brother off his windows pc again 17.05.15 # nope 17.05.17 # he'll hate me 17.09.44 Join actionshrimp [0] (i=nn@dhcp-163-1-214-83.seh.ox.ac.uk) 17.09.57 # well, g'night then folks. 17.10.38 # good luck preglow. :-) i'll be checking the logs if you need anything. 17.11.29 Part whatboutbob 17.17.05 # lostlogic? 17.21.05 # crashd: hmm, tried another usb port and it suddenly reconised it... it's now formatting I think... it's taking _long_ 17.24.02 # preglow: If you mean the multilibs problem (but that fails for 68040), see http://www.rockbox.org/twiki/bin/view/Main/CrossCompiler#Coldfire_iAudio_iRiver 17.24.37 # Note that I didn't try the m68k build patch for amd64 yet 17.25.27 *** Saving seen data "./dancer.seen" 17.29.02 # amiconn: this is just my m68k-elf-as not recognizing the option -mc68020 17.29.10 # it's the newest version and all, so don't ask why 17.29.35 # That's strange 17.29.56 # You mention it being an old problem, but I actually never heard it before... 17.30.10 # i might be confusing it with the multilib thing 17.30.35 Join solexx_ [0] (n=jrschulz@d085171.adsl.hansenet.de) 17.31.09 # * amiconn should try to build an m68k-elf-gcc ... 17.32.30 Join RotAtoR [0] (n=e@rockbox/developer/rotator) 17.34.16 # amiconn: please do 17.34.33 # the patch is just commenting out the trigger if line, so... 17.34.40 # I know. 17.34.57 # I think about adding some more code there, that outputs the exact values 17.39.26 # Hi, I'm wondering, does Rockbox support ID3v2.4-tags (encoded in UTF-8 charset)? 17.41.04 Join petur [0] (n=petur@rockbox/developer/petur) 17.41.14 # preglow: Build started... 17.41.34 # wtf...? 17.41.43 # file `which latex` 17.41.43 # /usr/bin/latex: symbolic link to `pdfetex' 17.41.52 # ssh is sometimes useful, 'cause there's no rdp for linux... 17.42.13 # remote x over ssh 17.42.17 # get with it amiconn ;) 17.42.27 # crashd: Ahahahaha 17.42.38 # and so ends my comedy japes for the day 17.42.42 # x over ssh isn't even remotely comparable with rdp 17.42.47 # no, it isnt 17.42.58 # and linux's desktop model and windows arent remotely comparable either 17.42.59 # :D 17.43.01 # X over ssh is sluggish even over lan 17.43.27 # rdp? 17.43.40 # Maybe NX. I still want to try it, but I need packages for debian-amd64... 17.43.59 # KDE has something rdp-like. 17.44.15 # what is rdp?? 17.44.27 # remote desktop protocol iirc. 17.44.32 # remote desktop protocall 17.44.34 # Microsoft remote desktop protocol 17.44.34 # what about vnc? 17.44.42 # microsoft's 'vnc'-a-like stolen from citrix 17.44.49 # well, stolen, they paid for it, but still 17.44.50 # rdp is significantly faster than vnc 17.45.15 # doesn't x support functionality like that out of the box anyway? 17.45.52 # you mean xdmcp? 17.46.35 # yes, if the login manager is configured to allow it. 17.47.01 # I used it on LAN connections and it was like sitting in front of the remote machine. 17.47.06 # * amiconn now has a shiny new m68k-elf-gcc for amd64 :-) 17.47.52 # o.O 17.48.17 Join piroko [0] (n=jeremy@NW-ESR1-72-49-207-116.fuse.net) 17.48.52 # i see there was an earlier discussion about exiting plugins, specifically jewels 17.48.58 # so is it the general consensus that there should be a standard exit button to unconditionally exit the plugin? 17.49.09 # If possible, yes 17.49.27 # * BHSPitLappy thinks that there should be a global failsafe in there, like a "ctrl+alt+delete" if you will 17.49.28 # ok, it's just a quck change then 17.49.41 # Plugins which have some kind of main menu should drop to that main menu with the first exit button press 17.49.45 # (imho) 17.49.58 # sure, sounds good 17.50.12 # then i'll change it back to the two button presses to exit 17.50.17 Quit solexx (Read error: 110 (Connection timed out)) 17.52.05 # amiconn: you didn't get the problem? 17.52.09 # Ok, this gcc builds all coldfire targets fine 17.52.30 # preglow: No problems, apart from a ton of warnings, but that seems to be normal when building gcc 17.53.05 # just target=m68k-elf ? 17.53.06 # nothing more? 17.54.25 # amiconn: are you using 4.0.3? 17.55.00 # kapheine: Native gcc is 4.0.3, and I was building our recommended m68k-elf-gcc (3.4.6) 17.55.28 # Ahh okay, and you made the change to combine.c I assume? 17.55.36 # yes 17.55.43 # I just applied your patch 17.56.03 Quit mirak (Read error: 104 (Connection reset by peer)) 17.56.20 # Okay.. if I get a chance I'm going to look at the function that was causing the assertion to fail and see if I can whip up some code to trigger it.. I want to see if I can break it or not :P 17.56.27 # preglow: configure --target=m68k-elf --prefix=/opt/m68k for building binutils, 17.56.49 # and configure --target=m68k-elf --prefix=/opt/m68k --enable-laguages=c for building gcc 17.57.27 # Of course with adding /opt/m68k/bin to the path inbetween 17.57.46 # exactly what i did 17.57.47 Join mirak [0] (n=mirak@AAubervilliers-152-1-10-99.w82-121.abo.wanadoo.fr) 17.58.47 # This is debian testing (with some remaining packages from unstable), pretty current (updated a few days ago) 17.59.10 # still running ubuntu breezy 17.59.25 # Ubuntu didn't work for me at all 17.59.34 # Hung while booting the installer... 17.59.43 # amiconn: any special hardware? 18.00.19 # The culprit is that ubuntu still uses kernel 2.6.12, and that doesn't cope with certain bios'es throwing apic errors 18.00.54 # Had the same problem with debian testing back then; trying unstable (kernel 2.6.15) fixed the problem 18.01.18 # dmesg shows many lines like: 18.01.20 # APIC error on CPU0: 40(40) 18.01.49 # no problems like that here 18.01.59 # No really special hardware, it's a HP DX5150 business microtower 18.02.36 # can't remember what i used to build this box anymore 18.02.49 # i remember it's got 1 gig of ram and a athlon64 3200+, that's that :) 18.02.59 # hehe, im on a similar setup preglow 18.03.09 Part ep0ch ("Kopete 0.11.1 : http://kopete.kde.org") 18.03.10 # tasty athlon64s 18.03.17 # tasty indeed 18.03.41 # Athlon64 3800+, ATI XS200 chipset (integrated graphics), 1GB RAM, 2x 160GB SATA HDs, Broadcom GBit LAN 18.03.42 # My processor tasks like salt water taffy 18.03.45 # tastes 18.04.24 # I wish I understood the reasoning behind AMD's processor naming 18.04.33 # (the numeric aspect) 18.04.41 # the reason was intel playing mhz whores a while ago 18.04.47 # amiconn: just a question, does the installer recognizes the NIC? 18.04.51 # yes 18.04.59 # so amd felt they needed a figure to make the different processor revs comparable from the names alone 18.05.01 Join `3nergy [0] (n=3nergy@techgaming.net) 18.05.08 # I've installed using the businesscard installer 18.05.14 # amiconn: tg3 driver? do you know that? 18.05.20 # yes, tg3 18.05.26 # businesscard installer? 18.05.29 # whats that 18.05.56 # It's the mini installer (~40MB) that fits on a businesscard-sized CD-R 18.06.16 # The standard netinstaller is ~120MB, and already contains some basic packages 18.06.28 # så the mini installers is almost a pure netinstall? 18.06.32 # amiconn: which distro? or is it shipped with the hardware 18.06.43 # debian testing 18.06.59 # HP ships a 32bit distro which I didn't want 18.07.05 # (SuSE 9.3) 18.07.20 # amiconn: well sarge netinst. does not recognize the NIC 18.07.34 Quit _Lucretia_ ("Leaving") 18.07.45 # Sarge is stable? 18.08.00 # amiconn: yes 18.08.01 # No wonder it doesn't recognise anything fairly recent 18.08.33 # http://www.debian.org/devel/debian-installer/index.en.html 18.08.46 # businesscard CD image (20-50 MB) -> AMD64 18.09.03 # well we want stable 18.09.14 # why? 18.09.26 # cuz my boss says so ;P 18.09.37 # ah, it's the boss :/ 18.10.09 # ugh, stable :/ 18.10.13 # My experience is that 'testing' is really stable, and 'stable' is just old, and doesn't support anything recent 18.10.19 # agreed 18.10.47 # The only annoyance is the occasional dependency breakage 18.11.00 # * amiconn still cannot install grip :( 18.11.38 # amiconn: we need red hat 9.0 with a 2.4 kernel, which does not recognize the disk controller and the nic either 18.11.49 # ugh, 2.4 18.12.49 # indeed 18.18.09 Quit Strath (Read error: 104 (Connection reset by peer)) 18.18.17 Join Strath [0] (n=mike@dpc67143207026.direcpc.com) 18.23.41 Quit SereR0KR ("XChat Aqua") 18.25.20 Join linuxstb_ [0] (n=linuxstb@i-83-67-212-170.freedom2surf.net) 18.25.28 # Is there anyone who has a H1x0 with a H300 remote? (both LCD and non-LCD wanted) 18.25.53 Quit linuxstb (Read error: 104 (Connection reset by peer)) 18.26.25 # petur: I've checked the disassembly a bit. Didn't find a reset so far, but I found that the 1362 is connected to GPIO5 with one of its interrupt lines 18.26.44 # Retailos sets up an isr as part of the init 18.26.52 # aha 18.27.20 # you obviously know assembly better than I do ;) 18.27.39 # I wonder what's going wrong with your driver. It looks like you're doing almost the same as retailos 18.27.57 # What I didn't find yet is the CS3 setup. 18.28.07 # Searching in ida is dead slow 18.28.11 # in the disassembly? 18.28.15 # yes 18.28.44 # I found it some time ago and took over the register values so that shouldn't be the problem 18.29.39 # Ah, it's at the very beginning of the rom... 18.29.55 # but yeah, searching is very slow 18.29.55 # The register values are generous 18.30.23 # CSMR3 = 0x1 slould be enough (smallest possible window, 64K) 18.30.30 # yups 18.30.42 # We're only using 4 words after all... 18.30.42 # I just took everything over to be sure 18.31.00 # The waitstates are also generous 18.31.06 Join _Lucretia_ [0] (n=munkee@dynamic-62-56-22-232.park-s46b.dslaccess.co.uk) 18.31.17 # once it works we can tweak 18.31.24 # yes of course 18.31.30 # first make it work, than optimize :) 18.31.44 # then even 18.31.46 # petur: what you working on? 18.31.58 # nothing right now ;) 18.32.01 # : ) 18.32.16 # isp1362 (usbotg) for h300 18.32.57 Join hardeep [0] (i=hardeeps@SDF.LONESTAR.ORG) 18.32.58 # am processing a concert i recorded yesterday - I can't live without agc anymore 18.33.15 Join filoktetes [0] (n=filoktet@g-001.osl255.netcom.no) 18.34.25 # petur: The ISR setup routine is located at 31010B50 18.34.26 # i start recording with +/- safe levels, put everything in a small bag and drop it somewhere. the agc reduces gain in case my levels weren't so safe 18.34.54 # The debug message texts are sometimes helpful 18.35.18 # yeah 18.35.29 # some even have typos in them :) 18.35.52 # yup, saw that 18.36.11 Join SereR0KR [0] (n=Fletcher@Fcf8a.f.strato-dslnet.de) 18.37.11 Quit goffa (Read error: 110 (Connection timed out)) 18.37.41 # regarding the 21 char limit for stored filenames: shouldn't we allow the user to edit only the filename (no path, no extension) - that way it's easier to pass a nice limit to the keyboard routine. 18.38.02 # probably 18.38.05 # disadvantage: can't save to another folder 18.38.19 # Hmm, right 18.38.29 # right now it's impossible to enforce the 21 char limit :( 18.47.04 # saving to another folder causes issues anyway: the name gets stored but not loaded because we only look for it in the default location 18.47.34 # Yes, but that's actually a featire 18.47.49 # it will confuse the average user when he makes an error and saves the file somewhere else 18.48.09 # For other similar files (.fnt, .wps), if they're stored in their respective directory, the name gets stored in the config, so they're permanent 18.49.04 # Hmm, but then you can't save .fnt ans wps files from within rockbox 18.49.14 # So .fmr files are a little different 18.49.27 # I think fmr files are theeonly ones where it matters 18.49.33 Join OnkelJonas [0] (n=kartoffe@ip30.rev112.brygge.net) 18.49.43 # .cfg files aren't stored in the config 18.49.46 Quit lodesi (Read error: 110 (Connection timed out)) 18.49.57 # petur: No, as they set the config 18.50.34 Join OnkelJonas2 [0] (i=kartoffe@ip230.rev112.brygge.net) 18.50.39 Join lodesi [0] (n=moi@d01v-89-83-172-11.d4.club-internet.fr) 18.50.40 # what I meant was: it doesn't really matter where you save them, nothing is depending on a certain location 18.50.55 # yup 18.51.03 # if the fmr file is saved elsewhere, it won't be loaded automatically next time 18.51.15 # I prefer my partial .cfg files in the root 18.51.39 # Bg3r: ?? 18.53.06 # I have no problem with the default location, but I rather have the default location a tree next to RB - not under .rockbox - so whiping the tree doesn't wipe your settings,... (granted,you do that only once, curse and remember for ever) 18.53.54 # I never wipe .rockbox completely 18.54.04 # I did once :/ 18.54.08 Join Massa [0] (n=Massa@85.220.132.199) 18.54.15 # From time to time I go thorugh the dirs and remove clutter 18.57.20 Part OnkelJonas2 18.58.09 # right, I still don't know how to solve this. checking the file length after the user entered it and send him back to the keyboard if it's too long? 18.59.06 Quit OnkelJonas (Read error: 60 (Operation timed out)) 19.00.11 # Hi everybody! 19.00.21 # Hi Dr. Massa! 19.00.55 # Is somebody here with low level knowledge about iRiver H300, especially about reading pcf50606 addresses? 19.01.45 # crashd: Hi, but why are you calling me a doctor? 19.02.01 # hehe, the way you said it reminded me of Dr. Nick in the simpsons 19.02.47 # Huh? How are you able to read how I say things ;) ? 19.03.28 # Massa: it was just the 'everybody!' part 19.04.28 # Sorry, I don't know much about the Simpsons - especially not in English :D 19.05.17 # everybody in the US is so obsessed with it that they'd elect homer simpson as president if they could 19.05.24 # g.w.bush is the closest they could get though 19.05.38 # hahaha 19.05.41 # ROTFL :D :D :D 19.12.10 Quit twisted` (Remote closed the connection) 19.16.00 Join Shadowarrior13 [0] (i=dsf@ip68-3-160-223.ph.ph.cox.net) 19.25.30 *** Saving seen data "./dancer.seen" 19.29.21 Join linuxstb__ [0] (n=linuxstb@i-83-67-212-170.freedom2surf.net) 19.44.17 Quit linuxstb_ (Read error: 110 (Connection timed out)) 19.51.06 Quit lodesi (Read error: 110 (Connection timed out)) 19.52.57 Quit new5guser ("CGI:IRC (Ping timeout)") 19.54.59 Join [TCK] [0] (n=tckocr@81-178-249-38.dsl.pipex.com) 19.55.07 Join lodesi [0] (n=moi@d02m-213-44-188-76.d4.club-internet.fr) 19.59.41 Quit vmx (Read error: 110 (Connection timed out)) 19.59.47 Join vmx_ [0] (i=oma@p549B6D9C.dip.t-dialin.net) 20.02.18 Join Tobu [0] (n=g2p@nea78-1-82-242-101-49.fbx.proxad.net) 20.03.34 Quit mirak (Read error: 104 (Connection reset by peer)) 20.06.16 Join DrMoos [0] (i=DrMoos@m132.net81-66-158.noos.fr) 20.08.02 Quit Moos (Read error: 104 (Connection reset by peer)) 20.08.23 Join bagawk_ [0] (n=lee@65-100-8-67.eugn.qwest.net) 20.10.02 Nick DrMoos is now known as Moos (i=DrMoos@m132.net81-66-158.noos.fr) 20.12.44 Join Bagder_ [0] (n=daniel@1-1-5-26a.hud.sth.bostream.se) 20.13.43 Join Lear [0] (n=chatzill@h194n1c1o285.bredband.skanova.com) 20.14.03 Join bagawk__ [0] (n=lee@65-100-8-67.eugn.qwest.net) 20.15.05 Quit Bagder (Read error: 110 (Connection timed out)) 20.15.18 # ehh?? 20.15.21 Quit bagawk (Nick collision from services.) 20.15.26 # suddenly the label on my h120 disk has vanished 20.15.31 Nick bagawk__ is now known as bagawk (n=lee@65-100-8-67.eugn.qwest.net) 20.15.34 Quit piroko ("telinit 0") 20.16.41 # any bugs with deleting in rockbox? it's a strange coincidence that i just deleted my recordings/ dir, then this happens 20.17.19 Join mirak [0] (n=mirak@AAubervilliers-152-1-10-99.w82-121.abo.wanadoo.fr) 20.19.47 # preglow: This happened to me also, I'll see if there's a bug 20.19.57 Quit [TCK] (Read error: 110 (Connection timed out)) 20.22.24 Quit lodesi (Read error: 110 (Connection timed out)) 20.24.51 Join lodesi [0] (n=moi@d04m-213-44-55-71.d4.club-internet.fr) 20.26.35 # ugh 20.26.37 # not only that 20.26.41 # the directory wasn't correctly deleted 20.26.54 Quit bagawk_ (Read error: 110 (Connection timed out)) 20.27.20 # Here is the bug I just added, but I don't have many useful details: http://www.rockbox.org/tracker/task/5217 20.45.52 # awrghghg! 20.46.03 Join Massa_ [0] (n=Massa@85.220.132.199) 20.49.21 Join macdonalder [0] (n=macdonal@CPE00045af2dd15-CM0011ae92481c.cpe.net.cable.rogers.com) 20.53.19 Quit filoktetes ("Leaving") 20.53.47 # bbl 20.53.49 # * preglow summons coldfire audio expert 20.53.49 Part amiconn 20.54.22 # preglow, it seems no ghost is coming :D 20.57.00 Quit Inc (Remote closed the connection) 20.59.21 Join tvelocity [0] (n=tony@ppp123-179.adsl.forthnet.gr) 21.01.53 # * petur certainly isn't a coldfire audio expert 21.03.45 # * Massa_ search for an expert in USB charging ;) 21.03.55 # petur: it seems that just writing to DATAINCONTROL sometimes hangs audio 21.04.30 # i don't know how either, recording peak meter just stops, and the unit just stops responding, even though backlight still turns on at keypresses and so on 21.05.29 # no clue, got to go but i'll be back in 30 mins or so 21.05.44 # * lostlogic rewrites about 40% of crossfade 21.05.55 # it compiles, but I don't feel like testing it yet :-D 21.06.07 # sweet lord! antonius hellman just rewrote that bloody imdct36 mess of mine 21.06.37 Join damaki__ [0] (n=Chocolat@ALille-153-1-14-65.w83-198.abo.wanadoo.fr) 21.08.58 Join goffa [0] (n=goffa@216.220.23.105) 21.10.34 Quit _Lucretia_ (Connection timed out) 21.11.10 Quit linuxstb__ (Read error: 104 (Connection reset by peer)) 21.11.16 Join linuxstb__ [0] (n=linuxstb@i-83-67-212-170.freedom2surf.net) 21.11.55 Join _Lucretia_ [0] (n=munkee@dynamic-62-56-41-138.park-s46b.dslaccess.co.uk) 21.12.10 # does anybody know, if some target currently enables USB charging when connected (USB disk mode)? 21.12.10 Quit _Lucretia_ (Connection reset by peer) 21.12.41 Join _Lucretia_ [0] (n=munkee@dynamic-62-56-41-138.park-s46b.dslaccess.co.uk) 21.15.52 Join lodesi_ [0] (n=moi@d04m-213-44-55-71.d4.club-internet.fr) 21.17.00 Quit lodesi (Read error: 110 (Connection timed out)) 21.17.18 # Massa, the FM recorder.. 21.17.24 # and v2.. 21.18.33 # midkay: do they automatically and always charge when connected with USB? Or is there a specific register/memory address which has to be set for it? 21.19.18 # midkay: and what happens when these devices will be connected to an USB hub without power? 21.21.51 # Massa, i think the charging is hardware. i don't know too much about it.. 21.22.04 Quit damaki_ (Read error: 110 (Connection timed out)) 21.23.23 Quit macdonalder ("bye bye ;D") 21.23.23 Quit ProgramZeta (Read error: 104 (Connection reset by peer)) 21.23.35 Join macdonalder [0] (n=macdonal@CPE00045af2dd15-CM0011ae92481c.cpe.net.cable.rogers.com) 21.23.36 Join ProgramZeta [0] (n=zetachan@ip68-101-175-19.sd.sd.cox.net) 21.25.31 *** Saving seen data "./dancer.seen" 21.28.03 # midkay: Hmm - I currently try to create an option for enabling and disabling USB charging - currently only for the iRiver H300; I don't know for which other target it is also possible... 21.28.18 # Massa, why? 21.28.25 Quit quobl_ (Remote closed the connection) 21.28.25 Join damaki_ [0] (n=Chocolat@ALille-153-1-52-69.w86-196.abo.wanadoo.fr) 21.29.13 # there is an existing patch (made by pyro, who seems no longer be around) which always enables USB charging for the H300 21.30.34 # I had a discussion with Linus why this patch doesn't found it's way into CVS and he's the oppinion, that it may cause problem with hubs and USB devices which do not have enough power 21.30.52 # And so an option to switch it on or off should be made - voila ;) 21.36.43 # The X5 does it within the firmware, and has a setting for it too - either PC (charge) or hub (no charge) 21.37.05 # but the setting can't be changed from rb :( 21.37.39 # Yeah - someone has to find out how to enable/disable it :D 21.38.35 # I'm nearly sure the X5 does currently not charge when connected, or am I wrong? 21.39.04 # I think it does, but it may require rockbox to be off 21.39.36 Quit lodesi_ (Read error: 110 (Connection timed out)) 21.39.44 # does the X5 make USB connections in rockbox? 21.39.50 Quit Hansmaulwurf ("( www.nnscript.de :: NoNameScript 3.81 :: www.XLhost.de )") 21.40.20 Join lodesi_ [0] (n=moi@d02v-89-83-243-199.d4.club-internet.fr) 21.40.25 # Or are these handled by the original firmware? 21.42.24 # * Tobu was checking 21.42.42 # it does, but it's the original firmware who does the real work 21.43.33 # rockbox just show a status screen 21.43.46 Quit damaki__ (Read error: 110 (Connection timed out)) 21.44.38 # What do you mean? Is that a special "charging" screen? Or does it charge while normally connected (and accessible as disk device)? 21.45.12 # It's a screen with the USB logo 21.45.25 Join infamis [0] (n=4b03b59a@labb.contactor.se) 21.45.37 # It isn't charging currently, but I think I must change the setting in the original firmware 21.45.53 # miika: tagtree.c:437: error: `LANG_TAGNAVI_ALL_TRACKS' 21.46.06 # * macdonalder listens to Taking Back Sunday - Twenty-twenty surgery 21.46.39 # It wd be nice if rockbox cd refuse usb connections though, because it sometimes detects spurious ones when I'm charging :( 21.46.41 # infamis: hmm? 21.46.58 # (with both firmwares) 21.46.58 Quit Rob2222 (Read error: 104 (Connection reset by peer)) 21.46.59 # might the lang file been updated? 21.47.18 Join Rob2222 [0] (n=Miranda@ACAD893C.ipt.aol.com) 21.47.28 # infamis: make sure you have the most recent sources 21.47.34 # including updated tools/genlang 21.47.54 # Tobu: I don't know much about the X5 port - for the H300 it currently does either charge or connect as disk, not both together (charge during disk connected mode) 21.48.09 # glbaabh! 21.48.58 # has anyone at all made recording hang? 21.49.19 # Does it keep the low-level firmware too, or is the X5 a special case? 21.49.30 # Slasheri: just did a cvs update; nothing changed/added 21.49.53 # lemme see somethin 21.50.20 # Tobu: for H300 it boots either rb or the original firmware; rb does not use anything from the original firmware 21.50.41 # yeah tagtree is the only occurrence of that LANG_ def...where is it really? 21.50.49 # Tobu: and I don't think it's different for X5 :-| 21.50.51 # in that genlang? 21.51.47 # Tobu: or will you say RB does call functions from original firmware? I can't believe that... 21.53.06 Join Kyomi [0] (n=a@24-196-196-108.dhcp.hckr.nc.charter.com) 21.53.25 # infamis: try to remove the tools dir and checkout from cvs again 21.53.27 # Would any of you know what would cause a usb connection to reset in the middle of transferring a file? 21.53.46 # infamis: it should be in apps/lang/english.lang 21.53.57 # I've tried it with rockbox and original firmware 21.53.57 # I think it doesn't, finally. 21.54.33 # But both stay installed at the same time, and it's the original firmware which boots when stg is plugged 21.55.02 # Slasheri: ok, lemme see 21.56.00 # anyone present now that can test spdif? 21.57.19 # What is that? 21.57.37 # preglow, if you add an spdif input/output to my H300 I'll test it :-p 21.58.13 # I think my battery is dying 21.58.42 # It can barely keep a charge for like 2-3 hours 21.59.07 # Anyone know where I could get a new one? Preferrably one that would last longer 22.00.49 # hah 22.00.52 Join TCK [0] (n=tckocr@81-178-249-38.dsl.pipex.com) 22.00.57 # the iriver firmware doesn't handle the spdif monitoring properly either 22.01.43 # Slasheri: I removed the tools & lang directories & did a cvs update but the new files aren't getting added...what am I missing: cvs -z3 -d:pserver:anonymous@www.rockbox.org:/cvsroot/rockbox update 22.01.57 # opps... sry about the announce ^^ didn't know a particular switch was on :s 22.02.07 # while in my c:\cygwin\usr\src\rockbox-devel dir 22.04.56 # on another note search-in-files never works in explorer even though I disabled the indexing service 22.09.09 # testers, please :> 22.09.43 # ARGHH!H! 22.09.47 # another bug 22.10.12 Join akaidiota [0] (n=not@84-217-90-10.tn.glocalnet.net) 22.10.39 # hardeep: <3! 22.16.21 # Slaheri: ignore me...a veryclean fixed the 'problem' 22.16.37 # Slasheri: ^ 22.17.36 # ...but on another note....anyone know how to get debug working with the x5? undef ref to debug_init on ld rockbox.elf 22.20.43 Join webguest60 [0] (n=d4b696a1@labb.contactor.se) 22.21.30 Quit webguest60 (Client Quit) 22.22.57 Quit infamis ("slow afternoon I guess") 22.25.56 Join amiconn [0] (n=jens@rockbox/developer/amiconn) 22.30.17 # preglow: So what's the benefit of the imdct36 rewrite? 22.30.35 # I presume it's faster, but how much? and for which platforms? 22.30.51 Quit lodesi_ (Read error: 110 (Connection timed out)) 22.32.14 # amiconn: don't know anymore than what it says on the patch page 22.35.03 # amiconn: imdct36 is for coldfire, since it is a re-write of the asm code. 22.40.44 # ...and yet another +400 bytes on archos :( 22.43.04 # mmmm, infinite looping goodness 22.43.16 # how would it change archos if it's an imdct!? 22.43.25 # Anyone know what would cause the usb connection between the pc and my h320 to suddenly... reset itself while transfering files? 22.44.00 # amiconn: ehh? 22.44.14 Join ender1 [0] (i=ychat@84.52.165.220) 22.44.42 # preglow: Today's changes... most of it is probably the tagcache change 22.45.01 # Let's see if it has at least some effect... 22.45.11 # yes, changes do affect binary size, no surprise there 22.45.40 # Affect, yes. 22.45.51 # But there are 2 possible directions: up and down 22.45.58 # both will happen 22.46.13 # devs can't go around checking every single target and tweak and tweak every commit 22.46.16 # nothing would get done 22.46.48 # We pretty much need to tweak for archos 22.47.11 # * amiconn sighs 22.47.17 Quit ender` (Nick collision from services.) 22.47.23 # yes, we do 22.47.23 Nick ender1 is now known as ender` (i=ychat@84.52.165.220) 22.48.11 # That doesn't necessarily mean to drop features. It means that we should code efficiently. This will help all targets, not only archos 22.48.37 # i don't think anyone tries to code inefficiently 22.48.40 # Of course we should also look for additional methods. I hope to get -Os builds working 22.48.47 # if you see a way to do something more efficiently, fix it 22.48.59 # didn't you do a -Os related commit a while ago? 22.49.20 # Yes, but that was only a change to get it compiling with 3.4 and -Os 22.49.21 # lostlogic: here now 22.49.44 # The build failed before with 'pcrel too far' 22.50.11 # hardeep: didn't need anything, just saying that I appreciate you fixing some of the playback related bugs I've introduced :) 22.50.17 # It's a first step... I hope that there aren't too many gcc bugs to work around 22.50.42 # amiconn: i'm sure you'll see a surprise or two... 22.51.22 # lostlogic: ah, np. =) can't reproduce this resume issue that the people on the boards are reporting though 22.51.24 # Interestingly, our recommendation of gcc 3.3.x for SH1 comes from the fact that 3.3.x produces smaller binaries than 3.4.x when using -O (or -O2) 22.51.41 # But with -Os, 3.4.x is better than 3.3.x ... 22.52.13 # hardeep: yeah, saw the posts, I haven't looked at it yet, rewrote crossfade the same way I redid the voice mixing in pcmbuf.c, but apparently made a boo-boo, because it just data aborted on me. 22.52.21 # We would save 11KB (on v1 recorder) with 3.4.6 and -Os compared to 3.3.6 and -O 22.52.35 # That's 5% of the binary size... 22.52.44 # what about 3.3.6 with -Os ? 22.52.53 # ender`: [22:51:42] But with -Os, 3.4.x is better than 3.3.x ... 22.53.03 # oh 22.53.22 # Not much though, about 1KB 22.53.56 # What's also interesting is that the more compact code generated with -Os is less compressible than the code generated with -O 22.54.05 # bagh, arm only loading by longs is ... odd. 22.54.14 # hmm? 22.54.18 # you mean alignment? 22.54.38 # amiconn: what about the speed (cpu usage) difference? 22.54.44 # (using our ucl compressor), so the compressed .ajz for v1 recorder ends up a bit bigger even though the uncompressed binary is smaller 22.55.16 # ender`: Didn't test yet. Last time I tried -Os and -O2 binaries, they crashed at boot... 22.55.32 # Well, -O2 with 3.3.x worked with one small fix 22.55.38 # amiconn: but yeah, there's no reason not to use -Os, no? 22.55.53 # preglow: Currently there is one: binaries crashing... 22.55.59 # assuming that's fixed, yes 22.56.27 # Assuming I can fix that, there's no real reason against using -Os 22.56.31 # btw, did you do any more eq related cpu usage testing? 22.56.41 # preglow: I'm indexing a short pointer, so it seems to elft shift my index by 1 and then use it to load a long from the array 22.57.06 # weird 22.57.08 # preglow: No. What tests would you think should be done? 22.57.11 # arm can load both long, short and byte 22.57.25 # maybe I'm misreading it then, yeah, I am. 22.57.34 # amiconn: i haven't got anything in mind, just wondered if you had done anything 22.57.42 # amiconn: just a but surprised the eq is so slow on arm 22.58.09 # I just wanted to know how much impact the eq has, and whether it will run realtime with mp3 when maxing out the 5022 22.58.12 # just seems like emac is bunches faster than the native arm multiplier 22.58.33 # It does, and the result is furthermore that the eq consumes the equivalent of 15MHz 22.58.47 # (with all 5 bands enabled) 22.59.11 # preglow: if you have a moment, this is the problem code, line 6 is the data abort. http://pastebin.com/677588 22.59.14 # not much more i can do for it either, without compromising sound quality 22.59.43 # YOu said something about 64bit multiplies? Any chance to reduce the number of 64bit multiplies? 22.59.43 # preglow: that's probably why the wolfson codec has a decent 5 band equalizer built in? (at least the specs on it seem decent) 23.00.09 # 'lo everyone 23.00.17 # lostlogic: well, r6 is just incremented by one, it'll be invalide sooner or later unless it's aligned 23.00.26 # hey lostlogic -- are there any plans to use the second CPU in the iPod? 23.00.28 # lostlogic: yeah, it seems pretty decent, just a wee bit limited 23.00.30 # lostlogic: The 8731 and derivates don't have any hardware tone controls :( 23.00.34 # Ribs: yes, but that's a lot of work 23.00.40 # ah 23.00.44 # not for a while then :) 23.00.46 # indeed 23.00.58 # amiconn: well, not really 23.01.09 # preglow: ah, I understand the problem in my code then. 23.01.26 # amiconn: you need five multiply and accumulate instructions per sample 23.01.46 # amiconn: if we can't use the smlal instruction, then we need to use the mla one, which again requires everything to fit in 32 bits 23.02.41 # amiconn: and a couple of guard bits would be nice too, to avoid overflowing samples without having to do carry checks all the time, which leaves us with less than sixteen bits of audio precision 23.03.14 # i hate the bloody arm extended multiplier unit 23.03.32 # it uses early termination, so the time it uses is dependent on input data 23.03.35 # Wow... Slasheri's tagcache commit speedup cuts commit time on my recorder down to less than half 23.03.50 # 3:30 before, 1:30 now 23.03.56 # that is indeed very decent 23.06.33 # And that's already the second speedup. First it went 5:00->3:30 23.07.27 Join BHSPitLappy2 [0] (i=Steve-O@67.64.145.221) 23.08.02 Join chi [0] (i=root@ns1.aoloser.com) 23.08.04 # btw, has anyone started to make a host based tagdb updater? 23.08.46 Join ep0ch [0] (n=ep0ch@84.12.80.70) 23.08.59 # Has anyone had the problem of their usb connection to their DAP suddenly die and start again in the middle of file transfer? 23.09.44 # ahahaha, when I commit this pcmbuf rework, it will make the actual code faster, but the debug screen slower (8 or 10 more instructions per audio thread debug update, but a few fewer instructions in the DMA interrupt :) 23.10.23 # preglow: speaking of crossfeed, on ihp the attenuation controls in the UI should be inverted? i.e. joystick up is currently making the dBs go down and vice versa 23.10.33 # lostlogic: What do you think how short before the dma we could mix voice with a secondary pcm buffer? 23.10.58 # ep0ch: i know, but i can't be bothered 23.11.01 # k 23.11.02 # lostlogic: btw, when seeking (at least mp3 for sure), it seems you've re-introduced the "display the file time before the seek for a brief moment" thing. :) 23.11.05 # ep0ch: also eq precut is like that 23.11.35 # ahh never touched eq precut, i may have a look and post a patch 23.11.41 # Also, do you think a secondary pcm buffer would make the code less complex? Iiuc you said that voice is currently handled very different depending on whether music is playing in parallel or not. That could be changed with a secondary pcm buffer, couldn't it? 23.11.57 # Lear: yeah, I've noticed. 23.12.29 # amiconn: the voice is handled as music when music is not playing, so a secondary pcm buffer would only add complexity 23.12.37 # amiconn: safe mix distance is ~1/4s 23.12.48 # before i ever heard of rockbox, i accidently formated my nano. and then i thought may as well try rockbox. so im folowing the nano directions for the install but it requiers some stuff from the nanos boot partition wich was formated heh. is there a way to get a bootpartition.bin? or am i out of luck? 23.13.24 # Hmm... I would think that this different handling wouldn't be necessary anymore with a secondary buffer 23.13.43 Quit Lear ("Chatzilla 0.9.72 [Firefox 1.5.0.2/2006030804]") 23.14.04 # _FINALLY_ 23.14.06 # argh 23.14.10 # * preglow kicks coldfire data sheets 23.14.41 # I could die a happy man if I never had to look at the 5282 or 5271 datasheet ever again :P 23.14.42 # amiconn: would still have to choose between mixing and playing 23.14.57 # preglow? 23.14.58 # would need to have a separate DMA callback for when just voice is playing vs. when voice and music 23.14.59 # any up-to-date at&t english voice files available? 23.15.11 # Yes, but the voice codec would always decode into the secondary buffer 23.15.12 Quit TCK (Read error: 104 (Connection reset by peer)) 23.15.27 # yes, the decoding side would be simplified somewhat. 23.15.29 # petur: i pretty much have had to experiment my way forward in finding out what needs to be reset and so forth 23.15.42 # ugh 23.15.52 # Should make preemption rather simple 23.16.05 Join lostnihilist [0] (n=james@c-67-175-244-14.hsd1.il.comcast.net) 23.16.09 # petur: if i after recording when and played a file, recording would be broken after it 23.16.11 # i wonder if someone has a bootpartition.bin from a nano i could download from them? 23.16.24 # seems i just had to reset some stuff a bit early, and etc etc etc 23.16.40 # amiconn: yes, and it would also help eliminate the bug that's been reported of audio stop during voice freezing. 23.16.54 # amiconn: I'm definitely not against the idea of having a separate ~200k voice decode area. 23.16.55 Quit BHSPitLappy (Read error: 110 (Connection timed out)) 23.17.07 # specially if we can get rid of malloc in codecs and reclaim that 500k 23.17.19 # Anyone have any suggestions for me? 23.17.36 # lostlogic: 200k? Is voice already resampled when buffering? 23.17.48 # amiconn: yes, DSP happens before pcm buffer 23.17.54 # I have problem of my usb connection to my h320 suddenly dying and starting again in the middle of a file transfer... 23.17.59 # Kyomi: I have the USB sometimes stalling 23.18.19 # Kyomi: usb is handled by hardware 23.18.22 # but this is simply because the hdd of my h120 is too slow and the buffer on the PC got full. 23.18.29 # Kyomi: does your problem only exist with the H320? Or do other USB devices show the same problem? Does this problem only exist on one PC or on all PCs you can get your hands on? 23.18.44 # lostlogic: you have any issues with lots of small files in playback? 23.18.48 # the dap hdd light is always on, so there is activity -- just wait a bit. 23.18.49 Join damaki__ [0] (n=Chocolat@ALille-153-1-6-10.w83-198.abo.wanadoo.fr) 23.18.52 # Kyomi: I have no such problems with my H340 device... 23.18.56 # preglow: not tried playing lots of small files. 23.19.04 # it seems to cut them rather badly here 23.19.22 # define cut? 23.19.32 # as in the ends are removed 23.19.44 # and the progress bar has serious behavioural problems 23.19.49 # gee fun. 23.19.56 Join Poka64 [0] (i=Poka64@hd5e241c0.gavlegardarna.gavle.to) 23.19.57 # that's what i said too 23.20.09 # then i said "no wait, that's not fun at all!" 23.20.24 Quit Massa_ ("IceChat - it may not be hot but damn it's cool") 23.20.26 # lostlogic: Hmm, maybe voice should be resampled before pcm... but does the pcm buffer handle mono? 23.20.30 # I have had ends of songs get cut (pcmbuffer length worth), which is part of why I started looking at the crossfade code. Not sure if it relates though. 23.20.48 # will there ever be a version for 1st generation Ipod mini ? 23.20.56 # amiconn: no, the pcm buffer is data fed _directly_ to the hardware, so is stereo, 44.1khz 23.21.02 # Poka64: it should work now 23.21.17 # Poka64: look at the daily builds page. 23.21.20 # Hmm, voice buffered as stereo seems like a waste... 23.21.24 # preglow, are you sure, tried a couple of weeks ago 23.21.32 # Poka64: things are happening fast around here 23.21.34 # everything got messed up 23.21.40 # amiconn: sure, but how are you going to do the just-in-time conversion -- would require another thread in the audio system, I think :( 23.22.05 # waste, yes, can we survive it for now? yes 23.22.12 # lets just make it work properly 23.22.17 # we can fix it after 3.0 23.22.32 # Hmm. If we're mixing, the low-latency mixer could easily handle mono-to-stereo 23.22.41 # The question is what to do when not mixing 23.23.03 # mm, I still don't know where you're going to do your low-latency mixing (threadwise) I don't have a place for it in mind. 23.23.29 # Where is it currently done? 23.23.36 # on the decode thread 23.24.08 # Ah, yes, so introducing a secondary buffer would add the need for another thread... 23.24.12 Quit bluebrother ("Leaving") 23.24.39 # The pcm playback code itself runs in isr context? 23.25.01 Quit Ribs ("Leaving") 23.25.10 # just the dma callback, everything else is done on the decode thread. 23.25.35 *** Saving seen data "./dancer.seen" 23.26.22 # do these two lines seem idiotic to you guys? 23.26.23 # int sample = ((int)*input_buf++ * factor) >> 8; 23.26.23 # sample += ((short *)crossfade_chunk->addr)[crossfade_sample]; 23.26.50 # amiconn: 320kbps is now realtime at 45mhz 23.26.55 # with a nice margin 23.27.03 # wow! 23.27.05 # factor is an unsigned int defined as ((size_t - size_t)<<8)/size_t 23.27.27 # antonius is doing great work 23.27.34 # someone buy him an ipod 23.27.41 # lol 23.28.25 # Slasheri: tagcache gets confused if you delete the tagcache*.tcd files at runtime and then switch to the tagcache view 23.29.06 # ep0ch: you still here? 23.29.08 Join Arrogant [0] (i=Scott@227.orlando-09rh15-16rt.fl.dial-access.att.net) 23.29.15 # Doesn't crash, but displays funny strings instead of the first 4 standard views, and when trying to enter these, displays a vkeyboard 23.29.22 # ep0ch: yup 23.29.24 # oops 23.29.25 # ep0ch: how about you testing spdif recording? :) 23.29.29 # i'm ep0ch! 23.29.32 # heh 23.29.48 # if it doesn't work for you people now, i don't know what to do 23.30.50 # Did you try different frequencies? 23.30.51 Join filoktetes [0] (n=filoktet@g-001.osl255.netcom.no) 23.31.11 # I would, if I only had the needed cable... 23.31.35 # amiconn: i did 23.31.41 # 1.380 23.31.46 # bleh, wrong paste 23.31.52 # http://www.pvv.org/~thomj/rockbox/spdif_recording.patch 23.32.08 # amiconn: i've tried 44.1khz and 48khz, the only two i have access to 23.32.24 # I would, if I had the needed player :D 23.32.26 # Yeah, would be the same here 23.33.00 # I can only use my dvd player as s/pdif source, playing an audio cd as 44.1kHz source, and a dvd as 48kHz source 23.33.11 # i can use my pc and my cd player 23.33.25 # pc is locked to 48khz, cd 44.1 23.33.41 Quit damaki_ (Read error: 110 (Connection timed out)) 23.34.31 # other sample rates sound shit while monitoring, but i can think of no way around that, and the iriver firmware sounds just as bad 23.34.37 # Slasheri: The 'Couldn't load codec' bug is still there.... 23.34.38 Join matsl [0] (n=matsl@1-1-4-2a.mal.sth.bostream.se) 23.35.34 # How is monitoring done? 23.35.51 # Just passing through pcm? 23.36.46 Join ep0ch| [0] (n=ep0ch@84.12.151.116) 23.37.17 # nope 23.37.17 Quit BHSPitLappy2 (Connection timed out) 23.37.25 # preglow: i'll be able to do some testing for you tomorrow evening 23.37.33 # you can route pretty nicely without letting anything go through the cpu core 23.37.40 # i just redirect ebu in 1 to iis2 23.38.18 # Okay, but that's still just passing through the signal 23.38.18 # doing it through pcm would of course be the better solution, allowing proper resampling, but it requires more knowledge about the current system than i have 23.38.32 # Maybe we need to resample in order to not make it sound shit... 23.39.04 # it doesn't sound _that_ bad 23.39.16 # but you get some high frequency buzzing 23.39.21 # [23:34:33] other sample rates sound shit while monitoring, 23.39.32 # depends what you think of shit :) 23.39.35 Join TCK [0] (n=tckocr@81-178-249-38.dsl.pipex.com) 23.39.36 # I can't judge myself... 23.39.39 # hehe 23.40.10 # * amiconn should go looking for such an optical cable (or adapter) 23.40.24 # I have a standard toslink cable 23.42.22 Part ep0ch| ("Kopete 0.11.1 : http://kopete.kde.org") 23.46.02 Quit ep0ch (Connection timed out) 23.47.15 # the tos/jack adapter is small and cheap 23.47.28 # you just tack it onto the end of the tos cable plug 23.48.12 # alright, am I insane? casting a short to an int sign extends the short, right? 23.48.43 # yea, if it's singed 23.48.46 # heh, signed 23.48.52 # yeah, it's getting singed :( 23.49.02 # rofl 23.49.07 Quit chi (Remote closed the connection) 23.49.49 # lostlogic: sry, what's the problem 23.50.03 # ? 23.51.03 # when I should be crossfading, I'm instead getting only the new audio, very distorted 23.52.12 # some tracks end prematurely using yesterday's build 23.52.21 # (still) 23.52.56 # and sometimes resume does not work, rockbox just stats un dir listing mode 23.52.59 Nick Bagder_ is now known as Bagder (n=daniel@1-1-5-26a.hud.sth.bostream.se) 23.53.01 # :( 23.53.01 # pill: yes, as I said a while ago, I've experienced that adn it's part of why I started looking into crossfade (crossafde is initialized on almost all track changes) 23.53.13 # pill: both known bugs 23.53.15 # even when turned off? 23.53.24 # pill: yes 23.53.28 # k 23.53.47 # but it's getting better, i can tell 23.53.52 # amiconn: this is where I _believe_ the problem must be happening, as the audio from the new track does play. http://pastebin.com/677712 23.54.20 # lostlogic: Should the problem with the erased resume position be solved in current cvs? 23.54.34 # amiconn: no 23.54.41 # amiconn: haven't gotten to i t yet 23.56.28 # won't sample * factor overflow? 23.56.58 # petur: that's why sample is a 32 bit int, which holds temporary results from a short * factor 23.57.18 # oh 23.57.32 Join mareviq [0] (i=magi@nat-mo1.aster.pl) 23.58.16 # petur: thanks for looking... I mean I'm sure I'm missing something similar to that :(