--- Log for 13.05.111 Server: holmes.freenode.net Channel: #rockbox --- Nick: logbot Version: Dancer V4.16 Started: 3 hours and 49 minutes ago 00.00.34 # menu items are played off the voice file buffer, no? 00.01.07 # what else is left to get the android port officially supported? 00.01.11 # it seems quite useable 00.02.57 # jhMikeS: thanks. that seems nasty in its entirety :) 00.02.58 # kugel: yeah, I think that's right, just for loadable ones 00.03.55 Join Buschel_ [0] (~chatzilla@p54B66D6E.dip.t-dialin.net) 00.04.17 # so, there's tdspeed_init() after talk_init(). tdspeed_init() does buffer_alloc(). that is broken, isn't it? 00.04.26 # scrobbler_init() too 00.04.54 # only if it doesn't steal the mp3 buffer first 00.05.27 # *talk buffer 00.05.40 # oh I see. talk_init() is called in main only for HWCODEC, for SWCODEC it's called in playback.c 00.05.44 Quit Buschel (Ping timeout: 240 seconds) 00.05.51 Nick Buschel_ is now known as Buschel (~chatzilla@p54B66D6E.dip.t-dialin.net) 00.06.23 # HWCODEC can't mix voice and playback, so things are a bit different 00.07.02 # but seems broken on HWCODEC due to scrobbler_init() 00.07.37 # the thumbnail buffer and scrobbler buffer should overlap if I get this right 00.09.22 # (talk_init()->reset_state()->steal audiobuf; then scrobbler_init()->buffer_alloc) 00.09.22 Quit Jerom1 (Quit: Leaving.) 00.09.43 # hwcodec also has a different playback engine and doesn't have MoB, maybe stating the obvious though 00.10.07 # but it has scrobbling 00.10.25 # that looks wrong to me too 00.10.59 # voice and playback worked without problems but I don't use scrobbling so can't tell 00.11.21 *** Saving seen data "./dancer.seen" 00.13.44 Quit keyb_gr (Quit: ChatZilla 0.9.86.1 [SeaMonkey 2.0.13/20110320141607]) 00.14.11 # I suspect this manual audibuf fiddling is just so that a new voice can be loaded at runtime of the lang changes, and due to this the voice buffer needs to be allocated after all buffer_allocs 00.14.18 # To me, TALK_PARTIAL_LOAD is new. Makes sense for a sansa clip or something though. 00.14.43 # the clip was the point IIRC 00.14.51 # funman implemented it for it 00.15.11 # I suspected as much. 00.15.16 # (except this bug on auto-change directory). I admit that I have no idea if that relates to anything said before, just that I thought that if something in the buffer gets overwritten all weird things vam happen 00.15.32 # err... *can 00.16.07 # I guess it depends on what gets clobbered 00.16.37 # kugel: right, further buffer_alloc's need talk_buffer_steal to accompany them 00.17.12 # something else seems broken. struct voicefile:table is (besides being redunant) never set 00.17.35 # oh wait, it's probably set by voice generation 00.17.59 # that just looks like header template 00.21.16 # pixelma: the scrobbler.log could be spoken accidentally :D 00.21.38 # not that you'd be able to recognize it 00.23.52 # jhMikeS: hopefully this kind of nasty stuff won't be needed after my gsoc project 00.24.11 # New commit by 03Buschel (r29864): Trapped into ifdef-hell. Configure libfaad's IRAM/DRAM usage like it is meant to be. 00.26.17 # \o/ usb working on clip+ with PIO mode, let's hope it will be more stable than the dma one 00.26.49 # jhMikeS: I just see that scrobbling possibly relied on the TRACK_CHANGE event coming early 00.27.47 # what do you mean? 00.28.41 # r29864 build result: 0 errors, 33 warnings (Buschel committed) 00.28.58 # it really should process track finish, not track change 00.29.31 # it seems to use the event to scrobble the outplaying track 00.30.09 Quit Buschel (Quit: ChatZilla 0.9.86.1 [Firefox 3.6.17/20110420140830]) 00.30.33 # right, I don't see how it wouldn't worked correctly anyway, without sending track change for the old track, then track finish, then track change for the new track or something to that effect 00.30.39 # *would've 00.30.58 # oh no, it does strange things :) 00.31.22 # better to change scrobbling to use track finish, then audio_prev_elapsed would be unneeded 00.31.30 # it saves the id3 into a private struct, and checks it again when the next track begins 00.31.37 # it would get the outgoing track automatically 00.31.44 # sounds good 00.32.17 # saratoga: I've had a few thoughts about the audio library project. Mainly, that if we're serious about encouraging other projects to use it, it needs to be released as a tarball, and not just live hidden inside Rockbox SVN. It also needs good API documentation and example/tutorial programs. 00.33.07 # strange even timing was strubbed out of playback.c, I don't know about mpeg.c and if it tries sending events in a hacky way 00.33.25 # s/even/event/, s/strubbed/scrubbed/ 00.36.43 # jhMikeS: does TRACK_FINISH also come if playback was stopped or so, i.e. not only on automatic track change? 00.37.04 # I remember scrobbking on hwcodec being implemented a bit later and I believe he was trying to do similar stuff as the database runtime stats. I was testing it back then and it once worked but it was ages ago and I am not sure now if it was with voice or not (though usually I have voice enabled on the Ondio especially back then it was probably without backlight) 00.38.11 # you could try if it still works. I have no hwcodec 00.38.11 Quit fyrestorm (Read error: Connection reset by peer) 00.38.11 # or scrobbling 00.38.14 Join fyre^OS [0] (~nnscript@cpe-24-90-84-81.nyc.res.rr.com) 00.39.11 Join Xerion_ [0] (~xerion@5419A078.cm-5-2c.dynamic.ziggo.nl) 00.39.20 # kugel: always when a track is exited. actually, two hacky things are done because of 1) playlists still need preadvancing when switching them automatically, so track finish comes a bit early 2) skipping to the beginning needs track finish so autoresume works when skipping backwards 00.39.20 # yeah I'll try to, but now sleep first 00.39.26 Join bluefoxx [0] (fuzzylomba@S0106485b3917092d.vs.shawcable.net) 00.39.33 # gevaerts: talk.c and tagtree.c are left in my buffer_alloc() analysis, after that I'll look at how audiobuf is used directly 00.39.45 Join Scromple [0] (~Simon@115-64-195-104.tpgi.com.au) 00.40.02 # but I'm a little surprised the use of each buffer differs so much 00.40.29 Quit Keripo (*.net *.split) 00.40.30 Quit MethoS- (*.net *.split) 00.40.30 Quit froggyman (*.net *.split) 00.40.30 Quit cjcopi (*.net *.split) 00.40.31 Quit knittl (*.net *.split) 00.40.31 Quit TBCOOL (*.net *.split) 00.40.58 Quit Xerion (Ping timeout: 276 seconds) 00.40.58 Nick Xerion_ is now known as Xerion (~xerion@5419A078.cm-5-2c.dynamic.ziggo.nl) 00.41.36 Quit bluefoxx_ (Ping timeout: 276 seconds) 00.41.53 # the project will probably be more tricky than I initially thought, but it should be doable 00.42.38 # speaking of testing though - jhMikeS: I have the *impression* that the with the new engine, the progressbar (the then new and empty) gets drawn a little late after the track change but I haven't compared to before which is why I didn't say something before). It's just that I now think "that takes a while" and I can't remember thinking so before - but it 00.42.55 # I think I'm going to post a suggested API on the ML before starting the dirty work 00.42.58 # could also be my imagination... just saying in case you want to test 00.43.48 # jhMikeS: thanks for your input 00.43.53 # there should be less delay now, before it could be up to 1/2s but now it checks transitions at 1/10 s 00.44.14 # kugel: np 00.44.31 # yeah, need to test 00.45.57 Join Keripo [0] (~Keripo@CPE0022b0d4bdb7-CM001a6680d4fe.cpe.net.cable.rogers.com) 00.45.57 Join MethoS- [0] (~clemens@134.102.106.250) 00.45.57 Join froggyman [0] (~seth@unaffiliated/froggyman) 00.45.57 Join cjcopi [0] (~craig@charon.craig.copi.org) 00.45.57 Join knittl [0] (~knittl@unaffiliated/knittl) 00.45.57 Join TBCOOL [0] (~tb@c-3c3671d5.09-42-73746f22.cust.bredbandsbolaget.se) 00.47.05 # it tells the WPS to switch when PCM says so, just like before 00.47.49 Join SecretofMana [0] (~spiritofm@204.237.38.181) 00.48.40 # wasn't there some workaround in place which sometimes lead to the WPS being updated to the new track even before the audible track change? I somehow seem to remember something like this 00.50.13 # that sort of thing shouldn't happen now, neither should the playlist normally advance before the audible change 00.52.49 Quit froggyman (Read error: Operation timed out) 00.52.56 # yeah, I just thought that if it already started to draw the next progressbar earlier too, it might look snappier 00.53.44 # even though not "correct" 00.55.04 Quit Scromple (Ping timeout: 248 seconds) 01.03.33 Join sideral [0] (~sideral@213.165.85.248) 01.03.33 Quit sideral (Changing host) 01.03.33 Join sideral [0] (~sideral@rockbox/developer/sideral) 01.17.26 Quit petur (Quit: Leaving) 01.20.04 Join froggyman [0] (~seth@unaffiliated/froggyman) 01.20.41 Quit S_a_i_n_t (Quit: Imagination is for turbo-nerds who can't handle how kick-butt reality is. I'm a kick-butt reality master! I would rather die, than be imaginative. I mean that.) 01.22.11 Quit pamaury (Remote host closed the connection) 01.22.34 Join [Saint] [0] (~st.lasciv@124-197-3-117.callplus.net.nz) 01.23.09 Quit [Saint] (Client Quit) 01.23.26 Join [Saint] [0] (~st.lasciv@124-197-3-117.callplus.net.nz) 01.33.37 Join krazykit [0] (~krazykit@99-126-205-52.lightspeed.cicril.sbcglobal.net) 01.37.11 Quit sideral (Ping timeout: 248 seconds) 01.47.58 Quit robin0800 (Quit: Leaving) 01.53.01 Quit Keripo (Quit: Leaving.) 02.03.58 Quit DerPapst1 (Quit: Leaving.) 02.04.39 Quit lovasoa (Quit: Quitte) 02.09.34 Quit Judas_PhD (Quit: This is a quitting message) 02.11.25 *** Saving seen data "./dancer.seen" 02.19.14 Join evilnick_ [0] (~evilnick@ool-18bcf602.dyn.optonline.net) 02.19.15 Quit evilnick (Read error: Connection reset by peer) 02.19.47 Join Judas_PhD [0] (~kevin@misterfluffy.dsl.xmission.com) 02.27.12 Quit phr (Read error: Operation timed out) 02.28.10 Join phr [0] (~phr@ruckus.brouhaha.com) 02.28.36 Quit Judas_PhD (Quit: This is a quitting message) 02.31.29 Join Judas_PhD [0] (~kevin@misterfluffy.dsl.xmission.com) 02.37.18 Join MarktheArcher [0] (~mark@99-20-182-188.lightspeed.elgnil.sbcglobal.net) 02.40.24 Quit Judas_PhD (Quit: This is a quitting message) 02.41.26 Join Judas_PhD [0] (~kevin@misterfluffy.dsl.xmission.com) 02.45.36 Quit gartral (Remote host closed the connection) 02.49.03 Join krabador [0] (~Caution@host207-229-dynamic.252-95-r.retail.telecomitalia.it) 02.51.05 Join Scromple [0] (~Simon@115-64-195-104.tpgi.com.au) 02.51.20 Quit ReimuHakurei (Ping timeout: 248 seconds) 02.51.31 Join ReimuHakurei [0] (~reimu@74.112.212.15) 02.53.57 Nick MarktheArcher is now known as ricemark20 (~mark@99-20-182-188.lightspeed.elgnil.sbcglobal.net) 02.54.48 Quit Scromple (Client Quit) 02.57.29 Join Scromple [0] (~Simon@115-64-195-104.tpgi.com.au) 03.02.20 Join ReimuHakurei_ [0] (~reimu@74.112.212.15) 03.03.53 Quit ReimuHakurei (Read error: Connection reset by peer) 03.04.42 Join robin0800 [0] (~robin0800@cpc3-brig8-0-0-cust703.3-3.cable.virginmedia.com) 03.04.53 Quit evilnick_ (Ping timeout: 246 seconds) 03.08.02 Quit robin0800 (Client Quit) 03.08.10 Join robin0800 [0] (~robin0800@cpc3-brig8-0-0-cust703.3-3.cable.virginmedia.com) 03.18.37 Quit Scromple (Read error: Connection reset by peer) 03.19.27 Join Keripo [0] (~Keripo@CPE0022b0d4bdb7-CM001a6680d4fe.cpe.net.cable.rogers.com) 03.21.20 Join Scromple [0] (~Simon@115-64-195-104.tpgi.com.au) 03.22.45 Quit [Saint] (Ping timeout: 252 seconds) 03.40.53 Quit froggyman (Ping timeout: 250 seconds) 03.43.01 Join Scromple_ [0] (~Simon@115-64-195-104.tpgi.com.au) 03.45.44 Quit MethoS- (Remote host closed the connection) 03.46.00 Quit Scromple (Ping timeout: 276 seconds) 03.56.20 Join [Saint] [0] (~st.lasciv@124-197-3-117.callplus.net.nz) 04.00.05 Quit [Saint] (Disconnected by services) 04.00.07 Join S_a_i_n_t [0] (~st.lasciv@124-197-3-117.callplus.net.nz) 04.01.12 Quit pixelma (Disconnected by services) 04.01.12 Join pixelma_ [0] (quassel@rockbox/staff/pixelma) 04.01.16 Quit amiconn (Disconnected by services) 04.01.17 Join amiconn_ [0] (quassel@rockbox/developer/amiconn) 04.01.34 Nick pixelma_ is now known as pixelma (quassel@rockbox/staff/pixelma) 04.01.34 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn) 04.04.42 Join JoshuaChang [0] (~JoshuaCha@180.175.6.233) 04.04.44 Quit robin0800 (Quit: Leaving) 04.11.27 *** Saving seen data "./dancer.seen" 04.21.43 Quit dfkt (Quit: -= SysReset 2.55=- Sic gorgiamus allos subjectatos nunc.) 04.23.43 Quit krabador (Ping timeout: 248 seconds) 04.33.28 Quit S_a_i_n_t (Quit: Imagination is for turbo-nerds who can't handle how kick-butt reality is. I'm a kick-butt reality master! I would rather die, than be imaginative. I mean that.) 04.35.42 Join froggyman [0] (~seth@unaffiliated/froggyman) 04.36.44 Join [Saint] [0] (~Saint]@124-197-3-117.callplus.net.nz) 04.38.58 Join kugel_ [0] (~kugel@rockbox/developer/kugel) 04.40.17 Quit kugel (Read error: Operation timed out) 04.59.45 Quit pixelma (Disconnected by services) 04.59.46 Join pixelma_ [0] (quassel@rockbox/staff/pixelma) 04.59.50 Quit amiconn (Disconnected by services) 04.59.50 Join amiconn_ [0] (quassel@rockbox/developer/amiconn) 05.00.08 Nick pixelma_ is now known as pixelma (quassel@rockbox/staff/pixelma) 05.00.08 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn) 05.04.11 Join Rob2223 [0] (~Miranda@p5DE4B99E.dip.t-dialin.net) 05.04.22 Quit Keripo (Quit: Leaving.) 05.08.06 Quit Rob2222 (Ping timeout: 250 seconds) 05.24.05 Join DerPapst [0] (~Alexander@p579168DD.dip.t-dialin.net) 05.31.51 Quit Judas_PhD (Quit: This is a quitting message) 05.44.42 Quit Horscht (Quit: Verlassend) 05.45.14 Quit Galois (Read error: Operation timed out) 05.45.16 Quit SecretofMana (Read error: Connection reset by peer) 05.45.26 Join Galois [0] (djao@efnet-math.org) 05.46.07 Join SecretofMana [0] (~spiritofm@204.237.38.181) 05.55.09 Quit pjm0616 (Ping timeout: 258 seconds) 05.56.09 # * [Saint] wonders why he gets haptic feedback input at two points after closing RaaA 05.56.19 # <[Saint]> 2/closing/shutting down/ 05.58.08 # * JdGordon is annoyed that opening rockbox from the widget crashes the first time if the service isnt running 05.58.50 # <[Saint]> I shut down, and as soon as I get to the homescreen there's a tiny singular haptic feedback "buzz", then approximately 5 seconds after that there's another haptic feedback event. The second one is a dual short-long combination "buz-buzzzzzzz" 05.59.03 # <[Saint]> JdGordon: It doesn't here. 06.03.05 # let rockbox idle-poweroff, then try opening it from the widget 06.03.37 # <[Saint]> I don't need to let it idle power-off...I have shutdown in the main menu. 06.03.41 # <[Saint]> And still, WFM 06.04.05 # <[Saint]> Llorean mentioned it the other day that it didn't work for him either, then he tried it again, and it did. 06.04.55 # <[Saint]> brb, booting to windows 06.05.08 Quit [Saint] (Remote host closed the connection) 06.06.47 Join [Saint] [0] (~st.lasciv@124-197-3-117.callplus.net.nz) 06.07.00 Quit SecretofMana () 06.07.13 Join pjm0616 [0] (~user@110.8.235.86) 06.11.31 *** Saving seen data "./dancer.seen" 06.27.18 Quit ricemark20 (Remote host closed the connection) 07.25.29 # is there an official opinion/procedure on how to deal with a forum member like this marrylee who puts an unrelated link at the bottom of otherwise helpful posts? (see the last 3 recent posts) 07.26.21 # maybe asking in a PM to stop that and remove the links from already posted things 07.29.08 # that doesnt look like actual repplies 07.29.08 # i say ban 07.29.10 Quit Zarggg_ (Read error: Connection reset by peer) 07.29.14 Join Curulan [0] (~zarggg@24.229.139.169.res-cmts.sm.ptd.net) 07.31.16 # well, akismet seems to agree (as it is only in recent posts not when you go to the actual thread). I just thought the Gigabeat S reply looked sensible 07.31.59 # they were all trapped by akismet, i tihnk they are spam 07.33.06 # yeah, looks like it. It's just not that obvious 07.52.36 Join n1s [0] (~quassel@rockbox/developer/n1s) 07.53.44 Join mystica555 [0] (~Mike@71-33-152-71.hlrn.qwest.net) 07.54.06 Quit JoshuaChang (Read error: Connection reset by peer) 07.54.35 Join JoshuaChang [0] (~JoshuaCha@180.175.6.233) 08.11.05 Quit bieber (Read error: Connection reset by peer) 08.11.33 *** Saving seen data "./dancer.seen" 08.11.58 Join bieber [0] (~quassel@162-78.97-97.tampabay.res.rr.com) 08.16.16 Join Bagder [0] (~daniel@www.haxx.se) 08.16.16 Quit Bagder (Changing host) 08.16.16 Join Bagder [0] (~daniel@rockbox/developer/bagder) 08.20.46 Quit shai (Read error: Connection reset by peer) 08.21.14 Join shai [0] (~Shai@l192-117-110-233.cable.actcom.net.il) 08.30.26 Join sideral [0] (~sideral@213.165.85.248) 08.30.26 Quit sideral (Changing host) 08.30.26 Join sideral [0] (~sideral@rockbox/developer/sideral) 08.35.43 Join antil33t| [0] (~antil33t@124-197-51-80.callplus.net.nz) 08.35.46 Quit antil33t (Disconnected by services) 08.36.45 Join Zagor [0] (~bjst@rockbox/developer/Zagor) 08.45.02 Join ender` [0] (krneki@foo.eternallybored.org) 08.46.06 Part shai ("Leaving") 08.52.21 Quit JoshuaChang (Quit: ChatZilla 0.9.86.1 [Firefox 4.0.2pre/20110429182132]) 08.53.39 Quit crwll (Ping timeout: 240 seconds) 08.55.38 Join crwll [0] (~crwlll@dsl-jklbrasgw1-fe8edf00-29.dhcp.inet.fi) 09.00.56 Join Mikeb0ok [0] (~mike@71-33-152-71.hlrn.qwest.net) 09.01.00 Quit Mikeb0ok (Excess Flood) 09.01.19 Join Mikeb0ok [0] (~mike@71-33-152-71.hlrn.qwest.net) 09.04.09 Quit mystica555_ (Ping timeout: 240 seconds) 09.04.38 Quit mystica555 (Ping timeout: 260 seconds) 09.08.47 Quit DerPapst (Quit: Leaving.) 09.11.14 Join petur [0] (~petur@rockbox/developer/petur) 09.17.09 Join mystica555 [0] (~Mike@71-33-152-71.hlrn.qwest.net) 09.17.35 Quit Scromple_ (Read error: Connection reset by peer) 09.18.34 Join einhirn [0] (~Miranda@bsod.rz.tu-clausthal.de) 09.19.34 Nick Mikeb0ok is now known as mystica555_ (~mike@71-33-152-71.hlrn.qwest.net) 09.22.47 Quit saratoga (Ping timeout: 252 seconds) 09.29.00 Quit sasquatch (Quit: WeeChat 0.3.2) 09.29.25 Join sasquatch [0] (~username@p4FF2DA77.dip.t-dialin.net) 09.31.05 Join LinusN [0] (~linus@giant.haxx.se) 09.45.10 Join Judas_PhD [0] (~kevin@misterfluffy.dsl.xmission.com) 09.47.36 Join efyx [0] (~efyx@lap34-1-82-225-185-146.fbx.proxad.net) 10.11.36 *** Saving seen data "./dancer.seen" 10.20.56 Join mem_ [0] (~mem@mem-irc.netnod.se) 10.54.53 Join casainho [0] (~chatzilla@pal-213-228-181-14.netvisao.pt) 11.34.02 Join mudd1 [0] (~cmertes@ip-78-94-202-227.unitymediagroup.de) 11.36.05 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) 11.42.32 Quit jhMikeS (Ping timeout: 276 seconds) 11.48.32 Join silbo_ [0] (~quassel@193.40.244.204) 11.54.25 Quit [fred] (Ping timeout: 276 seconds) 11.56.18 Join pamaury [0] (~quassel@vit94-1-82-67-248-70.fbx.proxad.net) 11.56.18 Quit pamaury (Changing host) 11.56.18 Join pamaury [0] (~quassel@rockbox/developer/pamaury) 11.58.32 Join [fred] [0] (fred@ircop.efnet.at) 12.02.24 Quit petur (Quit: *plop*) 12.11.40 *** Saving seen data "./dancer.seen" 12.30.09 Join kerobaros [0] (~kerobaros@75-132-19-83.dhcp.stls.mo.charter.com) 12.52.21 Join antil33t [0] (~antil33t@124-197-51-80.callplus.net.nz) 12.52.31 Join MarktheArcher [0] (~mark@99-20-182-188.lightspeed.elgnil.sbcglobal.net) 12.53.44 Nick kugel_ is now known as kugel (~kugel@rockbox/developer/kugel) 12.54.13 Quit MarktheArcher (Client Quit) 12.54.55 Quit antil33t| (Ping timeout: 241 seconds) 12.59.58 Join dfkt [0] (dfkt@unaffiliated/dfkt) 13.04.36 Join B4gd3r [0] (~daniel@1-1-5-26a.hud.sth.bostream.se) 13.06.52 Quit B4gder (Ping timeout: 248 seconds) 13.15.56 Quit mudd1 (Ping timeout: 258 seconds) 13.17.53 Join keyb_gr [0] (~chatzilla@p5080C2C3.dip.t-dialin.net) 13.26.20 # New commit by 03kugel (r29865): Rework MediaButtonReceiver a bit: ... 13.30.17 # r29865 build result: 0 errors, 34 warnings (kugel committed) 13.30.23 Join robin0800 [0] (~robin0800@cpc3-brig8-0-0-cust703.3-3.cable.virginmedia.com) 13.31.33 Join slooopy [0] (~sloo@95-90-30-123-dynip.superkabel.de) 13.33.55 Quit robin0800 (Remote host closed the connection) 13.34.29 Join mudd1 [0] (~cmertes@ip-78-94-202-227.unitymediagroup.de) 13.38.05 # New commit by 03kugel (r29866): Skin engine: Swap meaning of & and * for touch regions. ... 13.38.31 Join robin0800 [0] (~robin0800@cpc3-brig8-0-0-cust703.3-3.cable.virginmedia.com) 13.41.50 # r29866 build result: 0 errors, 34 warnings (kugel committed) 13.46.03 Join ricemark20 [0] (~mark@99-20-182-188.lightspeed.elgnil.sbcglobal.net) 13.48.04 # sideral: change your device! :) 13.48.41 Quit sasquatch (Quit: WeeChat 0.3.2) 13.50.09 Quit ricemark20 (Client Quit) 13.52.25 Join shai [0] (~Shai@l192-117-110-233.cable.actcom.net.il) 13.52.30 # pamaury: you mean my clip+ is broken, not your code? :) 13.53.44 Join sasquatch [0] (~username@p4FF2CF3E.dip.t-dialin.net) 13.54.03 # I really don't know what to say, something is wrong but I don't know what, that can't just be related to the usb driver 13.54.48 # Or there are usb variants... 13.56.44 # pamaury: Hmm... My build isn't all that patches these days, but trying with a vanilla SVN checkout might be worthwhile 13.56.53 # s/patches/patched/ 13.59.29 # My offer to ship you the device still stands :) 14.00.50 # That might be an option although I might well be unable to do anything! 14.03.37 # Please try against vanilla svn if you didn't and then we'll see 14.03.44 # Alright 14.04.12 # bluebrother: ping 14.11.41 *** Saving seen data "./dancer.seen" 14.13.03 # New commit by 03pamaury (r29867): sbtools: be more verbose on debug and fix a bug (uninitialized structure) 14.13.40 Part mem_ 14.16.26 # r29867 build result: 0 errors, 33 warnings (pamaury committed) 14.16.54 # more gcc 4.6 warning ? 14.18.28 Join Rob2222 [0] (~Miranda@p5DE4B99E.dip.t-dialin.net) 14.20.51 # New commit by 03pamaury (r29868): sbtools: fix a few memcpy with overlapping src/dst, fix a parsing bug (would access one byte paste the end of the buffer) 14.21.30 Quit Rob2223 (Ping timeout: 246 seconds) 14.24.23 # r29868 build result: 0 errors, 33 warnings (pamaury committed) 14.41.20 Quit antil33t () 14.41.47 Join antil33t [0] (antil33t@124-197-51-80.callplus.net.nz) 14.57.04 Nick kugel is now known as kugelp (~kugel@rockbox/developer/kugel) 14.57.39 Join u42p [0] (~v35b@d127213.adsl.hansenet.de) 15.03.08 Quit Elfish (Ping timeout: 248 seconds) 15.10.36 Join Topy [0] (~Topy44@f049048141.adsl.alicedsl.de) 15.14.21 Quit T44 (Ping timeout: 248 seconds) 15.16.33 Quit mudd1 (Ping timeout: 246 seconds) 15.18.00 Join domonoky [0] (~Domonoky@rockbox/developer/domonoky) 15.21.30 Join Elfish [0] (amba@2a01:4f8:100:90a1:abc:abc:abc:abc) 15.21.43 Join MethoS- [0] (~clemens@134.102.106.250) 15.33.43 Part LinusN 15.44.10 Nick kugelp is now known as kugel (~kugel@rockbox/developer/kugel) 15.44.53 Join kevku [0] (~kevku@2001:470:28:773:babe:feed:dead:bee) 16.11.42 *** Saving seen data "./dancer.seen" 16.20.06 Quit preglow (Remote host closed the connection) 16.22.37 Quit kevku (Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/) 16.24.30 Join TheLemonMan [0] (~lem0n@ppp-95-52.26-151.libero.it) 16.24.32 Quit aevin (Remote host closed the connection) 16.28.47 Quit Bagder (Quit: Konversation terminated!) 16.50.11 Join stoffel [0] (~quassel@p57B4DC60.dip.t-dialin.net) 16.52.51 Join rdd [0] (~user@c83-250-52-16.bredband.comhem.se) 16.53.10 Join DerPapst [0] (~Alexander@p579168DD.dip.t-dialin.net) 16.57.16 Quit kugel (Ping timeout: 248 seconds) 16.58.37 Join benedikt93 [0] (~benedikt9@unaffiliated/benedikt93) 16.59.43 Join kugel [0] (~kugel@rockbox/developer/kugel) 17.00.48 Quit u42p (Quit: Leaving) 17.14.27 Part Zagor 17.18.43 Quit dfkt (Quit: -= SysReset 2.55=- Sic gorgiamus allos subjectatos nunc.) 17.23.41 Quit krazykit (Remote host closed the connection) 17.29.59 Quit Curulan (Quit: Curulan) 17.48.28 Quit TheLemonMan (Ping timeout: 258 seconds) 17.59.02 Quit sideral (Ping timeout: 276 seconds) 18.11.43 *** Saving seen data "./dancer.seen" 18.17.05 # bluebrother: ping :) 18.29.04 Join bertrik [0] (~bertrik@ip117-49-211-87.adsl2.static.versatel.nl) 18.29.04 Quit bertrik (Changing host) 18.29.04 Join bertrik [0] (~bertrik@rockbox/developer/bertrik) 18.36.02 Join Stummi [0] (~Stummi@rockbox/developer/Stummi) 18.40.24 # New commit by 03pamaury (r29869): fuze+: implement a full-blown debug screen for touchpad with graphical feedback 18.40.52 Join Keripo [0] (~Keripo@CPE0022b0d4bdb7-CM001a6680d4fe.cpe.net.cable.rogers.com) 18.43.16 Join Jerom1 [0] (~jerome@95.171.148.84) 18.43.43 # r29869 build result: 0 errors, 33 warnings (pamaury committed) 18.45.00 Quit antil33t (Read error: Connection reset by peer) 18.45.08 Join antil33t [0] (antil33t@124-197-51-80.callplus.net.nz) 18.47.29 Quit n1s (Remote host closed the connection) 18.52.23 Join t0rc [0] (~t0rc@unaffiliated/t0rc/x-5233201) 19.05.58 Join DerPapst1 [0] (~Alexander@p57916ACF.dip.t-dialin.net) 19.06.26 Join GeekShadow [0] (~Antoine@reactos/tester/GeekShadow) 19.07.10 Quit DerPapst (Ping timeout: 260 seconds) 19.07.17 Quit phr (Ping timeout: 276 seconds) 19.11.42 Quit DerPapst1 (Quit: Leaving.) 19.22.26 Nick B4gd3r is now known as Bagder (~daniel@1-1-5-26a.hud.sth.bostream.se) 19.22.32 Quit Bagder (Changing host) 19.22.32 Join Bagder [0] (~daniel@rockbox/developer/bagder) 19.24.36 Join Strife89 [0] (~Strife89@207.144.201.128) 19.33.27 Quit casainho (Remote host closed the connection) 19.41.36 Join sideral [0] (~sideral@213.165.85.248) 19.41.36 Quit sideral (Changing host) 19.41.36 Join sideral [0] (~sideral@rockbox/developer/sideral) 19.42.35 Join ricemark20 [0] (~mark@99-20-182-188.lightspeed.elgnil.sbcglobal.net) 19.44.35 Quit ricemark20 (Remote host closed the connection) 19.45.05 Join ricemark20 [0] (~mark@99-20-182-188.lightspeed.elgnil.sbcglobal.net) 19.46.45 Quit ricemark20 (Remote host closed the connection) 19.47.17 Quit ender| (Quit: The trouble with quotes found on the Internet is that they often turn out to be unreliable. -- William Shakespeare) 19.47.49 Join ender| [0] (krneki@foo.eternallybored.org) 19.47.53 Join mudd1 [0] (~cmertes@ip-78-94-202-227.unitymediagroup.de) 19.48.49 Join krabador [0] (~ubuntu@host133-190-dynamic.252-95-r.retail.telecomitalia.it) 19.49.24 Join Horscht [0] (~Horscht@p5DD56E8A.dip.t-dialin.net) 19.49.25 Quit Horscht (Changing host) 19.49.25 Join Horscht [0] (~Horscht@xbmc/user/horscht) 19.49.57 Join {phoenix} [0] (~dirk@p5DF2CF76.dip.t-dialin.net) 19.53.16 Quit t0rc (Quit: WeeChat 0.3.4) 19.53.23 Join Buschel [0] (~chatzilla@p54A3BACE.dip.t-dialin.net) 19.58.00 Quit krabador (Quit: Leaving.) 19.59.01 Quit ReimuHakurei_ (Quit: Changing server...) 19.59.07 Join ReimuHakurei [0] (~reimu@74.112.212.15) 20.11.45 *** Saving seen data "./dancer.seen" 20.20.51 Quit balintx (Remote host closed the connection) 20.21.11 Join balintx [0] (~quassel@szerver1.gulyasp-koll.sulinet.hu) 20.28.37 Quit Strife89 (Ping timeout: 240 seconds) 20.34.45 Quit {phoenix} (Remote host closed the connection) 20.35.21 # New commit by 03saratoga (r29870): Make the AMS bootloader prompt slightly more specific. 20.36.59 Quit sideral (Ping timeout: 248 seconds) 20.38.29 Join {phoenix} [0] (~dirk@p5DF2CF76.dip.t-dialin.net) 20.38.59 # r29870 build result: 0 errors, 34 warnings (saratoga committed) 20.41.46 Join saratoga [0] (9803c6dd@gateway/web/freenode/ip.152.3.198.221) 20.44.26 # Buschel: how did you measure memory use in libfaad? 20.44.35 # do we have a tool for that? 20.45.42 Join Strife89 [0] (~Strife89@207.144.201.128) 20.47.32 # saratoga: I used tools/codecscan.pl 20.47.39 # ah thanks 20.47.43 # New commit by 03Buschel (r29871): Fix several 'variable set but not used' warnings reported by GCC 6.4.1. 20.50.55 # saratoga: it is interestin to see the IRAM usage of the different codecs. several codecs do not really make use of the available IRAM yet 20.50.58 # r29871 build result: 0 errors, 18 warnings (Buschel committed) 20.53.31 # oh wow just noticed your chart 20.53.32 # SPC needs more IRAM! 20.54.22 # yes, and several codecs would fully fit into IRAM 20.54.30 # half of them would on the Video 20.55.14 # weird that preglow added support for using the coprocessor on PP to SPC, but did not see fit to use IRAM 20.55.20 # yes, for all PP5022/PP5024/S5L870x. not sure about the AS-CPU's 20.55.32 # the AS CPUs always use IRAM for everything 20.55.39 # ah, ok 20.55.42 # BSS is in IRAM 20.55.52 # but its not really any faster then normal RAM 20.55.59 # or only a little faster 20.56.34 Quit soap (Read error: Operation timed out) 20.56.35 Join krazykit [0] (~krazykit@99-126-205-52.lightspeed.cicril.sbcglobal.net) 21.02.37 Join soap [0] (~soap@cpe-76-181-78-156.columbus.res.rr.com) 21.02.37 Quit soap (Changing host) 21.02.37 Join soap [0] (~soap@rockbox/staff/soap) 21.06.05 # New commit by 03Buschel (r29872): Fix further 'set but not used' warnings. 21.06.39 # I am not sure about the residual warnings... 21.09.31 # r29872 build result: 0 errors, 63 warnings (Buschel committed) 21.10.28 # * Buschel slaps his forehead 21.11.18 Quit Jerom1 (Read error: Connection reset by peer) 21.15.35 Quit antil33t (Remote host closed the connection) 21.15.45 Join antil33t [0] (antil33t@124-197-51-80.callplus.net.nz) 21.17.15 Join Jerom1 [0] (~jerome@95.171.148.84) 21.19.38 Quit Stummi (Quit: Leaving...) 21.20.44 Join jhMikeS [0] (~jethead71@rockbox/developer/jhMikeS) 21.22.55 Join t0rc [0] (~t0rc@unaffiliated/t0rc/x-5233201) 21.23.28 # New commit by 03Buschel (r29873): Fix even more 'set but not used' warnings and a regression. 21.23.39 # * Buschel hopes for only 3 warnings left 21.27.05 # r29873 build result: All green 21.28.32 # hmm, storebror-daniel did not build... there should be still 3 warnings left on this machine 21.34.12 # New commit by 03Buschel (r29874): Fix another 'set but not used' warning. 21.35.02 # huh? preglow did not add CP support to SPC! but if you want to blame him for it then that's ok. 21.37.32 # r29874 build result: All green 21.40.19 # New commit by 03Buschel (r29875): Fix last known 'set but not used' warning by GCC 4.6.1. 21.41.22 # * pamaury waits to be sure Buschel fixed all warnings 21.42.04 # saratoga: as I recall there wasn't enough IRAM on all targets to build it with much more 21.42.09 # * Buschel crosses fingers he did not introduce a new warning ;) 21.43.37 # r29875 build result: All green 21.43.54 # no? 21.48.28 Quit Jerom1 (Remote host closed the connection) 21.49.31 Join Jerom1 [0] (~jerome@95.171.148.84) 21.52.03 # EPCMBUFFER (was: EPLAYBACKENGINE) 22.00.03 Quit benedikt93 (Quit: The quality of my life is going straight up now that i have a shotgun.) 22.05.06 Join Keripo1 [0] (~Keripo@69.9.73.113) 22.06.35 Quit Keripo (Ping timeout: 248 seconds) 22.11.48 *** Saving seen data "./dancer.seen" 22.12.14 Join ricemark20 [0] (~mark@99-20-182-188.lightspeed.elgnil.sbcglobal.net) 22.14.32 Quit ricemark20 (Remote host closed the connection) 22.15.03 Join ricemark20 [0] (~mark@99-20-182-188.lightspeed.elgnil.sbcglobal.net) 22.29.29 Join sideral [0] (~sideral@213.165.85.248) 22.29.29 Quit sideral (Changing host) 22.29.29 Join sideral [0] (~sideral@rockbox/developer/sideral) 22.33.37 Quit ricemark20 (Remote host closed the connection) 22.34.06 Join ricemark20 [0] (~mark@99-20-182-188.lightspeed.elgnil.sbcglobal.net) 22.34.35 Quit ricemark20 (Remote host closed the connection) 22.35.03 Join ricemark20 [0] (~mark@99-20-182-188.lightspeed.elgnil.sbcglobal.net) 22.36.32 Quit ricemark20 (Remote host closed the connection) 22.43.35 Quit bertrik (Read error: Connection timed out) 22.44.08 Join bertrik [0] (~bertrik@rockbox/developer/bertrik) 22.49.31 Quit Jerom1 (Quit: Leaving.) 22.52.18 Quit stoffel (Remote host closed the connection) 23.02.56 # saratoga: can you give http://pastie.org/1898243 a try? this should move the main data of spc to IRAM. 23.02.56 # and: do you have a sample at hand? 23.04.11 Quit ReimuHakurei (Ping timeout: 248 seconds) 23.07.23 Quit bluebrother (Disconnected by services) 23.07.52 Join bluebroth3r [0] (~dom@rockbox/developer/bluebrother) 23.10.38 DEBUG EOF from server (Connection reset by peer) (snapshot: netstuff.c line 545) 23.10.38 *** Cleanup 23.10.38 *** Cleanup 23.10.38 *** Saving seen data "./dancer.seen" 23.10.38 *** Exit 23.10.40 *** Started Dancer V4.16 23.10.40 *** Connected to irc.freenode.net on port 6667 23.10.40 *** Logfile for #rockbox started 23.10.41 Mode "logbot_ :+i" by logbot_ 23.10.45 *** Server message 501: 'logbot_ :Unknown MODE flag' 23.10.45 Join logbot_ [0] (~rockbox@giant.haxx.se) 23.10.45 Join bluebroth3r [0] (~dom@rockbox/developer/bluebrother) 23.10.45 Join bertrik [0] (~bertrik@rockbox/developer/bertrik) 23.10.45 Join sideral [0] (~sideral@rockbox/developer/sideral) 23.10.45 Join Keripo1 [0] (~Keripo@69.9.73.113) 23.10.45 Join t0rc [0] (~t0rc@unaffiliated/t0rc/x-5233201) 23.10.45 Join jhMikeS [0] (~jethead71@rockbox/developer/jhMikeS) 23.10.45 Join antil33t [0] (antil33t@124-197-51-80.callplus.net.nz) 23.10.45 Join soap [0] (~soap@rockbox/staff/soap) 23.10.45 Join krazykit [0] (~krazykit@99-126-205-52.lightspeed.cicril.sbcglobal.net) 23.10.45 Join Strife89 [0] (~Strife89@207.144.201.128) 23.10.45 Join saratoga [0] (9803c6dd@gateway/web/freenode/ip.152.3.198.221) 23.10.45 Join {phoenix} [0] (~dirk@p5DF2CF76.dip.t-dialin.net) 23.10.45 Join balintx [0] (~quassel@szerver1.gulyasp-koll.sulinet.hu) 23.10.45 Join Buschel [0] (~chatzilla@p54A3BACE.dip.t-dialin.net) 23.10.45 Join Horscht [0] (~Horscht@xbmc/user/horscht) 23.10.45 Join mudd1 [0] (~cmertes@ip-78-94-202-227.unitymediagroup.de) 23.10.45 Join ender| [0] (krneki@foo.eternallybored.org) 23.10.45 Join GeekShadow [0] (~Antoine@reactos/tester/GeekShadow) 23.10.45 Join kugel [0] (~kugel@rockbox/developer/kugel) 23.10.45 Join rdd [0] (~user@c83-250-52-16.bredband.comhem.se) 23.10.45 Join MethoS- [0] (~clemens@134.102.106.250) 23.10.45 Join Elfish [0] (amba@2a01:4f8:100:90a1:abc:abc:abc:abc) 23.10.45 Join domonoky [0] (~Domonoky@rockbox/developer/domonoky) 23.10.45 Join Topy [0] (~Topy44@f049048141.adsl.alicedsl.de) 23.10.45 Join Rob2222 [0] (~Miranda@p5DE4B99E.dip.t-dialin.net) 23.10.45 Join sasquatch [0] (~username@p4FF2CF3E.dip.t-dialin.net) 23.10.45 Join shai [0] (~Shai@l192-117-110-233.cable.actcom.net.il) 23.10.45 Join robin0800 [0] (~robin0800@cpc3-brig8-0-0-cust703.3-3.cable.virginmedia.com) 23.10.45 Join slooopy [0] (~sloo@95-90-30-123-dynip.superkabel.de) 23.10.45 Join keyb_gr [0] (~chatzilla@p5080C2C3.dip.t-dialin.net) 23.10.45 Join Bagder [0] (~daniel@rockbox/developer/bagder) 23.10.45 Join kerobaros [0] (~kerobaros@75-132-19-83.dhcp.stls.mo.charter.com) 23.10.45 Join [fred] [0] (fred@ircop.efnet.at) 23.10.45 Join pamaury [0] (~quassel@rockbox/developer/pamaury) 23.10.45 Join silbo_ [0] (~quassel@193.40.244.204) 23.10.45 Join efyx [0] (~efyx@lap34-1-82-225-185-146.fbx.proxad.net) 23.10.45 Join Judas_PhD [0] (~kevin@misterfluffy.dsl.xmission.com) 23.10.45 Join mystica555 [0] (~Mike@71-33-152-71.hlrn.qwest.net) 23.10.45 Join mystica555_ [0] (~mike@71-33-152-71.hlrn.qwest.net) 23.10.45 Join crwll [0] (~crwlll@dsl-jklbrasgw1-fe8edf00-29.dhcp.inet.fi) 23.10.45 Join ender` [0] (krneki@foo.eternallybored.org) 23.10.45 Join bieber [0] (~quassel@162-78.97-97.tampabay.res.rr.com) 23.10.45 Join pjm0616 [0] (~user@110.8.235.86) 23.10.45 Join [Saint] [0] (~st.lasciv@124-197-3-117.callplus.net.nz) 23.10.45 Join Galois [0] (djao@efnet-math.org) 23.10.45 Join amiconn [0] (quassel@rockbox/developer/amiconn) 23.10.45 Join pixelma [0] (quassel@rockbox/staff/pixelma) 23.10.45 Join froggyman [0] (~seth@unaffiliated/froggyman) 23.10.45 Join TBCOOL [0] (~tb@c-3c3671d5.09-42-73746f22.cust.bredbandsbolaget.se) 23.10.45 Join knittl [0] (~knittl@unaffiliated/knittl) 23.10.45 Join cjcopi [0] (~craig@charon.craig.copi.org) 23.10.45 Join bluefoxx [0] (fuzzylomba@S0106485b3917092d.vs.shawcable.net) 23.10.45 Join Xerion [0] (~xerion@5419A078.cm-5-2c.dynamic.ziggo.nl) 23.10.45 Join fyre^OS [0] (~nnscript@cpe-24-90-84-81.nyc.res.rr.com) 23.10.45 Join [7] [0] (~TheSeven@rockbox/developer/TheSeven) 23.10.45 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019) 23.10.45 Join user890104 [0] (Venci@venci-notebook-lan.ipv6.6bez10.info) 23.10.45 Join CIA-16 [0] (cia@cia.atheme.org) 23.10.45 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739) 23.10.45 Join alexbobp [0] (~alex@209.135.10.128) 23.10.45 Join AlexP [0] (~alex@rockbox/staff/AlexP) 23.10.45 Join eGen_ [0] (generat0r@gate.mmdecin.cz) 23.10.45 Join JesusChrysler [0] (~JesusChry@c-69-253-15-232.hsd1.pa.comcast.net) 23.10.45 Join ps-auxw [0] (~arneb@2001:470:c807:0:1532:4e5f:2ad3:4123) 23.10.45 Join timccc [0] (~lisa@112.166.15.141) 23.10.45 Join tchan [0] (~tchan@lunar-linux/developer/tchan) 23.10.45 Join simonlnu [0] (simon@unaffiliated/simonrvn) 23.10.45 Join evilnick_B [0] (0c140464@rockbox/staff/evilnick) 23.10.45 Join logvelc [0] (~erik@elbereth.midgard.liu.se) 23.10.45 Join bthomson [0] (~bthomson@pool-71-114-64-197.washdc.dsl-w.verizon.net) 23.10.45 Join boghog [0] (~aphax@5357BAFA.cm-6-8c.dynamic.ziggo.nl) 23.10.45 Join Zambezi [0] (Zulu@unaffiliated/zambezi) 23.10.45 Join niekie [0] (~niek@CAcert/Assurer/niekie) 23.10.45 Join linuxguy3 [0] (~timj@adsl-76-203-21-187.dsl.emhril.sbcglobal.net) 23.10.45 Join gevaerts [0] (~fg@rockbox/developer/gevaerts) 23.10.45 Join z35 [0] (~z35@ool-18bdad71.dyn.optonline.net) 23.10.45 Join markun [0] (~markun@rockbox/developer/markun) 23.10.45 Join bzed [0] (~bzed@devel.recluse.de) 23.10.45 Join guymann [0] (~charles@66-159-175-228.adsl.snet.net) 23.10.45 Join sinthetek [0] (~sinthetek@unaffiliated/sinthetek) 23.10.45 Join Vimk [0] (~Vimk@fireslash.net) 23.10.45 Join jepler [0] (~jepler@emc/developer/pdpc.professional.jepler) 23.10.45 Join FoH [0] (~foh@adsl-98-71-69-27.bhm.bellsouth.net) 23.10.45 Join merbanan [0] (~banan@c-94-255-221-202.cust.bredband2.com) 23.10.45 Join GodEater [0] (~bibble@rockbox/staff/GodEater) 23.10.45 Join jordan` [0] (~gromit@ALagny-154-1-6-54.w83-112.abo.wanadoo.fr) 23.10.45 Join Staphylo [0] (staphylo@hyperion.epimeros.org) 23.10.45 Join n17ikh [0] (~n17ikh@c-68-59-25-51.hsd1.sc.comcast.net) 23.10.45 Join scorche|sh [0] (~scorche@squisch.net) 23.10.45 Join plux [0] (~yogurt@h-34-156.A238.priv.bahnhof.se) 23.10.45 Join Beta2K [0] (~Beta2K@d24-36-131-14.home1.cgocable.net) 23.10.45 Join Unhelpful [0] (~quassel@rockbox/developer/Unhelpful) 23.10.45 Join yosafbridge [0] (~yosafbrid@li125-242.members.linode.com) 23.10.45 Join Slasheri [0] (miipekk@rockbox/developer/Slasheri) 23.10.45 Join rasher [0] (~rasher@rockbox/developer/rasher) 23.10.45 Join FOAD [0] (~dok@83.161.135.61) 23.10.45 Join Guinness [0] (Slayer@c-68-55-111-159.hsd1.va.comcast.net) 23.10.45 Join martii [0] (martii@sokrates.mimuw.edu.pl) 23.10.45 Join scorche [0] (~scorche@rockbox/administrator/scorche) 23.10.45 Join simabeis [0] (~simabeis@lobmenschen.de) 23.10.45 Join Utchy [0] (~Utchy@rps6752.ovh.net) 23.10.45 Join dionoea [0] (~dionoea@videolan/developer/dionoea) 23.10.45 Join Torne [0] (~torne@rockbox/developer/Torne) 23.10.45 Join ThomasAH [0] (~thomas@aktaia.intevation.org) 23.10.45 Join parafin [0] (parafin@paraf.in) 23.10.45 Join maraz_ [0] (maraz@kapsi.fi) 23.10.45 Join tguinot [0] (~tguinot@ks22840.kimsufi.com) 23.10.45 Join YPSY [0] (~ypsy@geekpadawan.de) 23.10.45 Join jfc [0] (~john@pool-72-73-80-12.ptldme.east.myfairpoint.net) 23.10.45 Join zu [0] (~zu@ks355000.kimsufi.com) 23.10.45 Join Rondom [0] (~rondom@2a01:488:66:1000:b24d:4f2f:0:1) 23.10.45 Join linuxstb [0] (~linuxstb@rockbox/developer/linuxstb) 23.10.45 Join jae [0] (~jae@dedicated.jaerhard.com) 23.10.45 Join Barahir [0] (~jonathan@fb08schindler24.anorg.chemie.uni-giessen.de) 23.10.45 Join JdGordon [0] (~jonno@rockbox/developer/JdGordon) 23.10.45 Join pikytcus [0] (~bigd@failbox.co.cc) 23.10.45 Join kkit|sh [0] (~kkit@li135-248.members.linode.com) 23.10.45 Join feisar-_ [0] (jljhook@ihq.in) 23.10.45 Join ack` [0] (~ack@mingbai.org) 23.10.45 Join literal [0] (hinrik@w.nix.is) 23.10.45 Join Farthen [0] (~Farthen@static.225.178.40.188.clients.your-server.de) 23.10.45 Join ved [0] (ved@ddsbox.co.cc) 23.10.45 Join Hadaka [0] (~naked@naked.iki.fi) 23.10.45 Join ranmachan [0] (ranma@yumi.tdiedrich.de) 23.10.45 Join @ChanServ [0] (ChanServ@services.) 23.13.00 Join Keripo [0] (~Keripo@CPE0022b0d4bdb7-CM001a6680d4fe.cpe.net.cable.rogers.com) 23.14.05 # with buflib we could possibly allocate from iram dynamically, I wonder if that's wanted 23.15.39 Quit Keripo1 (Ping timeout: 258 seconds) 23.15.39 # kugel: if I remember correctly vorbis does something similar as well 23.17.23 Join Buschel_ [0] (~chatzilla@p54A3BACE.dip.t-dialin.net) 23.20.54 Quit Buschel (Ping timeout: 260 seconds) 23.21.05 Nick Buschel_ is now known as Buschel (~chatzilla@p54A3BACE.dip.t-dialin.net) 23.21.29 # Buschel: Hmmm...that won't benefit PP targets or Coldfire since they don't do gaussian, unless it's meant for AMS ones. 23.24.04 Quit t0rc (Quit: WeeChat 0.3.4) 23.24.11 # really? it moves Spc_Emu to IRAM 23.24.46 # btw, why is BRR_CACHE_SIZE that large? 23.25.20 # there is room? I think I tried that and PP5002 and MFC5249 didn't have space...it's been awhile though 23.25.42 # Ask n1s about that 23.25.57 # see the table at the bottom of this page -> http://www.rockbox.org/wiki/CodecMemoryUsage 23.26.18 # spc uses nearly *no* IRAM on iPod Video 23.26.36 # I mean hcs 23.30.00 Join wtachi [0] (~wtachi@cpe-065-190-001-228.nc.res.rr.com) 23.49.53 Quit evilnick_B (Ping timeout: 252 seconds) 23.54.05 # Buschel: perhaps ot would have been better to add -Wno-unused-but-set-variable to the CFLAGS for pdbox 23.56.01 Quit domonoky (Read error: Connection reset by peer) 23.58.03 Join FoolOnHill [0] (~foh@adsl-98-83-211-47.bhm.bellsouth.net)