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

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

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

#rockbox log for 2009-08-21

00:00:36 Quit explore ("Lost terminal")
00:00:38kugelI'm not asking "what", but "why is the complexity worth going with, instead of simply appending"
00:00:59 Quit killan (Read error: 54 (Connection reset by peer))
00:01:18JdGordon|its not complex at all
00:01:43*JdGordon| will give it one last try...
00:01:48BBBradleykugel: pixelma: my wps %mv command works, thanks guys!
00:03:08bluebrotherwell, the recorder8mb brings up the question if we want to continue distributing a build for a modded player. No other modded player gets a build distributed.
00:03:22JdGordon|the skins have 2 major RAM usages, the tokens and the images... the size of both are unknown at load time. there are also the other stuff (viewport structs, progressbar structs, gui_img structs, etc) all with fixed sizes that need to be loaded *during* parsing and cant move after its finished... the *only* way to do with without wasting ram is the "complex" way I've done
00:03:40 Quit BBBradley ("CGI:IRC (EOF)")
00:04:19JdGordon|tokens load as much as needed, static data gets alloced as needed, once the tokens are finished being parsed the unused ram gets dealloced and the images then get loaded to the same spot
00:04:35*JdGordon| thinks its a rather elegant and brilliant solution :D
00:04:49kugelof course you think that ;)
00:04:58 Join Rob2223 [0] (n=Miranda@p4FDCC288.dip.t-dialin.net)
00:05:09JdGordon|why of course? I'm incredibly modest!
00:05:24kugelas I would if it was my idea
00:06:12 Join fml [0] (n=4fd3c03d@gateway/web/cgi-irc/labb.contactor.se/x-kibrqafhpecdfdwf)
00:06:50 Quit domonoky (Read error: 104 (Connection reset by peer))
00:07:36fmlHello. I'm trying to apply FS #8768 and get compile errors in the lines with this code: rb->cpu_boost(true); (this is a plugin). How can it be?
00:08:23kugelJdGordon|: I'm not sure I understood that
00:08:49JdGordon|which part?
00:09:10kugelisn't everything unknown while parsing
00:09:20kugeland the size of a token is fixed, isn't it?
00:09:24stripwaxfml - what are the compile errors? (would help..)
00:09:26 Join killan [0] (n=nnscript@c-0efa70d5.06-397-67626721.cust.bredbandsbolaget.se)
00:09:29 Join GeekShadow [0] (n=Antoine@reactos/tester/GeekShadow)
00:11:21 Quit ender` (" Kiss a pair of boobs and the movie's rated R. Chop them off and it's PG-13. -- Jack Nicholson (?)")
00:11:31fmlstripwax: Sorry, sure: /src/apps/plugins/pitch.c:503: error: expected identifier before ‘;’ token
00:11:34kugeland it makes later buffer_alloc()ing hard which you planned?
00:12:01fmlstripwax: same for the line 556
00:12:01kugelnot buffer_alloc'ing a fixed size chosen by the user, but allocating the amount a theme actually needs
00:12:27kugelalso that part might be very hard either way
00:12:38pixelmastripwax: you looked into problems with shuffled playlist last time... with a build of yesterday morning I get the problem again that when resuming a playlist created with "insert shuffled" then the playlist is shifted (the resumed song is either the first song, and once it was the last, one time it was correct though - out of 5...6 tries)
00:12:59JdGordon|kugel: nothing changed with the buffer_alloc()ing.. the difference is how that allocated ram is used
00:13:14JdGordon|this is all skin buffer *only*
00:13:24stripwaxfml - what device are you compiling for? if you put #ifdef HAVE_ADJUSTABLE_CPU_FREQ on the line immediately prior and #endif on the line immediately after , does it work?
00:13:36***Saving seen data "./dancer.seen"
00:13:39stripwaxpixelma - really? sigh. someone broke it again?
00:14:07 Join PaulJam [0] (n=Paule@p54BEBFDF.dip.t-dialin.net)
00:14:12stripwaxoh wait, that's a different one. resuming an already-shuffled playlist, after stopping playback?
00:14:21pixelmayes
00:14:35stripwaxI don't recall that problem, nor fixing it :) was that bug there in previous builds also?
00:15:33pixelmaI think I have seen it beforem but sometimes it's gone and then it's back
00:15:36stripwaxthe bugs I fixed were all related to editing playlists (moving/deleting) when it had been created shuffled
00:15:38kugelJdGordon|: so why can't tokens be appanded as everything else?
00:16:04JdGordon|because we dont know how many we need to allocate.. and everything expets them as an array
00:16:05JdGordon|http://pastebin.com/m1899b692
00:16:51fmlstripwax: yes, that worked! Thanks!
00:17:13stripwaxfml cool! could you update the patch on the tracker ? :-)
00:17:22kugelI understood how it works, that's not the problem (nice figure anyway :p )
00:18:17kugelah, "everything expects them as an array", so you wanted to save the next pointer?
00:18:27JdGordon|yes
00:18:29kugeland fixing the assumptions
00:18:46JdGordon|using a linked list would have doubled the ram usage
00:19:06JdGordon|and made the display-er slower
00:19:07CIA-61New commit by zagor (r22444): Make apps/features depend on config*.h
00:19:20kugelthanks, that's the answer I wanted
00:19:34Zagorkugel: there you go
00:19:52kugelawesome
00:20:01kugelerrno.o lol :)
00:21:01Zagorit's the smallest file that does the job :)
00:21:12stripwaxpixelma - is your one already in the patch tracker? and −− important −− is it reproducible (e.g. step by step)?
00:21:26stripwaxpixelma - ^bug tracker - not patch tracker, obviously
00:21:31Zagordependencies for created sources is a delicate thing
00:22:08 Quit Rob2222 (Success)
00:22:10fmlstripwax: sure. One question though: is there a symbol I can check for to see if the player has recording capability? HAVE_RECORDING?
00:22:14kugelYoshihisa Uchida has 32 open tasks :((
00:22:51stripwaxfml - great question - there is but off the top of my head can't remember what. take a look at the config-xxx.h files?
00:22:55pixelmafml: that exists, yes
00:23:17stripwaxyeah, HAVE_RECORDING
00:23:20fmlpixelma: right answer! Next question: what is its name?
00:23:33stripwaxsee above
00:24:02 Quit jgarvey ("Leaving")
00:24:20pixelmaI was referring to HAVE_RECORDING
00:24:20stripwaxliterally −− #ifdef HAVE_RECORDING , etc
00:24:46 Quit bluebrother ("leaving")
00:25:28kugelZagor: I just notice this bug was reported http://www.rockbox.org/tracker/task/9936
00:25:34fmlOk. I'd also like to change the plugin name from "pitch" to something like "tuner" or "pitch_detector". Or anything better.
00:25:50stripwaxtuner is good
00:26:15fmlstripwax: tuner could be understood as something related to radio.
00:26:25Zagorkugel: aha that was my first idea, but $(MODELNAME) is not consistent with the names of the config-* files
00:26:35stripwaxbah, true! ok, "instrument tuner"?
00:26:41kugelit can be closed then, I think
00:26:48Zagorheh, which boris says in the comment :)
00:27:04fmlstripwax: I've already svn added the file pitch.c. How should I proceed to correctly rename it to something esle?
00:27:36fmlstripwax: it doesn't tune actually, just detects the pitch :-)
00:28:07kugelZagor: jsut config.h wouldn't have worked? it includes the config-<model>.h
00:28:30Zagorno, because config.h itself does not depend on anything since it is not a target
00:28:31MG_ManThere, now just the buttons need to be re-made
00:28:40kugelI see
00:28:54Zagorso it would have *only* depended on config.h and thus not detected changes in config-*
00:29:16stripwaxfml - if it's only added not committed, can delete and readd?
00:29:28pixelmastripwax: not sure, I haven't put it there, maybe it was reported once but closed or so. I will check and if it's not there, report it (not now though, need some sleep). It's easy to reproduce - create a playlist with "insert shuffled" on a folder, note the order, stop when it plays something else then the first song, stop, resume
00:29:48pixelmayou only need to stop once ;)
00:29:53kugelpitchbox or rockpitch, obviously ;)
00:29:56stripwaxinteresting. repro in sim also?
00:30:01JdGordon|pixelma: that sounds familiar...
00:30:01stripwaxpitchbox is actually pretty awesome
00:30:08pixelmahaven't tried
00:30:12JdGordon|rockpitchbox!
00:30:20*stripwax chokes
00:30:27JdGordon|boxpitchrocks!
00:30:41pixelmaJdGordon|: yeah, seems to be gone and then back every now and then
00:30:50JdGordon|grrrr
00:31:02fmlI named id pitch_detector for now. No boxes anymore!
00:31:31JdGordon|whats wrong with "instrument tuner"?
00:32:01 Quit GeekShadow ("The cake is a lie !")
00:32:17 Quit GeekShado_ (Read error: 104 (Connection reset by peer))
00:32:31kugelsaratoga: have you looked in any of the codecs Yoshihisa Uchida uploaded?
00:32:53fmlJdGordon: it doesn't tune, just tells you the pitch (IIUC). You're then free to tune as you like :-)
00:33:38stripwaxdoes it have cool options for different scale tunings, or just tell you the pitch of the currently played input sound?
00:34:01 Quit pamaury ("exit(*(int *)0 / 0);")
00:34:12*stripwax could just read the patch tracker entry .. one sec..
00:34:33fmlstripwax: I haven't run it yet!
00:34:49stripwaxha!
00:36:22fmlstripwax: just fixed some formalities :-)
00:37:21stripwaxso, this uses FFT - don't we already have FFT lib in rockbox plugin library , used by the spectrograph plugin?
00:37:55stripwaxFS #10065
00:38:13 Join BHSPitMonkey [0] (n=stephen@unaffiliated/bhspitmonkey)
00:38:43stripwaxoh. it's not in lib, and it's not in svn anyway. ignore me. would be good to share the code though, especially if you're committing one of these two patches already :)
00:39:28 Quit robin0800 (Read error: 104 (Connection reset by peer))
00:39:30 Quit captainkwel ("Page closed")
00:40:06kugelahh database browsing is so much faster now
00:40:11kugel(on the fuze w/ dircache)
00:40:23kugeland tc_ramcache
00:41:48JdGordon|8mb ram and you're wasting it on ramcache + dircache on aflash target?>!
00:41:57 Quit Rob2223 ()
00:42:05 Quit dfkt (Read error: 104 (Connection reset by peer))
00:42:18kugelJdGordon|: No, I don't waste
00:43:00 Join Rob2222 [0] (n=Miranda@p4FDCC288.dip.t-dialin.net)
00:43:25pixelmaso how much does dircache and database use now in your case?
00:43:35kugel~300k
00:44:10stripwaxhow big is the FAT itself in a fat32 setup? or, maybe, why does the disk totally thrash when starting up when dircache is enabled, but not thrash when buffering audio
00:45:52pixelmakugel: really, both together? I remember dircache alone needing over 500k on my 20GB M5
00:47:29bertrikthe meizu m6 display driver is coming along
00:47:55kugelpixelma: yea, remeber this is only a 2GB fuze + 4GB microsd :)
00:48:18kugelbertrik: the "scaled-down to 16bit" version?
00:48:33kugelI thought the meizu already had display working
00:48:35bertrikkugel, I haven't really decided about that yet :)
00:48:58bertrikthat was the meizu m3 (music card), not the m6 (mini player)
00:49:04kugeloh
00:49:04 Quit JdGordon| ("Miranda IM! Smaller, Faster, Easier. http://miranda-im.org")
00:49:11kugelyou have two meizus now?`
00:49:16pixelmaI expected at least an 8GB microSD and more internal memory
00:49:19kugelI guess you never come back to ams then :(
00:50:06stripwaxLooks like something like 8MB alone for the FAT on a ~60GB ipod5g . hm. could we just load it in one big go, if there is sufficient memory, and then parse the structures to build the dircache, without repeatedly seeking all over the disk?
00:50:43pixelmastripwax: are you on a 5.5G Video?
00:50:48stripwax5G.
00:50:52stripwax60GB.
00:51:09bertrikkugel, I borrowed gevaerts' m3 and I bought an m6 that is still at markun's place
00:52:18kugelyou're doing the driver without having hardware?
00:52:44bertrikyes
00:53:24*kugel really likes the custom statusbar
00:54:57stripwaxpixelma - is the 5G 60GB disk access crippled in some way due to the support for the 80GB disk hack (that I don't remember the details for, but know that there is only one build shared between both 5G 60GB and 5.5G 80GB)
00:57:30 Quit Zagor ("Clint excited")
00:59:43kugelstripwax: the build isn't shared
01:00
01:00:04stripwaxkugel - they both have 64MB
01:00:14kugelthe 5G too?
01:00:20stripwaxand the download page says "iPod Video 60/80GB"
01:00:38kugelI thought 5 vs 5.5G was the RAM and the disk capacity
01:01:00stripwaxthere is a 5G 30GB, 5G 60GB, 5.5G 30GB and 5.5G 80GB
01:01:07stripwaxthe 60GB and 80GB have 64MB
01:04:48kugelhttp://www.alice-dsl.net/simonemartitz/sb.png ;;
01:05:27kugelstripwax: I didn't know that
01:06:17stripwaxkugel - do you happen to know if the 60/80GB build has less efficient disk access than the 30GB build?
01:07:55kugelno sorry
01:08:37kugelI'd expect them to work the same
01:08:37 Quit fml ("CGI:IRC (EOF)")
01:08:59stripwaxcool.
01:09:11stripwaxpixelma - hey, so that leads to me to wonder why you asked if I was on 5.5G? :-)
01:10:49 Quit BdN3504 ("CGI:IRC (EOF)")
01:10:58pixelmajust curious and I thought I remembered something about disk "performance" with the 80GB disk. Sorry, I don't know the details
01:11:14*pixelma sleeps
01:11:32 Join JdGordon_ [0] (i=4601d3f7@gateway/web/freenode/x-svmncemobmutzdwx)
01:12:29stripwaxas long as the disk "performance" with 80GB (that I also heard of) doesn't affect the 60GB in the same unified build, I'm good
01:13:09UnhelpfulMG_Man: well, you can't center 71x71 on the screen, it'll always be off by one. but yes, any size that fits on the screen should work.
01:14:24 Join froggyman [0] (n=4845c4d1@gateway/web/cgi-irc/labb.contactor.se/x-pqtjhsqszinhcvmv)
01:16:24 Quit PaulJam (".")
01:18:56 Join z35 [0] (n=z35@ool-45701ce5.dyn.optonline.net)
01:19:18stripwaxpixelma - still can't reproduce your shuffled resume issue in sim. sorry.
01:19:30 Quit Zarggg ()
01:20:37 Quit stripwax ("http://miranda-im.org")
01:27:36 Quit Thundercloud_ (Remote closed the connection)
01:31:01 Join Hillshum [0] (n=hillshum@unaffiliated/hillshum)
01:33:58 Quit Galois (Read error: 104 (Connection reset by peer))
01:37:44 Quit JdGordon_ (Ping timeout: 180 seconds)
01:39:40 Quit martian67_ ("out")
01:40:01 Join martian67_ [0] (n=martian6@about/linux/regular/martian67)
01:53:00MG_ManDon't worry, I'm not having it centered
01:53:07MG_ManBut I put it at 72x72 anyway
01:53:19MG_ManWhen I re-did everything to avoid copyright issues
01:58:23 Part toffe82
02:00
02:00:20 Quit bertrik ("De groeten")
02:00:57 Quit Rondom (Nick collision from services.)
02:01:07 Join Rondom [0] (n=Rondom@dslb-084-057-169-066.pools.arcor-ip.net)
02:13:16 Quit AlexP_ ("No Ping reply in 90 seconds.")
02:13:39 Join AlexP [0] (n=alex@222.189.72-86.rev.gaoland.net)
02:13:41***Saving seen data "./dancer.seen"
02:15:09 Join Zarggg [0] (n=zarggg@65-78-69-194.c3-0.eas-ubr6.atw-eas.pa.cable.rcn.com)
02:16:07n1skugel: database *browsing* should not be affected by dircache at all...
02:16:25 Quit froggyman (leguin.freenode.net irc.freenode.net)
02:16:25NSplitleguin.freenode.net irc.freenode.net
02:16:25 Quit thegeek (leguin.freenode.net irc.freenode.net)
02:16:25 Quit jon-kha (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Slasheri (leguin.freenode.net irc.freenode.net)
02:16:25 Quit shodanX (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Ridayah (leguin.freenode.net irc.freenode.net)
02:16:25 Quit markdrago (leguin.freenode.net irc.freenode.net)
02:16:25 Quit kachna (leguin.freenode.net irc.freenode.net)
02:16:25 Quit n1s (leguin.freenode.net irc.freenode.net)
02:16:25 Quit rasher (leguin.freenode.net irc.freenode.net)
02:16:25 Quit tarbo_ (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Neovanglist (leguin.freenode.net irc.freenode.net)
02:16:25 Quit parafin (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Rondom (leguin.freenode.net irc.freenode.net)
02:16:25 Quit meermanr (leguin.freenode.net irc.freenode.net)
02:16:25 Quit sinthetek (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Erant (leguin.freenode.net irc.freenode.net)
02:16:25 Quit FOAD (leguin.freenode.net irc.freenode.net)
02:16:25 Quit z35 (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Rob2222 (leguin.freenode.net irc.freenode.net)
02:16:25 Quit freqmod (leguin.freenode.net irc.freenode.net)
02:16:25 Quit langzeitstudent_ (leguin.freenode.net irc.freenode.net)
02:16:25 Quit ej0rge (leguin.freenode.net irc.freenode.net)
02:16:25 Quit at0m (leguin.freenode.net irc.freenode.net)
02:16:25 Quit BlakeJohnson86 (leguin.freenode.net irc.freenode.net)
02:16:25 Quit togetic (leguin.freenode.net irc.freenode.net)
02:16:25 Quit krazykit (leguin.freenode.net irc.freenode.net)
02:16:25 Quit avacore^ (leguin.freenode.net irc.freenode.net)
02:16:25 Quit YpsyZNC (leguin.freenode.net irc.freenode.net)
02:16:25 Quit fxb__ (leguin.freenode.net irc.freenode.net)
02:16:25 Quit kugel (leguin.freenode.net irc.freenode.net)
02:16:25 Quit linuxstb (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Zambezi (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Sajber^ (leguin.freenode.net irc.freenode.net)
02:16:25 Quit alexbobp (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Zarggg (leguin.freenode.net irc.freenode.net)
02:16:25 Quit AlexP (leguin.freenode.net irc.freenode.net)
02:16:25 Quit bah_ (leguin.freenode.net irc.freenode.net)
02:16:25 Quit JohnTeddy (leguin.freenode.net irc.freenode.net)
02:16:25 Quit JdGordon (leguin.freenode.net irc.freenode.net)
02:16:25 Quit n17ikh (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Shaid (leguin.freenode.net irc.freenode.net)
02:16:25 Quit shadearg (leguin.freenode.net irc.freenode.net)
02:16:25 Quit tchan (leguin.freenode.net irc.freenode.net)
02:16:25 Quit advcomp2019_ (leguin.freenode.net irc.freenode.net)
02:16:25 Quit DataGhost (leguin.freenode.net irc.freenode.net)
02:16:25 Quit redfox (leguin.freenode.net irc.freenode.net)
02:16:25 Quit scorche|sh (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Guest34014 (leguin.freenode.net irc.freenode.net)
02:16:25 Quit jhulst (leguin.freenode.net irc.freenode.net)
02:16:25 Quit CIA-61 (leguin.freenode.net irc.freenode.net)
02:16:25 Quit tvelocity[away] (leguin.freenode.net irc.freenode.net)
02:16:25 Quit goffa_ (leguin.freenode.net irc.freenode.net)
02:16:25 Quit antil33t (leguin.freenode.net irc.freenode.net)
02:16:25 Quit bittin_ (leguin.freenode.net irc.freenode.net)
02:16:25 Quit soap (leguin.freenode.net irc.freenode.net)
02:16:25 Quit webmind (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Overand (leguin.freenode.net irc.freenode.net)
02:16:25 Quit Horscht (leguin.freenode.net irc.freenode.net)
02:16:25 Quit jfc (leguin.freenode.net irc.freenode.net)
02:16:29 Quit kkurbjun (leguin.freenode.net irc.freenode.net)
02:16:29 Quit HellDragon (leguin.freenode.net irc.freenode.net)
02:16:29 Quit efyx (leguin.freenode.net irc.freenode.net)
02:16:29 Quit trisiak (leguin.freenode.net irc.freenode.net)
02:16:29 Quit lyngaas (leguin.freenode.net irc.freenode.net)
02:16:29 Quit yosafbridge (leguin.freenode.net irc.freenode.net)
02:16:29 Quit Tristan53 (leguin.freenode.net irc.freenode.net)
02:16:29 Quit jordan`` (leguin.freenode.net irc.freenode.net)
02:16:29 Quit mt (leguin.freenode.net irc.freenode.net)
02:16:29 Quit Hillshum (leguin.freenode.net irc.freenode.net)
02:16:29 Quit Res1 (leguin.freenode.net irc.freenode.net)
02:16:29 Quit Torne (leguin.freenode.net irc.freenode.net)
02:16:29 Quit bzed (leguin.freenode.net irc.freenode.net)
02:16:29 Quit courtc (leguin.freenode.net irc.freenode.net)
02:16:29 Quit ChanServ (leguin.freenode.net irc.freenode.net)
02:16:29 Quit pixelma (leguin.freenode.net irc.freenode.net)
02:16:29 Quit amiconn (leguin.freenode.net irc.freenode.net)
02:16:29 Quit cg_ (leguin.freenode.net irc.freenode.net)
02:16:29 Quit sbhsu (leguin.freenode.net irc.freenode.net)
02:16:29 Quit lostlogic (leguin.freenode.net irc.freenode.net)
02:16:29 Quit gevaerts (leguin.freenode.net irc.freenode.net)
02:16:29 Quit intrados_ (leguin.freenode.net irc.freenode.net)
02:16:29 Quit rwong (leguin.freenode.net irc.freenode.net)
02:16:29 Quit Kopfgeldjaeger (leguin.freenode.net irc.freenode.net)
02:16:29 Quit killan (leguin.freenode.net irc.freenode.net)
02:16:29 Quit gtkspert_ (leguin.freenode.net irc.freenode.net)
02:16:29 Quit preglow (leguin.freenode.net irc.freenode.net)
02:16:29 Quit obo_ (leguin.freenode.net irc.freenode.net)
02:16:29 Quit Unhelpful (leguin.freenode.net irc.freenode.net)
02:16:29 Quit mortti_ (leguin.freenode.net irc.freenode.net)
02:16:29 Quit dionoea (leguin.freenode.net irc.freenode.net)
02:16:29 Quit gibbon_ (leguin.freenode.net irc.freenode.net)
02:16:29 Quit rphillips (leguin.freenode.net irc.freenode.net)
02:16:29 Quit Dhraakellian (leguin.freenode.net irc.freenode.net)
02:16:29 Quit jvd (leguin.freenode.net irc.freenode.net)
02:16:29 Quit kadoban (leguin.freenode.net irc.freenode.net)
02:16:29 Quit AfterDeath (leguin.freenode.net irc.freenode.net)
02:16:29 Quit markun (leguin.freenode.net irc.freenode.net)
02:16:29 Quit martian67_ (leguin.freenode.net irc.freenode.net)
02:16:29 Quit suom1 (leguin.freenode.net irc.freenode.net)
02:16:29 Quit AndyI (leguin.freenode.net irc.freenode.net)
02:16:29 Quit J-23 (leguin.freenode.net irc.freenode.net)
02:16:29 Quit gurnarok (leguin.freenode.net irc.freenode.net)
02:16:29 Quit linuxguy3 (leguin.freenode.net irc.freenode.net)
02:16:29 Quit Kohlrabi (leguin.freenode.net irc.freenode.net)
02:16:29 Quit crashd_ (leguin.freenode.net irc.freenode.net)
02:16:29 Quit elcan (leguin.freenode.net irc.freenode.net)
02:16:29 Quit maraz (leguin.freenode.net irc.freenode.net)
02:16:29 Quit n17ikh|Server (leguin.freenode.net irc.freenode.net)
02:16:29 Quit Lss (leguin.freenode.net irc.freenode.net)
02:16:29 Quit blithe_ (leguin.freenode.net irc.freenode.net)
02:16:29 Quit daurn| (leguin.freenode.net irc.freenode.net)
02:16:29 Quit Beta2K (leguin.freenode.net irc.freenode.net)
02:16:29 Quit GodEater (leguin.freenode.net irc.freenode.net)
02:16:29 Quit saratoga (leguin.freenode.net irc.freenode.net)
02:16:29 Quit BHSPitMonkey (leguin.freenode.net irc.freenode.net)
02:16:29 Quit MG_Man (leguin.freenode.net irc.freenode.net)
02:16:29 Quit Necos_ (leguin.freenode.net irc.freenode.net)
02:16:30 Quit crwl (leguin.freenode.net irc.freenode.net)
02:16:30 Quit evilnick_home (leguin.freenode.net irc.freenode.net)
02:16:30 Quit Hadaka (leguin.freenode.net irc.freenode.net)
02:16:30 Quit ch4os (leguin.freenode.net irc.freenode.net)
02:16:30 Quit rvvs89 (leguin.freenode.net irc.freenode.net)
02:16:30 Quit Bagder (leguin.freenode.net irc.freenode.net)
02:16:30 Quit Tuplanolla (leguin.freenode.net irc.freenode.net)
02:16:30 Quit AB3JU (leguin.freenode.net irc.freenode.net)
02:16:30 Quit fred_2 (leguin.freenode.net irc.freenode.net)
02:16:30 Quit r00s (leguin.freenode.net irc.freenode.net)
02:52:39NHeal(timeout) leguin.freenode.net irc.freenode.net
04:00
04:13:45***Saving seen data "./dancer.seen"
04:48:28 Join ChanServ [0] (ChanServ@services.)
04:48:28 Join Strife89 [0] (n=michael@adsl-250-70-225.mcn.bellsouth.net)
04:48:28 Join Galois [0] (i=djao@efnet.math.uwaterloo.ca)
04:48:28 Join n17ikh [0] (n=n17ikh@host-69-59-126-212.nctv.com)
04:48:28 Join n17ikh|Server [0] (n=n17ikh@host-69-59-126-212.nctv.com)
04:48:28 Join fdinel [0] (n=Miranda@modemcable204.232-203-24.mc.videotron.ca)
04:48:28 Join langzeitstudent_ [0] (n=langzeit@p5B17EAA4.dip.t-dialin.net)
04:48:28 Join timc [0] (n=aoeu@60.21.37.28)
04:48:28 Join intrados_ [0] (n=intrados@cpe-71-67-138-190.woh.res.rr.com)
04:48:28 Join CaptainKwel [0] (n=jason@207-237-172-77.c3-0.nyr-ubr4.nyr.ny.cable.rcn.com)
04:48:28 Join Slasheri [0] (i=miipekk@rockbox/developer/Slasheri)
04:48:28 Join jon-kha [0] (i=jon-kha@kahvi.eu.org)
04:48:28 Join rasher [50] (n=rasher@rockbox/developer/rasher)
04:48:28 Join tarbo_ [0] (n=me@unaffiliated/tarbo)
04:48:28 Join Ridayah [0] (n=ridayah@173-19-110-59.client.mchsi.com)
04:48:28 Join markdrago [0] (n=mdrago@24.186.158.92)
04:48:28 Join kachna [0] (n=kachna@84.42.177.178)
04:48:28 Join shodanX [0] (n=shodanX@131.188.49.35)
04:48:28 Join Neovanglist [0] (i=Neovangl@69.31.129.33)
04:48:28 Join thegeek [0] (n=nnscript@s243b.studby.ntnu.no)
04:48:28 Join Zarggg [0] (n=zarggg@65-78-69-194.c3-0.eas-ubr6.atw-eas.pa.cable.rcn.com)
04:48:28 Join AlexP [0] (n=alex@rockbox/staff/AlexP)
04:48:28 Join Rondom [0] (n=Rondom@dslb-084-057-169-066.pools.arcor-ip.net)
04:48:28 Join Hillshum [0] (n=hillshum@unaffiliated/hillshum)
04:48:28 Join z35 [0] (n=z35@ool-45701ce5.dyn.optonline.net)
04:48:28 Join Rob2222 [0] (n=Miranda@p4FDCC288.dip.t-dialin.net)
04:48:28 Join BHSPitMonkey [0] (n=stephen@unaffiliated/bhspitmonkey)
04:48:28 Join killan [0] (n=nnscript@c-0efa70d5.06-397-67626721.cust.bredbandsbolaget.se)
04:48:28 Join freqmod [0] (i=quasselg@dhcp208-240.ed.ntnu.no)
04:48:28 Join gurnarok [0] (n=nnscript@dsl-tkubrasgw1-fe19fa00-228.dhcp.inet.fi)
04:48:28 Join AndyI [0] (i=AndyI@212.14.205.32)
04:48:28 Join Horscht [0] (n=Horscht2@xbmc/user/horscht)
04:48:28 Join pixelma [0] (i=quassel@rockbox/staff/pixelma)
04:48:28 Join amiconn [0] (i=quassel@rockbox/developer/amiconn)
04:48:28 Join Erant [0] (i=erant@plz.stfu.kthnx.org)
04:48:28 Join meermanr [0] (n=meermanr@robmeerman.co.uk)
04:48:28 Join FOAD [0] (n=dok@dinah.blub.net)
04:48:28 Join sinthetek [0] (n=sinthete@cpe-075-183-051-184.triad.res.rr.com)
04:48:28 Join parafin [0] (i=parafin@paraf.in)
04:48:28 Join J-23 [0] (n=zelazko@unix.net.pl)
04:48:28 Join MG_Man [0] (n=MGMan@97.101.208.11)
04:48:28 Join jfc [0] (n=john@dpc6682208002.direcpc.com)
04:48:28 Join Lss [0] (n=Lss@cm44.delta97.maxonline.com.sg)
04:48:28 Join antil33t [0] (n=Mudkips@119.224.12.185)
04:48:28 Join fxb__ [0] (n=felixbru@h1252615.stratoserver.net)
04:48:28 Join Zambezi [0] (i=Zulu@bnc.fran.dotbnc.se)
04:48:28 Join krazykit [0] (n=kkit@c-24-218-166-241.hsd1.ma.comcast.net)
04:48:28 Join at0m [0] (n=at0m@94-225-90-23.access.telenet.be)
04:48:28Mode"#rockbox +o ChanServ " by irc.freenode.net
04:48:28 Join alexbobp [0] (n=alex@adsl-75-34-100-218.dsl.austtx.sbcglobal.net)
04:48:28 Join ej0rge [0] (n=alhaz@alhaz.fttp.xmission.com)
04:48:28 Join linuxstb [0] (n=linuxstb@rockbox/developer/linuxstb)
04:48:28 Join avacore^ [0] (i=nobody@1008ds1-rdo.0.fullrate.dk)
04:48:28 Join YpsyZNC [0] (n=ypsy@geekpadawan.de)
04:48:28 Join togetic [0] (n=togetic@unaffiliated/ibuffy)
04:48:28 Join BlakeJohnson86 [0] (n=bjohnson@c-24-118-162-123.hsd1.mn.comcast.net)
04:48:28 Join Sajber^ [0] (n=Sajber@h-142-120.A213.priv.bahnhof.se)
04:48:28 Join redfox [0] (n=redfox2@ns351996.ovh.net)
04:48:28 Join shadearg [0] (i=arg@ipv4.panoptix.net)
04:48:28 Join tchan [0] (n=tchan@lunar-linux/developer/tchan)
04:48:28 Join Shaid [0] (i=adam@lurking.shaid.net)
04:48:28 Join bah_ [0] (n=bah@c-76-105-203-173.hsd1.wa.comcast.net)
04:48:28 Join DataGhost [0] (i=dataghos@unaffiliated/dataghost)
04:48:28 Join JdGordon [0] (n=jonno@rockbox/developer/JdGordon)
04:48:28 Join advcomp2019_ [0] (n=advcomp2@unaffiliated/advcomp2019)
04:48:28 Join JohnTeddy [0] (i=unstable@glitchinthe.net)
04:48:28 Join jhulst [0] (n=jhulst@jhulst.com)
04:48:28 Join CIA-61 [0] (n=CIA@208.69.182.149)
04:48:28 Join scorche|sh [50] (n=scorche@rockbox/administrator/scorche)
04:48:28 Join Guest34014 [0] (i=jljhook@irkki.fi)
04:48:28 Join bittin_ [0] (i=bittin@anapnea.net)
04:48:28 Join goffa_ [0] (n=goffa@216.220.23.105)
04:48:28 Join soap [50] (n=soap@rockbox/staff/soap)
04:48:28 Join Overand [0] (i=overand@crappy.domain.name)
04:48:28 Join webmind [0] (n=webmind@shell.puscii.nl)
04:48:28 Join jordan`` [0] (i=gromit@78.235.252.137)
04:48:28 Join Res1 [0] (n=Res@user-0c6s6hp.cable.mindspring.com)
04:48:28 Join lyngaas [0] (n=staale@19.81-167-149.customer.lyse.net)
04:48:28 Join Tristan53 [0] (i=tristan@66.252.24.153)
04:48:28 Join courtc [0] (n=court@unaffiliated/courtc)
04:48:28 Join yosafbridge [0] (n=yosafbri@ludios.net)
04:48:28 Join Torne [0] (i=torne@lowell.wolfpuppy.org.uk)
04:48:28 Join trisiak [0] (n=tree@chello089076201062.chello.pl)
04:48:28 Join kkurbjun [0] (n=kkurbjun@rockbox/developer/kkurbjun)
04:48:28 Join HellDragon [0] (i=jd@Wikipedia/HellDragon)
04:48:28 Join bzed [0] (n=bzed@devel.recluse.de)
04:48:28 Join jvd [0] (i=syscrash@poipu/developer/syscrash)
04:48:28 Join Necos_ [0] (i=1001@cpe-76-169-21-84.socal.res.rr.com)
04:48:28 Join crashd_ [0] (i=foobar@lostnode.org)
04:48:28 Join gevaerts [0] (n=fg@rockbox/developer/gevaerts)
04:48:28 Join gtkspert_ [0] (n=gtkspert@203-206-63-2.dyn.iinet.net.au)
04:48:28 Join rwong [0] (n=ricky@www.roflwaffle.com)
04:48:28 Join lostlogic [50] (n=lostlogi@rockbox/developer/lostlogic)
04:48:28 Join sbhsu [0] (n=a6530466@Zion.dorm.au.edu.tw)
04:48:28 Join cg_ [0] (n=cromos@cable-kmi-fe71de00-186.dhcp.inet.fi)
04:48:28 Join Kopfgeldjaeger [0] (n=nicolai@monitor-mode-enabled-on-mon0.phy0.de)
04:48:28Mode"#rockbox +v CIA-61 " by irc.freenode.net
04:48:28 Join AB3JU [0] (n=dz@alt.dissonance.nl)
04:48:28 Join Bagder [241] (n=daniel@rockbox/developer/bagder)
04:48:28 Join daurn| [0] (n=daurnima@ppp121-44-198-241.lns10.mel4.internode.on.net)
04:48:28 Join ch4os [0] (n=ch4os@gentoo/user/ch4os)
04:48:28 Join saratoga [0] (i=9803c6dd@gateway/web/freenode/x-wwscknztftzrcfcf)
04:48:28 Join suom1 [0] (i=markus@viitamaki.net)
04:48:28 Join Dhraakellian [0] (n=ntryon@cpe-72-226-197-191.rochester.res.rr.com)
04:48:28 Join elcan [0] (i=user36@massdeop.us)
04:48:28 Join Unhelpful [0] (n=quassel@rockbox/developer/Unhelpful)
04:48:28 Join Kohlrabi [0] (n=Kohlrabi@frustrum.nosebud.de)
04:48:28 Join obo_ [0] (n=obo@rockbox/developer/obo)
04:48:28 Join evilnick_home [0] (n=evilnick@pool-173-52-149-141.nycmny.east.verizon.net)
04:48:28 Join kadoban [0] (n=mud@cpe-24-93-17-195.rochester.res.rr.com)
04:48:28 Join Tuplanolla [0] (n=jani@unaffiliated/tuplanolla)
04:48:28 Join Hadaka [0] (n=naked@naked.iki.fi)
04:48:28 Join markun [50] (n=markun@rockbox/developer/markun)
04:48:28 Join crwl [0] (n=crawlie@a91-156-100-168.elisa-laajakaista.fi)
04:48:28 Join AfterDeath [0] (n=icxcnika@freenode/weird-exception/network-troll/afterdeath)
04:48:28 Join GodEater [0] (n=bibble@rockbox/staff/GodEater)
04:48:28 Join mortti_ [0] (i=mortti@beer.modeemi.cs.tut.fi)
04:48:28 Join fred_2 [0] (i=fred@hpc-cluster.hamburgnet.de)
04:48:28 Join dionoea [0] (n=dionoea@videolan/developer/dionoea)
04:48:28 Join gibbon_ [0] (i=gibbon_@could.become.a.servant4you.org)
04:48:28 Join rphillips [0] (n=rphillip@unaffiliated/rphillips)
04:48:28 Join preglow [0] (i=thomj@tvilling2.pvv.ntnu.no)
04:48:28 Join blithe_ [0] (n=blithe@blakesmith.me)
04:48:28 Join maraz [0] (i=maraz@xob.kapsi.fi)
04:48:28 Join linuxguy3 [0] (n=timj@adsl-68-253-209-176.dsl.emhril.ameritech.net)
04:48:28 Join Beta2K [0] (n=beta@d24-36-68-97.home1.cgocable.net)
04:48:28 Join rvvs89 [0] (n=ivo@pdpc/supporter/base/rvvs89)
04:48:28 Join r00s [0] (n=ru@zentrale.profitables.biz)
04:48:49MG_ManLOGBOT!
04:48:49MG_ManHow we missed you
04:48:49 Quit Hillshum ("Ex-Chat")
04:51:55 Join martian67 [0] (n=martian6@about/linux/regular/martian67)
04:53:33 Quit JdGordon ("Leaving.")
04:57:11 Join than0 [0] (n=thanaton@adsl-99-31-118-145.dsl.emhril.sbcglobal.net)
04:59:13 Quit Sajber^ (Read error: 104 (Connection reset by peer))
05:00
05:04:19 Join dmb [0] (n=Dmb@unaffiliated/dmb)
05:09:10 Quit fdinel ("Miranda IM! Smaller, Faster, Easier. http://miranda-im.org")
05:36:36 Join moos [0] (i=mustapha@rockbox/staff/moos)
05:40:03 Quit dmb (Read error: 113 (No route to host))
05:46:56 Quit Horscht ("Verlassend")
05:49:54*Unhelpful is.. a little bit confused by the new AAF patch. ALPHA_COLOR_FONT_DEPTH is 2, so it would seem as though AA fonts ought to be 2bpp? but the code sure seems to act as though they are 4bpp...
05:56:56 Quit Strife89 ("Leaving")
06:00
06:13:49***Saving seen data "./dancer.seen"
06:17:31MG_ManJust to clarify
06:17:34MG_ManWhat is AA fonts?
06:17:37MG_ManAnti-aliasing?
06:17:56 Quit saratoga (Ping timeout: 180 seconds)
06:19:06UnhelpfulMG_Man: yes. a work-in-progress feature for color targets.
06:19:15MG_ManI see
06:29:47 Join slam_ [0] (n=grndslm@96.19.110.120)
06:35:32 Quit rvvs89 (Read error: 60 (Operation timed out))
06:46:21 Quit CaptainKwel (Remote closed the connection)
06:58:24 Quit BHSPitMonkey (Read error: 60 (Operation timed out))
07:00
07:27:27 Join stoffel [0] (n=quassel@p57B4D915.dip.t-dialin.net)
07:32:21 Nick advcomp2019_ is now known as advcomp2019 (n=advcomp2@unaffiliated/advcomp2019)
07:37:56 Join LinusN [0] (n=linus@rockbox/developer/LinusN)
07:43:32 Join ender` [0] (i=krneki@foo.eternallybored.org)
07:46:05 Quit than0 ("Ex-Chat")
08:00
08:03:00amiconnHmm, stripwax is gone
08:13:54***Saving seen data "./dancer.seen"
08:22:26MG_ManWPS
08:22:38MG_ManIts both one of the strangest 'languages' I've seen but also one of the easiest
08:22:48MG_ManSO kudos to the devs for that
08:39:07 Join rvvs89 [0] (n=ivo@pdpc/supporter/base/rvvs89)
08:49:47 Join Rob2223 [0] (n=Miranda@p4FDCC63B.dip.t-dialin.net)
08:53:35 Join webguest68 [0] (n=5ac40180@gateway/web/cgi-irc/labb.contactor.se/x-ltxrqhnxbkltqioz)
08:54:34 Quit webguest68 (Client Quit)
08:59:40 Join PaulJam [0] (n=Paule@p54BEECE9.dip.t-dialin.net)
08:59:47 Join petur [50] (n=petur@rockbox/developer/petur)
09:00
09:08:04 Quit Rob2222 (Read error: 110 (Connection timed out))
09:10:00MG_ManIs it possible to draw text OVER an image in a viewport?
09:10:17MG_ManWhere they would be on the same line
09:10:19MG_ManWait
09:10:24MG_ManNo, I just figured out a workaroud
09:12:21MG_ManOr not
09:14:32MG_ManThat's bullcrap :C
09:15:31MG_ManSo no matter what, in the same viewport, text will always be behind images?
09:15:53MG_ManThat's a little backwards if you ask me
09:18:14 Quit MG_Man ("Quitting")
09:28:05 Join Ray_Light [0] (n=chatzill@fm-ip-118.137.91.206.fast.net.id)
09:28:19Ray_Lighthi guys
09:28:42Ray_Lightcan creative zen touch be modded ?
09:28:43 Join n1s [0] (n=n1s@rockbox/developer/n1s)
09:30:09 Join Thundercloud [0] (i=thunderc@persistence.flat.devzero.co.uk)
09:37:37 Join jordan` [0] (i=gromit@78.235.252.137)
09:38:05 Quit Ray_Light ("ChatZilla 0.9.85 [Firefox 3.5.2/20090729225027]")
09:38:16 Quit jordan`` (Read error: 104 (Connection reset by peer))
09:41:28 Join bertrik [0] (n=bertrik@ip117-49-211-87.adsl2.static.versatel.nl)
09:42:48 Join flydutch [0] (n=flydutch@host214-146-dynamic.15-87-r.retail.telecomitalia.it)
09:44:45 Join bmbl [0] (n=Miranda@unaffiliated/bmbl)
09:49:53 Quit Thundercloud (Remote closed the connection)
09:51:48 Join pamaury [0] (n=pamaury@sal63-1-82-243-96-220.fbx.proxad.net)
09:56:59 Join robin0800 [0] (n=robin080@cpc3-brig8-0-0-cust436.brig.cable.ntl.com)
10:00
10:02:54 Quit robin0800 (Remote closed the connection)
10:12:12 Join petur2 [50] (n=petur@rockbox/developer/petur)
10:13:57***Saving seen data "./dancer.seen"
10:14:54 Quit petur (Nick collision from services.)
10:14:58 Nick petur2 is now known as petur (n=petur@rockbox/developer/petur)
10:29:47n1sis fs#10551 a bug or a fq?
10:33:00 Join TheSeven [0] (n=theseven@dslb-084-056-177-242.pools.arcor-ip.net)
10:45:35pixelman1s: seems to be the bug, the options "view current playlist" etc. are voiced with a current build and voice on my c200
10:47:48n1sah, i saw he mentioned voicing playlist *contents* but yeah reading it again i think i agree, i wonder if this is that rbutil installing the current voicefile for releases too bug...
11:00
11:03:46 Quit PaulJam (Read error: 113 (No route to host))
11:10:26*bertrik is having some trouble writing a meizu m6 sp lcd driver
11:12:57*Unhelpful grumbles about the size conversion issues in convttf
11:13:35bertrikI need an extra frame buffer for the LCD controller, but that won't fit anymore inside the available RAM
11:14:18Unhelpfulyou never get exactly the size you ask for... though i've gotten it very slightly closer. the real PITA is that 1) you have to find by trial-and-error the requested size that will get you the output size you want 2) going up by one in requested size may step by 2 in output size - sometimes the size you'd like just isn't possible.
11:14:46 Join GeekShadow [0] (n=Antoine@reactos/tester/GeekShadow)
11:20:53 Join einhirn [0] (n=Miranda@bsod.rz.tu-clausthal.de)
11:26:01 Join bubsy [0] (i=Bubsy@94.139.72.137)
12:00
12:02:24 Quit Lss (Read error: 104 (Connection reset by peer))
12:14:00***Saving seen data "./dancer.seen"
12:19:48 Quit HBK- (Read error: 113 (No route to host))
12:24:02 Join Grahack [0] (n=chri@ip-222.net-82-216-222.rev.numericable.fr)
12:24:22 Quit Grahack (Client Quit)
12:27:19 Join Sajber^ [0] (n=Sajber@h-142-237.A213.priv.bahnhof.se)
12:30:30 Nick YpsyZNC is now known as Ypsy (n=ypsy@geekpadawan.de)
12:51:09 Join dfkt [0] (i=dfkt@unaffiliated/dfkt)
13:00
13:04:18 Nick elcan is now known as chelios (i=user36@massdeop.us)
13:04:29 Join robin0800 [0] (n=robin080@cpc3-brig8-0-0-cust436.brig.cable.ntl.com)
13:05:30 Join biengo [0] (n=quassel@xdsl-81-173-224-126.netcologne.de)
13:12:57biengoI just registered on the Twiki as BenediktGoos to add an article I found about rockbox. I'd need write permission though, if someone would be so kind.
13:14:56biengothe article in question: http://www.pcpro.co.uk/features/247106/upgrade-your-mp3-player-with-rockbox
13:16:07 Quit gibbon_ (Read error: 104 (Connection reset by peer))
13:17:35moosbiengo: that's done
13:18:10biengothanks mate
13:18:25 Join gibbon_ [0] (i=gibbon_@could.become.a.servant4you.org)
13:23:24moosbiengo: you are elcome
13:23:32mooswelcome even
13:26:13moosbiengo: here where you could link in: http://www.rockbox.org/twiki/bin/view/Main/ArticlesAboutRockbox
13:26:46biengothanks. I'm on it :)
13:27:23moosnice
13:31:32bertrikmarkun, gevaerts: have you ever tried to access the DRAM on the Meizu players?
13:32:15 Join PaulJam [0] (n=Paule@p54BEE22F.dip.t-dialin.net)
13:37:15 Nick langzeitstudent_ is now known as joboy (n=langzeit@p5B17EAA4.dip.t-dialin.net)
13:40:03 Quit moos ("Rockbox rules the DAP world")
13:49:23 Join AndyIL [0] (i=AndyI@212.14.205.32)
14:00
14:01:42 Quit AndyI (Read error: 110 (Connection timed out))
14:02:24 Join faemir [0] (n=faemir@78.33.109.163)
14:03:39 Quit biengo (Remote closed the connection)
14:10:52 Quit faemir ("Leaving")
14:14:04***Saving seen data "./dancer.seen"
14:21:38joboydoes anyone know if the playlist_control file will automatically be created in memory on a read-only rockbox root? I'm trying to figure out why using the database fails but "normal" playlist/directory playling works perfectly (save for an error message that apparently has no concequence.. still can resume playback after stopping, without a shutdown obviously)
14:27:58 Join wincent [0] (n=wincent@host-091-097-059-130.ewe-ip-backbone.de)
14:44:32 Join FOAD_ [0] (n=dok@dinah.blub.net)
14:45:52 Quit FOAD (Read error: 60 (Operation timed out))
14:45:52 Nick FOAD_ is now known as FOAD (n=dok@dinah.blub.net)
14:56:45 Quit n1s (Read error: 110 (Connection timed out))
14:58:49 Join CaptainKwel [0] (n=jason@207-237-172-77.c3-0.nyr-ubr4.nyr.ny.cable.rcn.com)
15:00
15:03:38 Join teru [0] (n=teru@KD059133112132.ppp.dion.ne.jp)
15:03:38 Quit antil33t (Read error: 104 (Connection reset by peer))
15:03:52 Join antil33t [0] (n=Mudkips@119.224.12.185)
15:06:06 Part LinusN
15:06:20 Join JdGordon [0] (i=208e0d15@gateway/web/freenode/x-hklehyczldkjfggu)
15:14:20 Quit dfkt ("-= SysReset 2.53=- Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn.")
15:14:33 Join domonoky [0] (n=Domonoky@rockbox/developer/domonoky)
15:21:22 Nick joboy is now known as jboy (n=langzeit@p5B17EAA4.dip.t-dialin.net)
15:29:56 Quit JdGordon (Ping timeout: 180 seconds)
15:30:19 Join dfkt [0] (i=dfkt@unaffiliated/dfkt)
15:37:14CIA-61New commit by teru (r22447): blackjack: change the way to save/load game state: save game state when quit plugin and load game state when plugin started.
15:40:18 Quit CaptainKwel (Remote closed the connection)
15:41:57 Join galaxyhunter [0] (n=428d0fb2@gateway/web/cgi-irc/labb.contactor.se/x-rvymvlvkdhcxmvnc)
15:43:29 Quit galaxyhunter (Client Quit)
15:46:16 Join evilnick_home1 [0] (n=evilnick@pool-173-52-149-141.nycmny.east.verizon.net)
15:47:18 Join funman [0] (n=fun@rockbox/developer/funman)
15:49:37 Quit gurnarok ("A wench in yer debth, be a wench in yer bed!")
15:50:18 Quit evilnick_home (Read error: 60 (Operation timed out))
15:50:39 Nick evilnick_home1 is now known as evilnick_home (n=evilnick@pool-173-52-149-141.nycmny.east.verizon.net)
15:51:13 Join LambdaCalculus37 [0] (n=rmenes@216.12.165.162)
15:57:17*LambdaCalculus37 announces DevConWest to be starting Real Soon Now!
15:59:40 Join jgarvey [0] (n=jgarvey@cpe-098-026-065-013.nc.res.rr.com)
16:00
16:05:36 Join patmulchrone [0] (n=pat@99-13-70-2.lightspeed.cicril.sbcglobal.net)
16:14:06***Saving seen data "./dancer.seen"
16:14:12CIA-61New commit by teru (r22448): rockpaint: some fixes and optimization. ...
16:21:56 Part wincent ("Kopete 0.12.7 : http://kopete.kde.org")
16:31:42 Quit evilnick_home (Read error: 104 (Connection reset by peer))
16:31:42 Join captainkwel [0] (i=2669ecc2@gateway/web/freenode/x-iljgfdngyugzwjxy)
16:35:10 Join BBBradley [0] (n=c73d19fe@gateway/web/cgi-irc/labb.contactor.se/x-fnftlpeblyidiqep)
16:38:40 Quit funman ("free(random());")
16:39:31dionoeateru: if you feel like it, the font selection dialog needs some optimisation in rockpaint (refreshing the screen when opening it or scrolling out of the current list takes way too long on a real target)
16:40:02 Join toffe82 [0] (n=chatzill@74.0.180.178)
16:48:31terudionoea: i tried to do "cache fonts" before. if you are interested in, i'm willing to synch and upload patch some where lator (maybe to tracker?)
16:50:02 Join kkurbjunW [0] (n=karlk@12.41.166.9)
16:56:26CIA-61New commit by teru (r22449): text editor: optimize a bit and try to reduce size.
16:56:42 Join froggyman [0] (n=chatzill@pool-72-69-196-209.chi01.dsl-w.verizon.net)
17:00
17:00:45 Join daggett [0] (n=denis@lab.openpattern.org)
17:00:51 Join advcomp2019_ [0] (n=advcomp2@unaffiliated/advcomp2019)
17:02:09 Join AlexP_ [0] (n=alex@rockbox/staff/AlexP)
17:02:13 Join stoffel_ [0] (n=quassel@p57B4D915.dip.t-dialin.net)
17:02:22 Join antil33t1 [0] (n=Mudkips@119.224.12.185)
17:02:30 Quit antil33t (Nick collision from services.)
17:02:54 Quit TheSeven (Nick collision from services.)
17:03:09 Quit stoffel (leguin.freenode.net irc.freenode.net)
17:03:09NSplitleguin.freenode.net irc.freenode.net
17:03:09 Quit bah_ (leguin.freenode.net irc.freenode.net)
17:03:09 Quit Shaid (leguin.freenode.net irc.freenode.net)
17:03:09 Quit AlexP (leguin.freenode.net irc.freenode.net)
17:03:09 Quit timc (leguin.freenode.net irc.freenode.net)
17:03:09 Quit JohnTeddy (leguin.freenode.net irc.freenode.net)
17:03:09 Quit shadearg (leguin.freenode.net irc.freenode.net)
17:03:09 Quit tchan (leguin.freenode.net irc.freenode.net)
17:03:09 Quit Zarggg (leguin.freenode.net irc.freenode.net)
17:03:09 Quit advcomp2019 (leguin.freenode.net irc.freenode.net)
17:03:09 Quit DataGhost (leguin.freenode.net irc.freenode.net)
17:03:09 Quit redfox (leguin.freenode.net irc.freenode.net)
17:03:10NHealleguin.freenode.net irc.freenode.net
17:03:10NJoinbah_ [0] (n=bah@c-76-105-203-173.hsd1.wa.comcast.net)
17:03:10 Join The_Seven [0] (n=theseven@dslb-084-056-177-242.pools.arcor-ip.net)
17:03:14 Nick The_Seven is now known as TheSeven (n=theseven@dslb-084-056-177-242.pools.arcor-ip.net)
17:03:45 Join antil33t [0] (n=Mudkips@119.224.12.185)
17:03:45NJoinstoffel [0] (n=quassel@p57B4D915.dip.t-dialin.net)
17:03:45NJointimc [0] (n=aoeu@60.21.37.28)
17:03:45NJoinZarggg [0] (n=zarggg@65-78-69-194.c3-0.eas-ubr6.atw-eas.pa.cable.rcn.com)
17:03:45NJoinAlexP [0] (n=alex@rockbox/staff/AlexP)
17:03:45NJoinJohnTeddy [0] (i=unstable@glitchinthe.net)
17:03:45NJoinadvcomp2019 [0] (n=advcomp2@unaffiliated/advcomp2019)
17:03:45NJoinDataGhost [0] (i=dataghos@unaffiliated/dataghost)
17:03:45NJoinShaid [0] (i=adam@lurking.shaid.net)
17:03:45NJointchan [0] (n=tchan@lunar-linux/developer/tchan)
17:03:45NJoinshadearg [0] (i=arg@ipv4.panoptix.net)
17:03:45NJoinredfox [0] (n=redfox2@ns351996.ovh.net)
17:03:47 Quit Zarggg (Excess Flood)
17:04:04 Join Zarggg [0] (n=zarggg@65-78-69-194.c3-0.eas-ubr6.atw-eas.pa.cable.rcn.com)
17:04:46 Quit DataGhost (Nick collision from services.)
17:04:54 Join DataGhost [0] (i=dataghos@unaffiliated/dataghost)
17:05:21 Quit stoffel (Connection reset by peer)
17:06:51 Join MG_Man [0] (n=MGMan@11.208.101.97.cfl.res.rr.com)
17:06:54 Join advcomp2019__ [0] (n=advcomp2@unaffiliated/advcomp2019)
17:08:03 Join freqmod_qu [0] (i=quasselg@dhcp208-240.ed.ntnu.no)
17:08:03 Join Rob2222 [0] (n=Miranda@p4FDCC63B.dip.t-dialin.net)
17:08:44 Join domonoky1 [0] (n=Domonoky@g229117073.adsl.alicedsl.de)
17:10:15 Quit freqmod (Read error: 104 (Connection reset by peer))
17:10:32dionoeateru: uploading the patch on the tracker would be nice :)
17:11:03 Quit alexbobp (Success)
17:11:17 Join alexbobp [0] (n=alex@adsl-75-34-100-218.dsl.austtx.sbcglobal.net)
17:12:15 Quit petur ("beer time")
17:15:05MG_ManAbout the images over text thing
17:15:09MG_ManI found another workaround
17:16:35MG_ManHurray, it worked
17:16:54MG_ManI'm going to put in the other fields before I show a screenshot though
17:18:46 Quit pamaury ("exit(*(int *)0 / 0);")
17:20:20 Quit AlexP (Read error: 110 (Connection timed out))
17:20:27 Quit antil33t (Read error: 110 (Connection timed out))
17:20:39 Quit advcomp2019 (Connection timed out)
17:23:14 Quit teru ("Quit")
17:24:49 Join BryanJacobs [0] (n=bryanjac@e33.cs.rochester.edu)
17:24:53 Quit advcomp2019_ (Read error: 110 (Connection timed out))
17:26:14 Quit Rob2223 (Read error: 110 (Connection timed out))
17:26:31 Quit domonoky (Read error: 110 (Connection timed out))
17:27:48MG_ManIs there a limit on viewports or something?
17:28:16MG_ManI'm getting ERR:Failed parsing on line 29: ERR: Invalid parameter list for token 110: "No token"
17:28:18MG_Manfor this line
17:28:25MG_Man%Vl|b|91|34|195|10|0|00FF00|000000|
17:28:42MG_ManI don't see anything inherently wrong with it, it's the same as the other viewports
17:30:00MG_ManThere's three viewports with identifier "a" then 3 more with "b"
17:30:08MG_ManBut when the "b"s start it craps out
17:30:28MG_ManThree viewports shae the identifier for an album art conditional
17:30:44MG_Manshare*
17:31:14pixelmawhich target/display is this for?
17:31:24MG_Maniriver h300
17:32:31pixelmathen you can't have a viewport that starts at x-position 91 and is 195 pixels wide, like you defined there - it would be wider than the display which is 220x176
17:32:53 Quit froggyman ("ChatZilla 0.9.85 [Firefox 3.5.2/20090729225027]")
17:32:59MG_ManOh, why didn't I see that
17:33:04MG_ManI was sure i changed the X value
17:33:05MG_ManThanks
17:34:06 Nick advcomp2019__ is now known as advcomp2019 (n=advcomp2@unaffiliated/advcomp2019)
17:34:25MG_ManThere we go
17:34:53 Quit daggett ("Ex-Chat")
17:39:24 Join Hillshum [0] (n=hillshum@unaffiliated/hillshum)
17:44:01kkurbjunWrasher: The themes site currently won't work for any touchscreen target.. is is possible to disable checkwps on a per-target basis?
17:44:35rasherkkurbjunW: I'd rather not work around the actual proble (checkwps is broken)
17:45:08kkurbjunWrasher: problem is that I don't have control of when checkwps will be fixed
17:45:20 Join Omlet [0] (n=Omlet05@63.120-240-81.adsl-dyn.isp.belgacom.be)
17:45:22kkurbjunWand currently the site is useless for all touchscreens
17:45:33kkurbjunWor any target for that matter that includes newer tags
17:46:01 Join Horscht [0] (n=Horscht2@xbmc/user/horscht)
17:46:17pixelmathere are also themes on there that are broken with an SVN build but weren't back then
17:46:19CIA-61New commit by mcuelenaere (r22450): Rockbox Utility: make chinachippatch translateable + update Dutch translation
17:47:21Hillshumthe commit message needs to be translated
17:47:39pixelmae.g. the one c200 theme I only tried today to test Rockbox Utility on Mac OSX
17:47:53rasherkkurbjunW: I hope you can understand I'm not very interested in removing or disabling the checkwps code, which is working perfectly fine, because checkwps is broken
17:48:44MG_Manhmm
17:48:56MG_ManIt seems nobody likes displaying over images
17:49:12MG_ManGonna have to do more hacking...
17:50:48kkurbjunWrasher, I can appreciate it, but if nothing happens the site says pointless - I may as well go back to starting a wiki for touchscreen themes :-D
17:51:01rasherOr fix checkwps
17:51:47kkurbjunWrasher: I am not familiar with that code and currently my availability to work on it are limited
17:52:20rasherI just don't think disabling useful and working code is a good solution
17:52:45kkurbjunWif it's so much trouble to disable it for now, I'll just start a wiki
17:55:25 Join fdinel [0] (n=Miranda@modemcable204.232-203-24.mc.videotron.ca)
17:56:18rasherI just think your time will be better spent getting checkwps fixed, rather than breaking the theme site
17:57:19 Join paulk_ [0] (n=paulk@lib33-1-82-233-88-171.fbx.proxad.net)
17:58:21MG_ManGeeze, finally
17:58:34kkurbjunWrasher: offhand I don't have my login information for the themes admin - can I remove the mr500 from the dash?
17:58:36MG_ManThis method is really hacky, but its hard to explain without sending the entire skin
17:58:55kkurbjunWright now it is misleading to let people think they can upload a theme that will never pass checkwps
17:59:39kkurbjunWthe onda should also probably be removed
18:00
18:00:17paulk_Hello, I've modified my local "calendar.c" to translate it in french. When the month is "Aug", "Aoû" in french, the 9 of the "2009" is not displayed. How can I change the width of the box containing this word ?
18:00:32 Join petur [0] (n=peter@rockbox/developer/petur)
18:05:23kkurbjunWhmm, it looks like I can't remove a target from the dash....
18:05:31linuxstbpaulk_: Did you use utf-8 in the source file?
18:05:37paulk_yes
18:06:17kkurbjunWrasher: is there an easy way to remove targets from the themes site?
18:06:52rasherI don't see why it should be removed. There's an issue with rockbox code, not with the theme site or the mrobe
18:08:19linuxstbpaulk_: It looks like the snprintf line in calendar.c - it's limiting the buffer to 9 bytes. With a double-byte utf-8 character, the string needs 10 bytes. (Aoû 2009 including the trailing \0)
18:08:28kkurbjunWI agree that there is a problem, but holding the site as is doesn't address any of it in the near term - providing an upload link that doesn't work is sloppy in my opinion - at the very least it should be removed in my opinion till the issue is resolved
18:08:58paulk_linuxstb: rb->snprintf(buffer,9,"%s %04d",monthname[shown->mon-1],shown->year);
18:09:00paulk_?
18:09:29linuxstbpaulk_: Yes. Best to change that 9 to "sizeof(buffer)" and increase the size of buffer earlier in that function.
18:10:10kkurbjunWright now the theme site doesn't work at all for the mrobe or the onda so why mislead people in thinking that they can upload themes till it works
18:10:27 Join mcuelenaere [0] (n=mcuelena@78-21-191-122.access.telenet.be)
18:10:43kkurbjunWyes it's a problem with other portions of the code, but that reflects on the (currently)dysfunctional theme site as well
18:11:27kkurbjunWif it is easy to remove the targets I think it makes sense for now
18:11:38paulk_linuxstb: Ok, well I'm not a C programer, so, how sould I increase the size of the buffer ?
18:11:39kkurbjunWif it's oto much work then I suppose forget about it
18:12:09linuxstbpaulk_: Just change the definition from "char buffer[9];" to "char buffer[10];" (line 355 in my copy of calander.c)
18:12:21paulk_ok :)
18:12:35linuxstbpaulk_: See, C is easy ;)
18:12:35paulk_so i don't use sizeof(buffer)
18:12:59linuxstbpaulk_: Yes, still use sizeof(buffer) in the call to snprintf. Otherwise you'll need to write 10 in two places.
18:13:09paulk_ok
18:13:24paulk_that's easier to write "10" only one time
18:13:33paulk_well, thank you
18:13:33linuxstbSo line 355 should be "char buffer[10];" and line 401 "snprintf(buffer,sizeof(buffer),...."
18:13:58linuxstbNo months have more than one accented character?
18:14:01paulk_That's done
18:14:10***Saving seen data "./dancer.seen"
18:14:19paulk_no
18:15:03rasherkkurbjunW: I don't remember. I'll have a look some time
18:15:29 Quit Hillshum ("Ex-Chat")
18:15:34 Nick Necos_ is now known as Necos (i=1001@cpe-76-169-21-84.socal.res.rr.com)
18:16:30 Quit paulk_ ("Ex-Chat")
18:16:33 Join funman [0] (n=fun@rockbox/developer/funman)
18:17:25 Join Hillshum [0] (n=hillshum@75-165-229-125.slkc.qwest.net)
18:18:13kkurbjunWrasher: thanks
18:19:15 Join FOAD_ [0] (n=dok@dinah.blub.net)
18:20:56MG_ManAlright. Screenshot time
18:22:50 Quit LambdaCalculus37 ("leaving")
18:23:29MG_ManOk, here it is in action
18:23:30MG_Manhttp://img406.imageshack.us/img406/2674/notwinampwithart.png
18:23:42MG_ManAnd on a song with no art:
18:23:43 Quit robin0800 (Remote closed the connection)
18:23:43MG_Manhttp://img16.imageshack.us/img16/6509/notwinampwithoutart.png
18:23:48MG_ManNow I need to do the progress bar
18:24:16 Join LambdaCalculus37 [0] (i=451f2b82@rockbox/staff/LambdaCalculus37)
18:24:17MG_ManAnd this time, none of the skin itself has been taken from Winamp
18:24:23MG_Manall re-created, and I have a PSD to prove it
18:25:47LambdaCalculus37DCW webcam live feed at http://www.ustream.tv/broadcaster/1281365
18:26:01MG_ManHmm, definitely not a spambot
18:27:33funmanMG_Man: DCW is DevConWest, a conference of rockbox hackers, at the West of Europe (America)
18:27:41MG_Man...ah.
18:28:01HillshumLambdaCalculus37: I need to login?
18:28:22LambdaCalculus37Sorry, wrong link. http://www.ustream.tv/channel/rockbox-devconwest-2009
18:29:17 Join froggyman [0] (n=chatzill@pool-72-69-196-209.chi01.dsl-w.verizon.net)
18:30:25HillshumIs the green DAP a gigabeat T?
18:30:26 Quit domonoky1 (Read error: 104 (Connection reset by peer))
18:32:39 Join domonoky [0] (n=Domonoky@rockbox/developer/domonoky)
18:33:41 Join evilnick_home [0] (n=evilnick@216.12.165.162)
18:35:06*domonoky waves to DevconWest !
18:35:12 Quit FOAD (Read error: 110 (Connection timed out))
18:35:13 Nick FOAD_ is now known as FOAD (n=dok@dinah.blub.net)
18:36:24MG_Manright, now I need to make the volume bar smoother, then do all the other indicators, then figure out how I'm gonna do the progress bar
18:37:35MG_ManI also have another problem
18:37:47MG_ManWhen the battery reaches full capacity, the indicator goes blank
18:37:57MG_ManBut all the bmp data is there
18:38:03MG_ManIt shows full in the remote too
18:38:16 Nick AlexP_ is now known as AlexP (n=alex@rockbox/staff/AlexP)
18:40:27 Join evilnick_home1 [0] (n=evilnick@216.12.165.162)
18:41:59 Quit froggyman ("ChatZilla 0.9.85 [Firefox 3.5.2/20090729225027]")
18:43:33 Quit LambdaCalculus37 ()
18:43:36 Quit petur (Remote closed the connection)
18:44:06 Quit Hillshum (Remote closed the connection)
18:46:21 Quit evilnick_home (Read error: 145 (Connection timed out))
18:47:56 Quit kkurbjun ("Leaving.")
18:48:52 Join Hillshum [0] (n=hillshum@75-165-229-125.slkc.qwest.net)
18:50:14 Quit BryanJacobs ("Java user signed off")
18:50:33 Quit Sajber^ (Read error: 104 (Connection reset by peer))
18:51:46 Join peachtoast [0] (n=Dimik@216.12.165.162)
18:52:10 Join JdGordon [0] (n=jonno@rockbox/developer/JdGordon)
18:52:24*mcuelenaere got checkwps back compiling
18:52:32JdGordonsweet :)
18:52:35JdGordoni was going to do it :)
18:52:38 Join LambdaCalculus37 [0] (n=rmenes@rockbox/staff/LambdaCalculus37)
18:52:46 Nick evilnick_home1 is now known as evilnick_dcw (n=evilnick@216.12.165.162)
18:52:50mcuelenaerebut it doesn't work yet ;)
18:53:22mcuelenaereJdGordon|: I think some functions in skin_display.c should be moved out it, as they aren't really related to 'displaying' and checkwps can't compile without them (I don't compile skin_display.c)
18:53:44mcuelenaerealso, I need viewport_parse_viewport() but can't compile viewport.c (cleanly)
18:53:58mcuelenaereso I just stubbed it, but that way I don't get very far at parsing
18:53:59JdGordonarg
18:54:43mcuelenaerehttp://pastebin.com/f403a8fc8
18:54:49mcuelenaere== current diff
18:55:32 Quit JdGordon (Client Quit)
18:55:58 Quit Rob2222 ()
18:56:53MG_ManDo you think I should remove Stop from the big buttons on the bottom?
18:57:02MG_ManSince Stop never currently ever shows in WPS I believe
18:59:51MG_Manhttp://img406.imageshack.us/img406/2674/notwinampwithart.png
19:00
19:00:18MG_ManThen again the CustomWPS page said there will be functionality for it so I guess it'll stay
19:00:23MG_ManPlus I have nothing better to put there
19:00:27 Join evilnick_home [0] (n=evilnick@216.12.165.162)
19:02:43 Join JdGordon [0] (n=jonno@rockbox/developer/JdGordon)
19:05:16 Join JdGordon_ [0] (i=d80ca5a2@gateway/web/freenode/x-xrjbmsaxqoxyrlbg)
19:05:34mcuelenaerehmm I'm having a null pointer dereference in load_skin_bitmaps() ..
19:06:39 Quit jboy (Read error: 110 (Connection timed out))
19:11:20 Quit bertrik (Read error: 60 (Operation timed out))
19:13:59 Quit Hillshum (Remote closed the connection)
19:14:02 Quit bmbl (Read error: 104 (Connection reset by peer))
19:14:03 Quit kkurbjunW (Remote closed the connection)
19:14:16 Quit peachtoast ()
19:16:11 Join kkurbjunW [0] (n=karlk@12.41.166.9)
19:18:49 Join evilnick_home1 [0] (n=evilnick@216.12.165.162)
19:19:20 Quit JdGordon (Read error: 110 (Connection timed out))
19:20:04 Join saratoga [0] (i=9803c6dd@rockbox/developer/saratoga)
19:21:31 Quit evilnick_dcw (Read error: 110 (Connection timed out))
19:26:08 Quit einhirn (Read error: 104 (Connection reset by peer))
19:26:22 Join einhirn [0] (n=Miranda@bsod.rz.tu-clausthal.de)
19:32:00 Join petur [50] (n=petur@rockbox/developer/petur)
19:32:32 Join Thundercloud [0] (i=thunderc@persistence.flat.devzero.co.uk)
19:34:13 Join Grahack [0] (n=chri@ip-222.net-82-216-222.rev.numericable.fr)
19:34:41 Quit Grahack (Client Quit)
19:37:08 Quit JdGordon_ (Ping timeout: 180 seconds)
19:37:09 Quit evilnick_home (Read error: 110 (Connection timed out))
19:45:31 Join vitaliy [0] (n=vitaliy@96.56.156.179)
19:45:49vitaliyLambdaCalculus37: what's up? ;)
19:50:20 Join Rob2222 [0] (n=Miranda@p4FDCC63B.dip.t-dialin.net)
19:50:43 Quit petur ("buggers")
19:53:24 Join JdGordon [0] (n=jonno@rockbox/developer/JdGordon)
19:53:25scorche|shvitaliy: oh, hai =)
19:54:04MG_ManWho manages the CustomWPS page?
19:54:11MG_ManThe specification for %mm is out of order
19:54:32MG_ManIt's supposed to be <Off|One|All|Shuffle|A-B>
19:54:41MG_ManBut One and All are backwards on the page
19:54:47vitaliysomeone link me to that ustream setup
19:54:49 Join moos [0] (i=mustapha@rockbox/staff/moos)
19:55:13gevaertsyou want to listen in? :)
19:55:29vitaliyI am nosey, want to know whats happening without walking over :p
19:55:52vitaliytoo busy watching Mr Bean and all
19:56:21gevaertsyou might want to join #rockbox-community where we talk about not strictly on-topiuc stuff
19:57:34 Nick Ypsy is now known as YpsyZNC (n=ypsy@geekpadawan.de)
19:57:39MG_ManWait
19:57:41 Quit slam_ ("Leaving")
19:57:46MG_ManNow I just don't know what's what for %mm
19:57:51MG_ManIt's horribly confused
19:58:19 Join LambdaCalculus3_ [0] (n=rmenes@216.12.165.162)
19:58:35 Quit LambdaCalculus37 (Read error: 145 (Connection timed out))
19:58:55MG_ManOh, nevermind
19:58:57MG_ManMy bad
19:59:09MG_ManI had left a | at the beginning of it
20:00
20:01:10 Quit LambdaCalculus3_ (Client Quit)
20:02:09 Join GeekShado_ [0] (n=Antoine@236.18.69-86.rev.gaoland.net)
20:04:22 Join eulerphi [0] (n=eulerphi@unaffiliated/eulerphi)
20:04:27eulerphihi
20:04:44eulerphii have a sansa c250
20:05:08eulerphiwhenever i play mp4/aac files, it's really slow
20:05:20*mcuelenaere has checkwps compiling and working! :)
20:05:34 Join Sajber^ [0] (n=Sajber@c-473671d5.012-155-73746f22.cust.bredbandsbolaget.se)
20:05:46eulerphilike it freezes every second
20:06:18 Join yhuang [0] (n=yhuang@unaffiliated/yhuang)
20:06:27eulerphiis my sansa just not capable of playing aac's?
20:06:38 Quit evilnick_home1 (Read error: 110 (Connection timed out))
20:06:41 Quit GeekShadow (Read error: 60 (Operation timed out))
20:06:43 Join Hillshum [0] (n=hillshum@75-165-229-125.slkc.qwest.net)
20:09:48eulerphihow do i find the version #?
20:10:38Hillshumeulerphi: System >> Rockbox Info
20:10:55eulerphii mean in the directory
20:11:25pixelmaeulerphi: the few AAC I have play ok on my c250 (all about 128 kbps), although the processor is quite busy especially during buffering. Do you also use sound effects like the equalizer or crossfade etc.?
20:12:03Hillshumeulerphi: On the device on in the source code?
20:12:53eulerphion the device
20:12:59eulerphinope, no effects
20:13:17eulerphiand my aac's are only 64kbps
20:14:11amiconnMaybe they are he-aac? That needs more cpu to decode
20:14:13***Saving seen data "./dancer.seen"
20:14:26*pixelma thinks to remember different encoding types of AAC where one is more complex...
20:14:47Hillshumeulerphi: /.rockbox/rockbox-info.txt I think
20:15:24CIA-61New commit by mcuelenaere (r22451): Fix/hack checkwps + add Onda VX747/VX777 targets
20:15:50eulerphiah, thanks
20:15:52eulerphir16734-080321
20:16:35pixelmathat is age old - over a year... you should update
20:16:43eulerphikk :)
20:19:39eulerphithe new rockbox util will replace the old one automatically?
20:20:26Hillshumif you tell it to
20:20:36eulerphii didn't see an option :/
20:21:35 Join robin0800 [0] (n=robin080@cpc3-brig8-0-0-cust436.brig.cable.ntl.com)
20:22:05 Join Zarggg_ [0] (n=zarggg@65-78-69-194.c3-0.eas-ubr6.atw-eas.pa.cable.rcn.com)
20:22:17 Quit Zarggg (Read error: 104 (Connection reset by peer))
20:22:23eulerphithis is nice :)
20:22:26HillshumJust do the install
20:25:24eulerphiugh, there's still latency
20:27:18eulerphianyway, is it able to charge while it's booted into rockbox?
20:27:54eulerphibefore i had to switch to original firmware to charge
20:30:11Hillshumeulerphi: what model?
20:30:21eulerphior to access the drive
20:30:26eulerphic250?
20:30:30pixelmait charges in the USB screen - if you want to keep listening to music and not transfer files, you can hold a button while inserting the cable... should be in the manual
20:30:43eulerphiok cool
20:31:13pixelmaI mean which button that is
20:31:15saratogaeulerphi: what type of AAC
20:31:27saratogaAAC-LC works fine, AAC-HE does not because your Sansa is too slow
20:31:53eulerphisaratoga: how do i find it? mplayer?
20:32:10eulerphiQuicktime/MOV file format detected.
20:33:52kkurbjunWmcuelenaere: nice work :)
20:34:14mcuelenaerekkurbjunW: thanks, I'm working on tools/configure integration now
20:34:18eulerphiISO: File Type Major Brand: ISO/IEC 14496-1 (MPEG-4 system) v2
20:34:21mcuelenaereto make sure this doesn't need fixing again
20:34:47kkurbjunWyeah, that would be nice
20:35:52pixelmaeulerphi: since I can't find it in the manual - if you want to keep listening you have to hold the select button when plugging the cable. But the manual is still a nice collection of info... ;)
20:36:54eulerphiyou mean menu button?
20:37:17eulerphiahh.. it froze when i did that
20:38:00 Join n00b81 [0] (n=n00b81@unaffiliated/n00b81)
20:38:02pixelmaoh, now I found it - it is in the "charging" section. No, select is the center button and
20:38:19eulerphiah, gotcha
20:38:36eulerphi:))
20:38:51eulerphiso it will continue to charge, eh?
20:40:00kkurbjunWIs checkWPS supposed to work with rwps's too?
20:40:14kkurbjunWI would guess yes since it's the same syntax
20:41:30kkurbjunWmcuelenaere: I have a rwps that is failing with the %Vl tag..
20:41:39kkurbjunWin checkwps that is
20:41:48mcuelenaereI'm not sure about remote wps'es
20:41:49eulerphidoes flac require more cpu usage?
20:42:41amiconnNo, flac is one of our fastest codecs
20:42:52eulerphicool
20:44:42mcuelenaerehmm where are the rwps's in SVN?
20:45:00saratogawith the other wpses i think
20:46:11mcuelenaerefind ~/rockbox/wps -name '*.rwps' yields nothing
20:46:27amiconnThe 'r' is added during packaging
20:46:45eulerphiyeah, i was right.. i can't mount while it's charging
20:47:01 Quit n00b81 ("Leaving")
20:47:52 Quit einhirn ("Miranda IM! Smaller, Faster, Easier. http://miranda-im.org")
20:48:01HillshumWhat's the fastest codec? wav?
20:48:26 Join bluebrother [0] (n=dom@rockbox/developer/bluebrother)
20:48:37kkurbjunWmcuelenaere: this is the rwps I have that is failing: http://pastebin.ca/1538008
20:49:10amiconnHillshum: I'd guess either wav or aiff, depending on target architecture
20:49:30amiconnOn arm it'd be wav and on coldfire it'd be aiff
20:49:39amiconn(because of matching endianness)
20:49:57 Quit PaulJam (".")
20:51:14bluebrothermcuelenaere: wouldn't it be better to move the chinachip strings for Rockbox Utility out of the c file and to the bootloader installation class?
20:51:45mcuelenaerebluebrother: how?
20:51:55 Join chandoo [0] (n=chandoo@ool-4353b978.dyn.optonline.net)
20:52:11mcuelenaeresplitting the chinachip_patch() up into smaller functions?
20:52:18mcuelenaeres/the//
20:52:37bluebrotheryes, and returning errors using return codes.
20:53:08bluebrotherit feels somewhat strange to me to have QObject::tr() in C functions. But maybe it's just a feeling ...
20:54:03mcuelenaereyes I know it's a bit hack'ish
20:54:14mcuelenaerebut it seemed better than no translation at all
20:54:25 Quit flydutch ("/* empty */")
20:54:46bluebrotheryep, that's true.
20:54:52*mcuelenaere doesn't really feel like rewriting chinachip_patch()..
20:54:58 Quit Hillshum (Remote closed the connection)
20:56:38 Join Zagor [242] (n=bjst@46.35.227.87.static.tab.siw.siwnet.net)
20:56:42pixelmakkurbjunW: does checkWPS know about the M:Robe remote?
20:58:38kkurbjunWpixelma: I'm not sure, but I think the only reason checkwps is built target specific is to make sure that all tags that would be supported are compiled into it so I think that an rwps run against the main mrobe500 build would be an appropriate way to do it
20:59:39pixelmahuh? But the main M:Robe500 will have different viewport declarations (with colours)
20:59:56kkurbjunWhmm, good point
21:00
21:00:13pixelmaI'm not sure how that works at all though
21:00:37kkurbjunWdid the theme site ever check rwps'?
21:01:39pixelmaI thought it does for the Irivers and so (as there are some themes that include RWPSs) but I'm guessing
21:03:27eulerphidoes rockbox not recognize the *.flac extension?
21:03:52eulerphimaybe i need to refresh the db
21:03:58MG_ManDosbox knows flacs
21:04:02MG_Manroxkbox*
21:04:05MG_Manjdpisahfd
21:04:08MG_ManYou know what I mean
21:05:06eulerphiah nvm
21:05:16AlexPMG_Man: yes
21:05:28 Join Hillshum [0] (n=hillshum@75-165-229-125.slkc.qwest.net)
21:05:56mcuelenaerekkurbjunW: it seems to error out on l.376 in checkwps.c
21:06:03mcuelenaere(viewport_parse_viewport)
21:06:56mcuelenaerehmm which is weird, as the lcd remote's depth is 1, not >= 2..
21:07:46kkurbjunWmcuelenaere: pixelma has a point about the viewports. I forgot that the mono screens have a different syntax for viewports
21:08:17mcuelenaerekkurbjunW: does it work on-target?
21:08:21eulerphiah.. i wasn't unmounting
21:08:29kkurbjunWmcuelenaere: yes, it works in the sim too
21:08:38mcuelenaerethen it should work in checkwps too
21:09:16mcuelenaeresomehow it's using SCREEN_MAIN even though I tell it to use SCREEN_REMOTE..
21:12:06CIA-61New commit by mcuelenaere (r22452): Fix checkwps for remote screens
21:14:47kkurbjunWmcuelenaere: great, works fine now, but only targets with remotes build
21:15:00mcuelenaereoops
21:16:10CIA-61New commit by mcuelenaere (r22453): Fix building checkwps on targets without a remote
21:20:02kkurbjunW:-D, it all works now
21:21:47kkurbjunWmcuelenaere: would it be possible to make it so that checkwps is not necessarily built for each target? I was thinking that if you have say three fake targets it might cover checkwps - a mono target with remote, a greyscale target with remote, and a color target with remote - each with touchscreen enabled
21:21:53 Part vitaliy
21:21:56kkurbjunWI'm not sure if that would cover everything though
21:22:22mcuelenaereno, there are also targets with and without RTC
21:22:30mcuelenaereand probably other stuff too
21:22:55kkurbjunWthe thinking that I had for that is that people could still make say an ipodvideo wps that includes the touchscreen tags and would pass
21:23:04mcuelenaereit's probably possible, but preferably something for Mr Someone ;)
21:23:09kkurbjunW:)
21:23:26mcuelenaerethey'd still have to resize the WPS' background for the target
21:23:34mcuelenaereie Onda uses 240x400 and M:Robe500 640x480
21:23:38kkurbjunWwell, the m:robe can run at 320x240 also
21:23:53kkurbjunWit's not currently, but originally I was using ipod video themes on it
21:24:01mcuelenaerethe Cowon D2 is 320x240, isn't it?
21:24:40 Quit Hillshum ("Ex-Chat")
21:24:53mcuelenaererasher: checkwps is rebuilt daily on the theme server, isn't it?
21:24:53kkurbjunWwiki says yes
21:25:00 Join Hillshum [0] (n=hillshum@75-165-229-125.slkc.qwest.net)
21:25:17kkurbjunW(to the D2 screen resolution)
21:26:13mcuelenaerekkurbjunW: some touchscreen tags pass now too for non-touchscreen targets IIRC
21:26:49kkurbjunWhmm, checkwps is segfaulting on the main screen wps now..
21:27:12kkurbjunWand the rwps
21:27:29MG_ManWell
21:27:41MG_ManI don't see why anyone would have touchtags on a non-touch target anyway
21:28:45kkurbjunWMG_Man: the problem is that the D2 for example shares the same screen size as the Video - the theme site would show the ipod video themes with the D2, and depending on how they are uploaded would or would not pass checkwps
21:29:14MG_Manah.
21:29:33MG_ManFor now, perhaps Video themes can bet kept out of the D2 section until it's al lsorted
21:29:40kkurbjunWthe other thing that I see is that you could design a theme that is mainly targetted for the ipod video, but you want to make it /touch aware/ for other people using other players
21:31:40CIA-61New commit by mcuelenaere (r22454): Checkwps: give wps_screen an initial value
21:31:48mcuelenaerekkurbjunW: try again (the segfaulting)
21:31:57mcuelenaereit shouldn't segfault on rwps though
21:32:38mcuelenaereuh, stupid mistake
21:33:13kkurbjunWwps passes now, no segfaults, but the rwps doesn't
21:33:31CIA-61New commit by mcuelenaere (r22455): Don't add #ifdef's without looking them up...
21:33:46mcuelenaerekkurbjunW: try again ;)
21:34:06pixelmakkurbjunW: the WPS parser also checks for the correct dimensions of viewports it seems, or placement of the bitmaps so that nothing ends up outside the screen. I think you need on for all screen sizes/colour depth combinations. I think RTC tags are no problem and will be ignored on targets without RTC (except the check for presence one), but for things like backdrop tag and album art and viewports, screen depth is important
21:35:15pixelmafor example 160x128 WPSs exist in all colour depths - backdrop and album art won't work on the monochrome (M;Robe1000) target, viewport definitions are different
21:36:11kkurbjunWhmm, the ipod video checkwps fails with the touchscreen tags
21:36:46kkurbjunWpixelma: true..
21:37:49pixelmawhy does my client still get sim builds? With the addition of more faster ckients it won't get ready with those before another client it seems :\
21:38:13pixelmaI mean - why does it get them first, why not some "easier" ones?
21:38:46 Quit JdGordon (Read error: 145 (Connection timed out))
21:41:33 Quit amiconn (Nick collision from services.)
21:41:34 Join amiconn_ [0] (i=quassel@rockbox/developer/amiconn)
21:41:44 Join pixelma_ [0] (i=quassel@p57A0B519.dip.t-dialin.net)
21:41:46 Quit pixelma (Nick collision from services.)
21:41:56 Nick amiconn_ is now known as amiconn (i=quassel@rockbox/developer/amiconn)
21:42:01 Nick pixelma_ is now known as pixelma (i=quassel@rockbox/staff/pixelma)
21:42:31 Quit avacore^ (Read error: 104 (Connection reset by peer))
21:44:25 Quit Hillshum (Read error: 110 (Connection timed out))
21:44:39 Join avacore [0] (n=avacore@1008ds1-rdo.0.fullrate.dk)
21:51:46 Quit stoffel_ (Read error: 104 (Connection reset by peer))
21:56:18 Join Hillshum [0] (n=hillshum@75-165-229-125.slkc.qwest.net)
21:56:47 Quit avacore (Read error: 104 (Connection reset by peer))
21:59:49 Join avacore [0] (i=nobody@1008ds1-rdo.0.fullrate.dk)
22:00
22:02:21 Nick Zarggg_ is now known as Zarggg (n=zarggg@65-78-69-194.c3-0.eas-ubr6.atw-eas.pa.cable.rcn.com)
22:04:18 Quit Hillshum (Read error: 60 (Operation timed out))
22:05:28 Join faemir [0] (n=faemir@78.33.109.163)
22:08:25 Quit Zarggg ()
22:08:58 Quit funman ("free(random());")
22:09:04 Join Zarggg [0] (n=zarggg@65-78-69-194.c3-0.eas-ubr6.atw-eas.pa.cable.rcn.com)
22:13:54 Join BdN3504 [0] (n=5ce53941@gateway/web/cgi-irc/labb.contactor.se/x-aaueerzragimrqru)
22:14:17***Saving seen data "./dancer.seen"
22:15:51 Quit Sajber^ ("Leaving.")
22:19:11 Join avacore^ [0] (i=nobody@1008ds1-rdo.0.fullrate.dk)
22:23:14BBBradleyis there a way to "force" a button press programatically? I want to press "menu" from a function call
22:25:06 Quit MG_Man (Read error: 113 (No route to host))
22:26:37rashermcuelenaere: I re-ran the checkwps build
22:26:56CIA-61New commit by mcuelenaere (r22456): Add CheckWPS entry to tools/configure
22:27:00rashermcuelenaere: private/checkwps/current/update.sh if you need it
22:27:05rashermcuelenaere: Nice!
22:27:14mcuelenaererasher: I forgot the SSH login..
22:28:29CIA-61New commit by mcuelenaere (r22457): Forgot a file
22:30:21 Quit avacore (Read error: 110 (Connection timed out))
22:30:23 Join MG_Man [0] (n=MGMan@11.208.101.97.cfl.res.rr.com)
22:31:09 Quit dfkt (Read error: 104 (Connection reset by peer))
22:35:29bluebrothernice having checkwps in the main buildsystem, now it needs to be a make target of a (n)ormal build ... ;-)
22:41:52amiconnkkurbjunW: There are also various combinations of pixel depths, not a single pixel depth per target
22:42:44 Join HellDragon_ [0] (i=jd@modemcable178.248-201-24.mc.videotron.ca)
22:42:45 Quit HellDragon_ (Read error: 104 (Connection reset by peer))
22:43:00amiconnGreyscale target with mono remote (H1x0), colour target with mono remote (H300), greyscale target with greyscale remote (M5), colour target with greyscale remote (X5)
22:43:38amiconnAfaik there are no targets with monochrome main lcd and a remote lcd of any kind, and also no colour remotes so far
22:45:33pixelmaif the M:Robe100 can use the same remote as the 500 there will be a mono-mono combination
22:46:44amiconnAh, forgot the mr100
22:49:10amiconnBut no colour remote, probably for technical reasons. It would need too much data for a simple serial link, and going parallel or very high speed serial would make the cable too expensive
22:55:52 Join Grahack [0] (n=chri@ip-222.net-82-216-222.rev.numericable.fr)
22:56:06 Quit Grahack (Read error: 54 (Connection reset by peer))
22:58:29 Quit yhuang ("Leaving")
22:59:23 Join GeekShad__ [0] (n=Antoine@153.225.192-77.rev.gaoland.net)
23:00
23:00:19 Join jboy [0] (n=langzeit@p5B17EAA4.dip.t-dialin.net)
23:01:21 Quit BBBradley ("CGI:IRC (EOF)")
23:05:03 Quit GeekShado_ (Read error: 60 (Operation timed out))
23:14:10MG_ManOk
23:14:16MG_ManI'm all done with it except the progress bar
23:15:00MG_ManAny suggestions other than finishing the progress bar?
23:15:01MG_Manhttp://img43.imageshack.us/img43/9020/notwinampwithart2.png
23:15:06MG_ManThis is taken from the sim btw
23:15:35 Quit kkurbjunW (Remote closed the connection)
23:15:48 Join kkurbjunW [0] (n=karlk@12.41.166.8)
23:16:14MG_ManThe whole ? and 0 for kbps/kHz is just a side effect of the SPC format
23:16:21MG_ManOne that I can't get around with conditionals
23:16:22MG_ManOh well
23:20:05 Join kkurbjun [0] (n=kkurbjun@rockbox/developer/kkurbjun)
23:20:10 Part kkurbjunW
23:23:16 Join iwonder [0] (i=chris243@c-24-118-138-250.hsd1.mn.comcast.net)
23:23:22iwonderhow do you add a song to a playlist?
23:23:27iwondereg one that is playing
23:23:51iwonderi have the playlist open, but some have errors due to being in other folders on pc but not ipod
23:26:13 Quit MG_Man ("Quitting")
23:33:01iwonderthere is no fucking option
23:33:10iwonderto add the goddamn song playing
23:33:14iwonderlong select
23:33:21iwonderyou have to use the Playlist catalog
23:33:29iwonderwhich of course doesn't say it has to be in a particular folder..
23:33:47iwonderand if it does, all my songs in my playlists will be error due to this folder difference
23:33:49AlexPYou can add a song to any playlist
23:34:01iwonderthen fucking tell me
23:34:05iwondergod damn you assholes
23:34:08iwonderfuck it
23:34:13AlexPplease stop now
23:34:17iwonderor be banned
23:34:19 Quit iwonder ()
23:34:27AlexPyou can add to any playlist that is playing
23:34:29AlexPtoo late
23:35:06 Join iwonder [0] (i=chris243@c-24-118-138-250.hsd1.mn.comcast.net)
23:35:09iwonderso.
23:35:11iwonderi wasn't banned.
23:35:13iwonderyet.
23:35:15iwonderbut probably will.
23:35:17iwonderso tell me how.
23:35:17CIA-61New commit by mcuelenaere (r22458): * Onda VX777: add support for its single physical button ...
23:35:19iwonder:O)
23:35:42bluebrotheriwonder: RTFM ...
23:36:03iwonderi did
23:36:05 Join MG_Man [0] (n=MGMan@97.101.208.11)
23:36:06iwonderyou fucking asshole
23:36:09 Join Hillshum [0] (n=hillshum@75-165-229-125.slkc.qwest.net)
23:36:19MG_Manwell hello to you too?
23:36:21iwonder:O)~
23:36:23iwonderahem
23:36:27iwonder~<:3
23:36:28iwonderflower
23:36:34iwonderbeauty-full in all its grace
23:36:49iwonderblooming
23:36:50MG_ManRight
23:36:53iwonderahem
23:36:59iwonderso what the fuck is this channel for?
23:37:07MG_ManI dont really know
23:37:07iwonderto ask questions and get quick answers?
23:37:11kkurbjunpatience
23:37:13BdN3504can the h100 display album art?
23:37:13MG_ManIts probably at the top of the page
23:37:15iwonderor to say read the fucking manual?
23:37:22MG_ManBoth
23:37:25MG_ManDepends on the question
23:37:26iwonderyou don't know
23:37:27pixelmaBdN3504: yes
23:37:30iwonderyou say you can
23:37:32iwonderbut you cannot
23:37:34BdN3504ty
23:37:37MG_Mancannot what
23:37:40iwonderyou have to use the Playlist Catalog
23:37:49BdN3504can i assume all grayscale models can read album art?
23:37:51iwonderi could code something better in my sleep
23:37:56iwondererr, design
23:37:58iwonder:)
23:38:06pixelmaiwonder: insulting won't get you any further
23:38:10pixelmaBdN3504: yes
23:38:11AlexPiwonder: Stop it now - if you want help be civil and stop insulting peope
23:38:19iwonderalex, you claimed you knew
23:38:19linuxstbiwonder: http://download.rockbox.org/manual/rockbox-h100/rockbox-buildch4.html#x7-610004.4
23:38:23iwonderso just give me simple
23:38:31AlexPask nicely
23:38:31MG_Maniwonder: Okay then, if you do believe so, go ahead and design better firmware for all of these DAPs
23:38:33bluebrotheriwonder: you really expect people answering your questions if you call them assholes?
23:38:38iwonderhehe
23:38:44iwonderMG_Man, it's not a belief
23:38:45iwonderit's a knowing
23:38:49AlexPI don't find it funny
23:38:52 Quit moos ("Rockbox rules the DAP world")
23:38:57iwonderand i'm not
23:39:01iwondersarcasm :O)~<
23:39:11MG_ManSo what is your question anyway
23:39:35Mode"#rockbox +o AlexP " by ChanServ (ChanServ@services.)
23:39:40eulerphiok, what should i do.. my original mp4 files are only around 2mb @ 64kbps.. when i convert them to flac it's like ~20mb
23:39:55MG_Maneulerphi: Thats basically what flacs are
23:40:00MG_ManMaxiumum audio quality
23:40:05linuxstbeulerphi: That's to be expected. What did you expect?
23:40:05BdN3504pixelma: thanks again. i am nearly finished writing viewports for the manual. i added six small files to make \opt work with examples. i hope that wpn't be something keeping it back from being comitted?
23:40:11MG_ManMP4s are pretty good too, better qulity than MP3 and less size
23:40:29eulerphii don't get why it takes so long for the mp4's to buffer
23:40:56Mode"#rockbox -o AlexP " by ChanServ (ChanServ@services.)
23:40:59eulerphiit stops every second
23:41:01 Quit killan ("( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com )")
23:41:02pixelmaBdN3504: hmm? Why do you need extra files (especially such a number)?
23:41:59eulerphianyone want a sample mp4?
23:42:03eulerphito see what i mean
23:42:06iwonderthere is NO "insert" in the Playlist submenu
23:42:10iwonderof the Context submenu
23:42:17AlexPYou have a playlist active?
23:42:25Hillshumeulerphi: Upconverting to FLAC is like taking a box of a dozen eggs and putting them all in a box for 2 dozen. Still the same amount of quality, but takes up more space
23:42:28AlexPAnd you long select on the song you want to add?
23:42:39BdN3504pixelma: just as i told you. using \opt in {example} gives me only weird shit and i don't want to spend another minute on it, because i tried every fucking possibilty and working with external files is only sultion that works
23:42:43BdN3504like a charm
23:42:50eulerphii would rather just be able to play the mp4's
23:42:55 Quit Zagor ("Clint excited")
23:43:00AlexPCould we all stop swearing so much?
23:43:08eulerphiwho is swearing?
23:43:19AlexPiwonder and BdN3504 recently
23:43:58iwonderalex, some of us are closer to death than others
23:44:01iwonderi'll leave it at that
23:44:04iwonderfor you to find out
23:44:04AlexPIrrelevent
23:44:08iwonderno, it is not
23:44:12BdN3504sorry, this was only to express my frustration which is at enormous high levels right now, because i spent about three hours on a stupid syntax thingy
23:44:12AlexPStay on topic and stay civil
23:44:30bluebrothereulerphi: are you running a recent build? IIRC there was some bug a while ago.
23:44:38 Join killan [0] (n=nnscript@c-0efa70d5.06-397-67626721.cust.bredbandsbolaget.se)
23:44:51 Quit Thundercloud (Remote closed the connection)
23:44:52pixelmaBdN3504: I can't imagine that it's such an amount of text you would heve to stuff it into extra files - just \opt{lcd_color}{\example{}}, \opt{lcd_whatever}{\example{}} in the same file
23:46:20AlexPpixelma: How is the M3 manual? :)
23:46:52 Quit MG_Man (Read error: 113 (No route to host))
23:46:53iwonderi've wasted enough time on stupid shit
23:46:57iwonderthat should be trivial
23:47:01iwondermy life fading away
23:47:04eulerphibluebrother: 3.3
23:47:05iwonderat every fucking moment
23:47:12scorche|shlast warning
23:47:15iwonderlast warning
23:47:16 Quit iwonder ()
23:47:29Mode"#rockbox +o scorche|sh " by ChanServ (ChanServ@services.)
23:47:42bluebrothereulerphi: I'm not sure if the issue I was talking about is present in 3.3, but I'd suggest updating to the most recent build and trying again
23:47:52Mode"#rockbox +b iwonder!*@* " by scorche|sh (n=scorche@rockbox/administrator/scorche)
23:48:55eulerphii'm just using the latest rbutil to update
23:49:01eulerphii did it just today actually
23:49:34bluebrotherand still experiencing the problem? Then it has to be something different.
23:50:03eulerphihere's a sample mp4 i'm trying to play.. http://filebin.ca/mzbtvd
23:50:55saratogathats an AAC-HE file
23:51:05 Join MG_Man [0] (n=MGMan@97.101.208.11)
23:51:08saratogaas I said hours ago you can't play those on such a slow CPU as you have
23:51:12BdN3504pixelma: i tried it that way, it doesn't even compile.
23:51:18 Join fml [0] (n=4fd3fef8@gateway/web/cgi-irc/labb.contactor.se/session)
23:51:20eulerphioh
23:51:26eulerphii didn't know how to tell
23:51:45MG_ManYour best bet would be to get a somewhat newer player
23:51:49*fml sees the symbol HAS_BUTTON_HOLD and asks himself whether HAVE_... should be used instead
23:51:54jboy!search friends
23:51:56MG_ManEven an ipod 4g BW would do I believe
23:52:01saratogawhy are you using AAC-HE anyway
23:52:03jboyxD :P
23:52:18pixelmaBdN3504: can't imagine that it didn't compile because of this system
23:52:28MG_Manwell anyway
23:52:42pixelmaMG_Man: the processor of an 4G Ipod is not much different to the one in the c200
23:52:46pixelmaif at all
23:52:53BdN3504actually, does it do any harm if i add six files? i mean there already is a very small file in the section i am writing in and it's for the player, so it has been there for a long time and no one has complained.
23:52:58MG_ManPerhaps a Photo or Video or something equivalent
23:53:15MG_ManAnyway, I'm thinking of getting an iriver h320 or h340
23:53:23MG_ManI'm pretty sure it's processor is strong enough
23:53:33MG_ManThe only problem is that h340s are hard to come by, even on ebay
23:53:42AlexPMG_Man: All the ipods are the same (after first and second gen)
23:53:54MG_ManI'd probably be better off getting an h320 and then upgrading the HDD to 40GB
23:54:30MG_ManEven the 5G isn't good enough to do those?
23:54:33MG_ManHmm
23:54:37AlexPSame processor
23:54:41MG_ManiPods are pretty shoddy then, aren't they
23:55:00MG_ManYou'd think they'd up more than display and space
23:55:10AlexPThey didn't need to
23:55:11pixelmaand more work spent on updating the screen
23:55:13saratogaMG_Man: if you don't know what processor the ipod use why would you give advice about the processors they use
23:55:34AlexPThe video has a specialised video chip we don't know how to use for the video decoding
23:55:40MG_ManI was just pretty sure it was tougher due to increased display quality, but I suppose that's completely different
23:56:11saratogayes it is completely different
23:56:18MG_ManSo how does an h320/340 measure up?
23:56:22saratogathe size of a screen in inches and the performance of a processor are not the same thing
23:56:43AlexPMG_Man: Please don't give advice about things you aren't sure about - we don't want someone buying a pointless player because of wrong information
23:56:46 Quit Omlet ()

Previous day | Next day