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 2004-01-15

00:00:36trackjZagor now we know the lcd can do greyscale, is there a posibillity of viewing TIFF/JPEG/BMP files?
00:01:04Zagoryes. haven't you seen the lena image that dragon showed?
00:01:24trackjno I haven't
00:02:01Zagortry it
00:02:07trackjwhere do I find it Zagor?
00:02:36Zagorright next to the doom movie
00:02:43trackjok
00:02:47trackjill check it out later
00:06:48Timbelsis this real? http://rockbox.haxx.se/doom/gogogo.jpg
00:06:50Timbelsw0w
00:07:11Timbelsin wich build can we find this :D never knew i bought me a game machine ;)
00:07:20 Nick edx{code} is now known as edx (edx@pD9EA999A.dip.t-dialin.net)
00:07:46trackjyea but i dont' think the processor is powerful enough for games
00:07:52 Quit edx ()
00:08:23Timbelsbut it can view pics?
00:08:36Timbelsu already found that url zagor was talking about?
00:08:38trackjtheoretically
00:08:40trackjyea
00:08:43*Timbels is curious
00:09:23***Saving seen data "./dancer.seen"
00:11:52 Nick trackj is now known as track (jirc@ACBF37D4.ipt.aol.com)
00:11:59trackmissspelt my own name
00:12:59Timbelshehe
00:13:13tracklol
00:13:21trackThe FM recorder wasnt' a huge success
00:15:11 Join midknight2k3 [0] (zakk@AC9FCF12.ipt.aol.com)
00:16:14trackhi mid
00:16:32midknight2k3hey
00:16:34midknight2k3hi zagor
00:16:36tracku alright?
00:16:42midknight2k3yeh
00:16:46trackim gonna step out for a moment be back soon
00:16:49midknight2k3ok
00:16:51midknight2k3bye
00:17:02Timbelshey mid
00:17:10midknight2k3hey Timbels
00:17:18midknight2k3Zagor, having a bit of trouble..
00:17:29midknight2k3how can we pass a setting to peakmeter
00:17:56Zagor?
00:18:25midknight2k3well for example
00:18:34midknight2k3how do you pass the "Peak Release" to the peak meter?
00:18:37midknight2k3where does it get it?
00:19:02Zagorin the settings struct
00:19:58midknight2k3i've been trying to pass redzone width following the same exact way the peak release is.. it appears to be broken. :)
00:20:21Timbelswhere do u guyz stored that lena file?
00:20:41midknight2k3OOH
00:20:47midknight2k3you reorganized the menus!
00:20:53Zagoryup
00:21:01midknight2k3i was thinking
00:21:04midknight2k3what about modes?
00:21:10midknight2k3"Classic" and "Simplistic"?
00:21:18Zagornope :)
00:21:26midknight2k3i won't push the matter :)
00:21:35midknight2k3i'm just curious about this peakmeter stuff
00:21:41midknight2k3i must be leaving something out
00:22:10midknight2k3but what...
00:23:03midknight2k3and i've got an etch a sketch in store!
00:23:40midknight2k3ok so peakmeter.c gets peak release from settings.h right?
00:23:50Zagoryes
00:24:00midknight2k3 int peak_meter_release; /* units per read out */
00:24:03midknight2k3that must be it.
00:24:15Zagorlooks right
00:24:52midknight2k3and this would be corresponding in settings.c:
00:24:53midknight2k3 config_block[0xb1] = global_settings.peak_meter_release |
00:24:54 Join [IDC]Dragon [0] (~idc-drago@p508617F9.dip.t-dialin.net)
00:24:57midknight2k3hi idc
00:25:06[IDC]DragonHi
00:25:12midknight2k3is this ok for the redzone then zagor?
00:25:12midknight2k3 config_block[0xf6] = (unsigned char)global_settings.peak_meter_redwidth;
00:25:28midknight2k3and like so in settings.h
00:25:29midknight2k3 int peak_meter_redwidth; /* range 0-30db */
00:25:29Zagoryeah, unless f6 is used for something else
00:25:37midknight2k3said f6-ff was free
00:26:14midknight2k3opps
00:26:19midknight2k3i had it at f6
00:26:23midknight2k3when the next one was f5
00:26:31midknight2k3may fix it
00:26:56midknight2k3ok so we're green there.
00:27:04midknight2k3now for settings menu, where we SET the item.
00:27:58midknight2k3does this look right in settings_menu?
00:28:01midknight2k3static bool peak_meter_redwidth(void)
00:28:01midknight2k3{
00:28:01midknight2k3bool retval = false;
00:28:01DBUGEnqueued KICK midknight2k3
00:28:01midknight2k3 int redwidth = peak_meter_redwidth;
00:28:01midknight2k3 retval = set_int(str(LANG_REDZONE), "dB",
00:28:01***Alert Mode level 1
00:28:01midknight2k3 &peak_meter_redwidth, NULL,
00:28:03midknight2k3 5, 0, 30);
00:28:05midknight2k3 peak_meter_redwidth = (unsigned char)redwidth;
00:28:07midknight2k3 return retval;
00:28:09midknight2k3}
00:28:11midknight2k3nasty tabs
00:28:31Zagorthat's why you should always use spaces, never tab
00:28:37midknight2k3i just fixed it
00:28:43midknight2k3i thought the custom was tab
00:28:46midknight2k3apparently not
00:29:02midknight2k3luckily my editor lets me auto replace tabs with 4 spaces
00:29:05midknight2k3anyways
00:29:08midknight2k3looks ok otherwise
00:29:09midknight2k3?
00:29:11[IDC]DragonZagor: congrats to the bookmark release!
00:29:20Zagorthanks. finally... :-)
00:29:32[IDC]DragonTime to changet the subject line?
00:29:49midknight2k3and here it is in the peak meter menu
00:29:50midknight2k3 { str(LANG_REDZONE) , peak_meter_redwidth },
00:29:55midknight2k3i hope this all goes in ok
00:29:57Zagor:-)
00:30:02Zagormidknight2k3: you never read the setting
00:30:16midknight2k3in the peak meter code?
00:30:51Zagoryes
00:31:04midknight2k3i'm getting to that ! :) so does it up to here look ok?
00:31:07Zagor"int redwidth = peak_meter_redwidth;" <−−- where is the setting
00:31:31midknight2k3is that what i must do?
00:31:54midknight2k3here's what i have in the code so far:
00:31:55midknight2k3static int redwidth = 10;
00:32:01Zagoryou must read from the global_settings struct. i.e: "int redwidth = global_settings.redwidth;"
00:32:02midknight2k3not correct
00:32:06midknight2k3ohh
00:32:07midknight2k3ok
00:32:09midknight2k3thank you
00:32:12midknight2k3that should fix it
00:33:08Zagoryeah. i'm off to bed now. bye all.
00:33:13 Quit Zagor ("Client exiting")
00:33:42midknight2k3aww
00:34:59midknight2k3can you help me finish this, idc?
00:35:02midknight2k3;)
00:36:03[IDC]DragonI'm almost finished, too
00:36:06[IDC]Dragon;)
00:36:09midknight2k3with what
00:36:10midknight2k3?
00:36:17[IDC]Dragonwith the day
00:36:32midknight2k3i hope not to be long
00:36:34[IDC]Dragonand with a video player update
00:36:39Timbelshey dragon
00:36:48midknight2k3ooh cool
00:38:02***Alert Mode OFF
00:41:16trackok im back
00:43:37midknight2k3whats new with the vid player, idc?
00:47:45 Join retrug [0] (~xx@pD9EB7C8C.dip.t-dialin.net)
00:47:49retrughi
00:47:56midknight2k3hi
00:48:00 Part retrug
00:48:43 Join ove [0] (501@ca-sqy-12-166.w80-8.abo.wanadoo.fr)
00:48:45trackhi mid
00:49:06midknight2k3new redzone track
00:49:25trackvool
00:49:26trackcool
00:49:31trackseen the Gmini 220?
00:49:41ovehi all
00:49:45Timbelshi
00:50:40oveI have some recording feature request
00:50:46trackso what does this redzone do mid?
00:52:02midknight2k3WTF DO YOU THINK
00:52:04midknight2k3forget it track
00:52:18trackyes i know what it does, what new features does it do?
00:52:40midknight2k3how about custom width
00:52:59CtcpIgnored 1 channel CTCP requests in 0 seconds at the last flood
00:52:59*Timbels np: RedZone-RedZone_Bad_Boy_Story
00:53:08trackok
00:53:09trackcool
00:56:14oveI'd like to have some "smart" filename choice in a list of names, postfixed with increment or date/hour like it is now
00:57:05ove-> replace the Rxxxx.mp3 name by <Next name in the list>-xxx.mp3 automatically
00:58:24ovebecause I record my own instrument playing, and I play a limited bunch of pieces, but very often
00:58:31oveso renaming files is really boring
01:00
01:01:05midknight2k3track
01:01:07midknight2k3er
01:01:07midknight2k3nm
01:01:16midknight2k3ove: perahps
01:02:34 Quit track ("Leaving")
01:03:24midknight2k3bye all!
01:03:45 Quit midknight2k3 ("bye")
01:07:24 Quit [IDC]Dragon ()
01:16:48 Quit ove ("Leaving")
01:43:00 Join joshN [0] (user17@204.251.225.254)
01:43:00 Quit Timbels (Read error: 54 (Connection reset by peer))
02:00
02:04:44 Quit oxygen77 ("ChatZilla 0.8.31 [Mozilla rv:1.4/7]")
02:09:25***Saving seen data "./dancer.seen"
02:13:16 Quit joshN (Read error: 60 (Operation timed out))
02:33:43 Join Bluechip [0] (~bluechip@cpc3-colc1-3-0-cust61.colc.cable.ntl.com)
02:37:10 Quit AciD ("ac1d.free.fr")
03:00
03:12:18 Part Bluechip
03:24:46 Join midknight2k3 [0] (zakk@AC9B22EC.ipt.aol.com)
03:26:09midknight2k3hi
03:36:15midknight2k3aww
03:36:18midknight2k3where is everyone
03:36:21midknight2k3earhurts hi
03:39:04midknight2k3bluey
03:39:07midknight2k3where is he
04:00
04:09:29***Saving seen data "./dancer.seen"
05:00
05:00:52 Join mecraw__ [0] (~mecraw@69.2.235.2)
05:02:25 Quit scott666 (Read error: 54 (Connection reset by peer))
05:02:25 Quit NibbIer (Read error: 54 (Connection reset by peer))
05:02:26 Quit mecraw_ (Connection reset by peer)
05:02:32 Join scott666 [0] (scott666@c-24-245-58-245.mn.client2.attbi.com)
05:03:15midknight2k3hi scotts
05:11:30 Join joshN [0] (user17@204.251.225.254)
05:18:26midknight2k3hi joshN
05:34:24joshNhi :-)
05:34:34midknight2k3whats up?
05:35:28joshNnot much
05:50:13scott666yes!! my cd burner works again
05:50:26midknight2k3FU scott
05:50:32midknight2k3ooh send me a copy of simcity
05:50:56scott666whats your address?
05:51:04midknight2k3lol
05:51:07scott666lol
05:51:13midknight2k3ok
05:51:16midknight2k325 maple street
05:51:19midknight2k3maple ave
05:51:22midknight2k3southwest
05:51:34midknight2k3northsouth 34567
05:51:43midknight2k3some, where
05:51:46midknight2k3usa
05:51:47scott666mapleville, MP, MAPLE?
05:51:54midknight2k3sure
06:00
06:04:33midknight2k3CODERS!
06:04:35midknight2k3UNITE!
06:04:38midknight2k3and HELP MK!
06:04:42midknight2k3;)
06:04:47scott666whatcha doin?
06:04:52midknight2k3etchersketch
06:04:57scott666lol
06:05:00scott666plugin?
06:05:04midknight2k3no,really?
06:05:07midknight2k3yeh
06:05:10midknight2k3its, pretty cool
06:05:14midknight2k3it works and all
06:05:16scott666yeah, stupid question
06:05:29scott666hmmm...is that a game, an app, or a demo?
06:05:48scott666can you save etch-a-sketch drawings?
06:06:17scott666ooh! make the archos motion sensitive so shaking it clears the screen
06:06:23scott666wheres track when you need him...
06:06:30midknight2k3er
06:06:36midknight2k3uhh
06:06:44midknight2k3demo?
06:06:45midknight2k3well
06:06:45midknight2k3game
06:06:48midknight2k3but not a game game
06:07:17midknight2k3just a demo game
06:07:17midknight2k3APP
06:07:17midknight2k3thats it
06:07:17DBUGEnqueued KICK midknight2k3
06:07:17midknight2k3yes i plan to let you save them
06:09:32***Saving seen data "./dancer.seen"
06:11:11midknight2k3here, scott?
06:11:17scott666i am now
06:11:34scott666save the current configuration of pixels on the screen?
06:11:34midknight2k3now
06:11:39midknight2k3lets speak biz niss
06:11:49midknight2k3"penis!
06:12:05scott666you're in the penis business, eh?
06:12:10midknight2k3yeh
06:12:13midknight2k3yuh*
06:12:39scott666i won't inquire further...
06:12:50midknight2k3ok anyways
06:12:50midknight2k3back to biz niss
06:12:52midknight2k3 rb->lcd_drawpixel(endx, endy);
06:12:53midknight2k3 rb->lcd_drawline(startx, starty, endx, endy);
06:12:56midknight2k3its busted officer
06:14:43midknight2k3well
06:14:43midknight2k3wtf
06:14:57scott666why would you want to just draw 1 pixel?
06:15:08midknight2k3sstfu
06:15:12scott666its an etch-a-sketch
06:15:18midknight2k3STFU I SAID
06:15:24midknight2k3thats not the whole code
06:15:24midknight2k3lol
06:15:26scott666you can only go in lines
06:15:32midknight2k3aww boy.
06:15:33midknight2k3here we go.
06:15:41scott666it has to follow the rules of etch-a-sketchism
06:15:53scott666you can go up, down, left or right.
06:16:01midknight2k3I KNOW DIPSHIT
06:16:12scott666you cant just add a pixel!
06:16:19midknight2k3 I DIDNT
06:16:23scott666etch-a-sketchs don't even HAVE pixels
06:16:28midknight2k3OK THATS IT
06:16:29midknight2k3FORGET IT
06:16:29scott666god
06:16:32scott666lol
06:16:36midknight2k3dammit
06:16:36midknight2k3wtf
06:16:49scott666heh, couldnt resist
06:17:00scott666but go on, whats broken about it?
06:17:06CtcpIgnored 1 channel CTCP requests in 0 seconds at the last flood
06:17:06*midknight2k3 slaps scott666 around a bit with a large trout
06:17:07midknight2k3slap slap slap
06:17:09midknight2k3time for full screen peak meters
06:17:11midknight2k3WOOTS
06:17:19midknight2k3audio_analyzer.rock
06:17:20midknight2k3weets
06:17:29midknight2k3can you code
06:17:49scott666code? yes
06:17:59midknight2k3very well?
06:18:10scott666i just dont know the more rockbox-specific stuff
06:18:16scott666yeah
06:18:22midknight2k3cool
06:18:24scott666just not for rockbox-specific stuff
06:18:26midknight2k3you are neat
06:18:29midknight2k3well still
06:18:33midknight2k3i just finished c for dummies vol 1
06:18:37scott666cause i never got around to setting up an SDK
06:19:00scott666i know C++, there cant be that big a difference though, can there?
06:19:01scott666heh
06:19:11midknight2k3not really
06:19:16midknight2k3c is c++ with less craps
06:24:27adi|homeactually.. depending on how you look at it.. proper c++ is complete different from c
06:24:29adi|homeno objects
06:24:36adi|homec has none..
06:24:46midknight2k3adi hey
06:24:49adi|homehowdy
06:24:54midknight2k3remember when you got hassled by ollitrop :) LOL
06:24:59adi|home:)
06:25:05midknight2k3that was so funny
06:25:11midknight2k3but anyways
06:26:05midknight2k3adi: i understand you are pretty good with code?
06:26:05midknight2k3:)
06:26:26adi|homecertain code... i can handle
06:26:28adi|homewhy?
06:26:38midknight2k3my etcher is troubled
06:26:50midknight2k3ah i think it just needs recoding
06:26:53scott666you never said what was troubled about it
06:26:53midknight2k3like earHurts
06:26:56midknight2k3was saying
06:27:01midknight2k3scots: quiet down
06:27:09adi|homedefine 'troubled'
06:27:21adi|homebecause.. it may just be 'troubled' between the keyboard and chair
06:27:45midknight2k3its troubled moving the cursor without drawing behind it
06:29:22scott666you cant move the cursor without drawing
06:29:38scott666or do you mean it doesnt draw when you move it?
06:31:52 Join midk2k3 [0] (zakk@AC933DE6.ipt.aol.com)
06:33:55midk2k3grr
06:33:58midk2k3stupid junk
06:34:01midk2k3ok wht did i miss
06:34:59scott666nothing
06:35:09midk2k3what is there to say
06:36:29scott666blorf?
06:37:26midk2k3TFF
06:38:06scott666war3x:TFT?
06:38:18 Join Nibbler [0] (nibbler@port-212-202-73-89.reverse.qsc.de)
06:39:33 Quit midknight2k3 (Read error: 60 (Operation timed out))
06:39:52 Nick midk2k3 is now known as midknight2k3 (zakk@AC933DE6.ipt.aol.com)
06:50:33 Quit scott666 ("sleep > all")
06:59:31 Join midk2k3 [0] (zakk@AC958956.ipt.aol.com)
07:00
07:01:37midk2k3ear?
07:13:24 Quit midknight2k3 (Connection timed out)
07:13:29 Nick midk2k3 is now known as midknight2k3 (zakk@AC958956.ipt.aol.com)
07:13:54 Join matsl [0] (~matsl@dhcp86.contactor.se)
07:50:46 Quit Nibbler (Read error: 54 (Connection reset by peer))
07:53:54 Quit joshN (Read error: 110 (Connection timed out))
07:58:28 Quit midknight2k3 ()
08:00
08:09:33***Saving seen data "./dancer.seen"
08:50:44 Join oxygen77 [0] (~Chris@pauguste-7-82-66-87-78.fbx.proxad.net)
09:00
09:07:14 Join midhaarrocker [200] (~Phil@197.28.204.212.sr1.DTM1.ip.versanet.de)
09:24:09 Join kornshell [0] (~kornshell@pa-valley3b-2.pit.adelphia.net)
09:24:31kornshell*yawn* just wanted to say thanks guys... rockbox kicks ass [:
09:25:09kornshellalso wanted to let you know that those of us who swore off irc before efnet went down the tubes didnt know that openprojects.net switched to freenode... ya'll still link to op.net on the docs page
09:27:36 Join Schnueff [0] (~mah@test0.cs.uni-sb.de)
09:34:31 Join Nibbler [0] (nibbler@port-212-202-73-89.reverse.qsc.de)
09:51:21 Quit Nibbler (Read error: 54 (Connection reset by peer))
09:58:19 Join LinusN [200] (~linus@labb.contactor.se)
10:00
10:01:30midhaarrockerLinusN: is that temp***_at_haxx.se a selfdestructing account?
10:09:01LinusNnot self destructing, but soon-to-be-destroyed
10:09:15midhaarrocker:)
10:09:16dwihno\o/
10:09:20dwihnoGreetings everyone!
10:09:37***Saving seen data "./dancer.seen"
10:10:09LinusNhello dwihno
10:11:09*dwihno is back in the loop.
10:11:50dwihno-> work -> weekend -> work -> weekend -> work -> weekend -> salary -> work ... and so forth
10:12:44midhaarrockerdwihno: Learn how to paraglide or somehting. :)
10:23:30 Quit Schnueff (Read error: 110 (Connection timed out))
10:25:00dwihnomidhaarrocker: well, I bought a really really nice Djorkaeff shirt! :)
10:27:02midhaarrockergoogle suggests that Djorkaeff is something that concerns soccer
10:30:50dwihnoYes :)
10:31:10dwihnoA soccer player indeed.
10:36:20 Join BoBB [0] (~bob@ip68-106-225-254.ph.ph.cox.net)
10:36:59 Join b0ther [0] (jirc@dialin-145-254-219-066.arcor-ip.net)
10:41:10 Quit BoBB_ (Read error: 110 (Connection timed out))
10:50:59 Quit b0ther ("Leaving")
10:58:56 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
11:00
11:34:16 Part LinusN
11:34:46 Join Nibbler [0] (nibbler@port-212-202-73-89.reverse.qsc.de)
11:43:55 Quit AciD ("www.cpm-fr.com")
11:48:28 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
12:00
12:09:40***Saving seen data "./dancer.seen"
12:11:39 Join c0utta [0] (noemail@dialup-38.101.220.203.acc03-waym-adl.comindico.com.au)
12:22:47 Quit AciD (Read error: 54 (Connection reset by peer))
12:31:38 Quit c0utta{zZZ} (Read error: 110 (Connection timed out))
12:32:15c0uttayay, i'm dead
12:57:22 Quit Nibbler (Read error: 104 (Connection reset by peer))
13:00
13:19:03midhaarrockerc0utta: who killed you?
13:19:09 Join Schnueff [0] (~mah@schnuller.cs.uni-sb.de)
13:28:11 Quit MT ("changing servers")
13:36:36 Join MT [0] (mt@no.beer.for.beating.me.uk)
13:42:32 Join LinusN [200] (~linus@labb.contactor.se)
13:46:14 Quit earHurts (Remote closed the connection)
13:46:46 Join earHurts [0] (~zic@pool-138-88-112-191.res.east.verizon.net)
13:49:53 Quit earHurts (Remote closed the connection)
13:50:06 Join earHurts [0] (~zic@pool-138-88-112-191.res.east.verizon.net)
13:51:23 Quit earHurts (Remote closed the connection)
13:51:40 Join earHurts [0] (~zic@pool-138-88-112-191.res.east.verizon.net)
14:00
14:03:29 Join Schnueff_ [0] (~mah@test0.cs.uni-sb.de)
14:09:44***Saving seen data "./dancer.seen"
14:15:48 Join earHertz [0] (~chatzilla@pool-138-88-30-103.res.east.verizon.net)
14:19:14 Quit Schnueff (Read error: 110 (Connection timed out))
14:22:56 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
14:24:21 Quit earHurts (Read error: 60 (Operation timed out))
14:38:41 Join Nibbler [0] (nibbler@port-212-202-73-89.reverse.qsc.de)
14:42:47 Join Schnueff [0] (~mah@schnuller.cs.uni-sb.de)
14:47:14 Quit Schnueff_ (Read error: 60 (Operation timed out))
14:48:01 Quit AciD (Read error: 54 (Connection reset by peer))
14:50:27 Quit Schnueff ("leaving")
15:00
15:06:09 Quit elinenbe (" Try HydraIRC -> http://www.hydrairc.com <-")
15:22:56 Quit MT ("changing servers")
15:25:17 Join MT [0] (mt@no.beer.for.beating.me.uk)
15:35:57 Join elinenbe [0] (trilluser@207-237-224-55.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com)
15:36:31elinenbeLinusN: are you also implementing a rmdir()?
15:37:08LinusNnot yet
15:38:15 Join Schnueff [0] (~mah@test0.cs.uni-sb.de)
15:39:02 Nick LinusN is now known as LinusN|away (~linus@labb.contactor.se)
15:52:12 Nick LinusN|away is now known as LinusN (~linus@labb.contactor.se)
15:53:19 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
15:53:40 Quit kornshell ()
15:54:59 Quit earHurts (Remote closed the connection)
15:58:26 Join Dogger [0] (~jimmy@adsl-63-200-37-31.dsl.snfc21.pacbell.net)
16:00
16:08:09 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
16:08:10 Quit oxygen77 (Read error: 104 (Connection reset by peer))
16:08:37 Quit earHurts (Remote closed the connection)
16:09:48***Saving seen data "./dancer.seen"
16:10:50 Join joshN [0] (user17@204.251.225.254)
16:11:01 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
16:11:11earHurtsxxxx
16:11:17earHurtsyyyyy
16:11:57midhaarrockerearHurts: Keyboard still broken? (type yyyy for yes or many many y for no) :)
16:13:22earHurtsI'm testing a irc app I modified
16:13:38earHurtssorry, I moved my testing to an unused channel
16:14:06 Quit dsg (Read error: 104 (Connection reset by peer))
16:14:08 Join dsg [0] (~david@pasky.xs4all.nl)
16:14:20 Join oxygen77 [0] (~Chris@pauguste-7-82-66-87-78.fbx.proxad.net)
16:16:42 Quit Schnueff (Read error: 60 (Operation timed out))
16:24:35 Quit earHurts (Remote closed the connection)
16:26:13 Quit BoBB (Read error: 54 (Connection reset by peer))
16:26:29 Join BoBB [0] (~bob@ip68-106-225-254.ph.ph.cox.net)
16:27:26 Join Timbels [0] (Timbels@qn-213-73-224-142.quicknet.nl)
16:27:36Timbelshi all
16:27:38 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
16:28:05 Quit BoBB (Read error: 113 (No route to host))
16:28:06midhaarrockerhi
16:28:59 Join BoBB [0] (~bob@ip68-106-225-254.ph.ph.cox.net)
16:29:47Timbelsmidhaarrocker (or any one else awake) u ever use the program id3browse?
16:30:06midhaarrockerno
16:30:10Timbelshmm damn
16:30:19Timbelsit has some strange bug here
16:30:30 Quit BoBB (Read error: 113 (No route to host))
16:31:12Timbelswhile cataloging my music it put the first letter of the album name twice in the dir
16:31:22 Quit earHurts (Remote closed the connection)
16:31:34 Join BoBB [0] (~bob@ip68-106-225-254.ph.ph.cox.net)
16:31:49Timbelslike this: AA Rush Of Blood To The Head.m3u
16:31:56TimbelsAAcapulco.m3u
16:31:58Timbelsetc
16:32:01Timbelsany clues?
16:32:06 Quit BoBB (Client Quit)
16:32:13Timbelsartist, title, year, genre is working good
16:33:13 Join BoBB [0] (~bob@ip68-106-225-254.ph.ph.cox.net)
16:33:37 Quit BoBB (Client Quit)
16:33:48*midhaarrocker has no clues
16:33:57webmindwe know
16:34:12Timbelsghehe
16:34:36 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
16:34:40midhaarrockerwebmind: I have no clue how you can know that.
16:34:55webmindthat's what i mean
16:35:26 Join methangas [0] (methangas@0x50c61de4.virnxx10.adsl-dhcp.tele.dk)
16:35:28*midhaarrocker needs a clue plugin
16:36:31 Join BoBB [0] (~bob@ip68-106-225-254.ph.ph.cox.net)
16:37:26*Timbels needs a cue plugin
16:37:27Timbels;)
16:37:38 Quit earHurts (Remote closed the connection)
16:37:42*Timbels trows some clues to midhaarrocker
16:37:54*midhaarrocker ducks and avoids them
16:39:42Timbelsgrr
16:42:22 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
16:42:55 Quit earHurts (Remote closed the connection)
16:44:32 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
16:45:14 Quit BoBB ("Lost terminal")
16:47:17 Join BoBB [0] (~bob@ip68-106-225-254.ph.ph.cox.net)
16:47:21 Quit BoBB (Client Quit)
16:47:40 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
16:51:25 Quit earHurts (Remote closed the connection)
16:51:32 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
16:52:04 Quit earHurts (Remote closed the connection)
16:52:22 Quit Dogger ("Client Exiting")
16:52:27 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
16:53:15 Join BoBB [0] (~bob@ip68-106-225-254.ph.ph.cox.net)
16:55:53 Quit earHurts (Remote closed the connection)
16:57:51 Part LinusN
16:58:46 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
16:58:53 Quit BoBB (Read error: 113 (No route to host))
17:00
17:02:19 Quit Nibbler ("reboot :(")
17:03:08 Quit Timbels ()
17:07:03 Join Nibbler [0] (nibbler@port-212-202-73-89.reverse.qsc.de)
17:11:55 Quit earHurts (Remote closed the connection)
17:12:02 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
17:24:02 Quit midhaarrocker (Read error: 54 (Connection reset by peer))
17:34:55 Join BoBB [0] (~bob@ip68-106-225-254.ph.ph.cox.net)
18:00
18:07:54 Quit Nibbler (Read error: 104 (Connection reset by peer))
18:09:52***Saving seen data "./dancer.seen"
18:14:05 Quit matsl (Remote closed the connection)
18:16:26 Quit joshN (Read error: 60 (Operation timed out))
18:28:26 Join hardeep [0] (1098@208.247.65.237)
18:38:54 Join edx [0] (edx@pD9EA999A.dip.t-dialin.net)
19:00
19:05:36 Join edx{tower} [0] (edx@pD9EAB01F.dip.t-dialin.net)
19:05:58 Nick edx{tower} is now known as edx{alt} (edx@pD9EAB01F.dip.t-dialin.net)
19:25:27 Quit edx (Read error: 110 (Connection timed out))
19:27:09 Quit earHurts (Remote closed the connection)
19:27:21 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
19:27:39 Quit earHurts (Remote closed the connection)
19:32:40 Join maedhros [0] (~maedhros@62.97.197.254)
19:32:42 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
19:34:20maedhrosQuestion! When I have flashed the ROM, I really don't need the ajbrec file in the root folder, right? Unless I boot with the F1-key pressed down?
19:35:39 Join quelsaruk [0] (~justme@193.136.159.169)
19:35:44quelsarukhej
19:40:50 Nick edx{alt} is now known as edx (edx@pD9EAB01F.dip.t-dialin.net)
19:40:56 Nick edx is now known as edx{code} (edx@pD9EAB01F.dip.t-dialin.net)
19:41:34maedhroswhat is the rockbox.ucl-file?
19:42:30quelsarukthe file that you flash
19:42:54maedhrosok
19:43:01quelsaruk:)
19:43:06maedhrosso when I'm done flashin, I really don't need it anymore?
19:43:09 Quit earHurts (Remote closed the connection)
19:43:17quelsarukthat is...
19:43:18 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
19:43:24 Quit earHurts (Remote closed the connection)
19:43:37maedhrosok... *del rockbox.ucl*
19:44:04quelsarukyou just need it when upgrading rockbox on flash (re-flashing the second image or however it's said)
19:44:50maedhrosWon't be doing that until the next release...
19:45:19 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
19:45:24 Quit earHurts (Remote closed the connection)
19:45:33quelsarukummm
19:45:38quelsarukit's safe
19:46:15quelsaruki mean.. updating that image is secure, and if 1 daily build has a bug, you can update with next day one...
19:46:27quelsarukand it's faster than loading from the drive
19:46:27 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
19:46:28quelsaruk:)
19:46:32 Quit earHurts (Read error: 104 (Connection reset by peer))
19:46:49maedhrosHehe, yeah. That's true
19:47:16maedhrosBut still. I prefer to stick with the official releases.
19:47:22quelsarukreally?
19:47:40quelsarukand lose all new stuff added to rockbox daily?
19:48:06maedhrosNothing is more anoying than going to the bus in the morning, and then to discover a major bug in the daily build
19:48:09quelsaruksince the very first day i started using rockbox i always use the bleeding edge code :)
19:48:22maedhroshehe
19:48:27quelsaruki love risk
19:49:13maedhrosSo you knew about rockbox -before- you bought the archos?
19:49:52 Quit hardeep ("[BX] Leggo my Eggo!")
19:49:56quelsarukno, i bought my recorder 3 and a half years ago
19:50:10maedhrosreally?
19:50:13quelsarukyes
19:50:14quelsaruk:)
19:50:14maedhrosIs the recorder that old?
19:50:17quelsarukumm
19:50:20quelsarukyes
19:50:26quelsarukrecorder 6
19:50:38quelsaruk(mine hasn't got serial number in the back)
19:50:44maedhroslol!
19:51:34 Join NibbIer [0] (nibbler@port-212-202-73-89.reverse.qsc.de)
19:52:01maedhrosDoes you archos also shut down if you, like, move those blue muffs a little?
19:52:59quelsarukmy box shuts down if i do a lot of things... but i have some solder points broken
19:53:05maedhrosok
19:53:16quelsaruk3,5 years in my hands... is a loooong time
19:53:22quelsaruki've bought a new one
19:53:25maedhrosI mean, if the archos jbr is that old you'd think they would fix that. The muff bug.
19:53:40quelsaruki don't know
19:53:52quelsarukthey don't really fix anything
19:54:16maedhroshehe. i know.
19:54:21quelsarukmy recorder version was 1.15
19:54:33quelsarukthe last one is 1.27 (1.28)
19:55:11quelsarukbut they just removed some minor bugs and added.... few things since the first version
19:55:13maedhros1.27d :p
19:55:28maedhrosi know...
19:55:57maedhrosi think original firmware my was 1.26.
19:56:05maedhrosoops...
19:56:13maedhrosthat came out wrong
19:56:21quelsaruk:)
19:56:29 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
20:00
20:02:42 Quit earHurts (Remote closed the connection)
20:02:51 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
20:03:09earHurts#join dsss
20:04:02 Quit earHurts (Remote closed the connection)
20:04:09 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
20:04:21 Quit earHurts (Remote closed the connection)
20:04:33quelsaruki'm leaving..
20:04:49quelsarukcu .. later? maybe :)
20:04:55 Part quelsaruk
20:09:55***Saving seen data "./dancer.seen"
20:14:34 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
20:15:28maedhrosI get an error when launching chip8 and viewer...
20:18:14 Join wake [0] (~wake@HSE-Montreal-ppp32446.qc.sympatico.ca)
20:19:00maedhrosI cannot launche the chip8 plugin nor the viewer plugin... Using official release 2.1
20:24:03 Quit earHurts (Remote closed the connection)
20:24:12 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
20:24:33earHurts#join #dds
20:26:27 Quit AciD (Read error: 60 (Operation timed out))
20:27:11*maedhros just read the manual.
20:27:23*maedhros will stop asking stupid questions
20:29:59 Quit earHurts (Remote closed the connection)
20:30:21 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
20:35:43 Join joshN [0] (user17@204.251.225.254)
20:36:17 Part maedhros
20:54:17 Quit NibbIer (Read error: 104 (Connection reset by peer))
21:00
21:01:45 Nick c0utta is now known as c0utta{afk} (noemail@dialup-38.101.220.203.acc03-waym-adl.comindico.com.au)
21:02:50 Quit joshN (Read error: 60 (Operation timed out))
21:45:41 Quit earHurts (Remote closed the connection)
21:45:49 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
21:45:53 Quit wake ("rebooting")
21:45:58 Quit earHurts (Remote closed the connection)
21:47:02 Join bmidy57 [0] (pHiL^b0riN@235.77.203.213.internet9tcollecte.9massy1-1-ro-bas-2.9tel.net)
21:47:05bmidy57hi all
21:47:32bmidy57I d like to thanks the people to have finnaly integrate the bookmark into the cvs.
21:47:45bmidy57no more needs to patch ..
21:47:55 Join scott666 [0] (scott666@c-24-245-58-245.mn.client2.attbi.com)
21:59:38 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
22:00
22:00:27 Quit earHurts (Remote closed the connection)
22:02:18 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
22:02:39 Quit earHurts (Remote closed the connection)
22:02:52 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
22:06:11 Join Zagor [0] (~bjst@1-1-3-36a.sk.sth.bostream.se)
22:08:47 Join [IDC]Dragon [0] (~idc-drago@pD9512F18.dip.t-dialin.net)
22:09:19 Quit earHurts (Remote closed the connection)
22:09:26 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
22:09:49[IDC]DragonHi guys!
22:09:51 Quit earHurts (Remote closed the connection)
22:09:54bmidy57hi
22:09:57***Saving seen data "./dancer.seen"
22:10:12[IDC]DragonLots of cvs activity, I like it!
22:10:23[IDC]DragonRockboxing ahead...
22:10:25bmidy57are there some projects / volunteer to add support for .lnk
22:11:57Zagorbmidy57: no. it's a horrible horrible format that we don't want to support
22:12:09[IDC]DragonZagor: I'd like your final word on how to solve the volume setting issue for plugin playback.
22:12:53bmidy57Zagor: I have some code source in pure C only a few line that show how to extract uinfo from it , are you interrested ?
22:13:44Zagorsure, send it to bjorn@haxx.se
22:13:50Zagoror dcc me right now
22:13:56bmidy57ok
22:15:35Zagor[IDC]Dragon: sorry, i forgot much of the issue. why don't we just add mpeg_sound_set in the plugin api?
22:15:53[IDC]DragonI did, in my uncommitted version.
22:16:06[IDC]DragonBut I need the set value
22:16:22[IDC]DragonBecause somehow the volume is at 0
22:16:27[IDC]Dragon(muted)
22:16:46[IDC]DragonSo I wouldn't know on what to set it
22:17:08[IDC]DragonI proposed to expose the setting struct
22:17:15Zagorhang on (real life interrupt)
22:17:29[IDC]Dragonbut any change there would have to break the plugin API version
22:17:33[IDC]Dragonsure.
22:17:47bmidy57zagor: if you find some times to take alook, perhaps only the support for the link to directory will be enough for Rockbox .
22:17:52*elinenbe likes CVS activity
22:18:08 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
22:18:32elinenbebmidy57: the problem with supporting the link format is then linux users will want the ln -s format supported and then mac users will want alias supported...
22:18:51[IDC]Dragonelinenbe: did you try the "improved" video player?
22:18:56elinenbeZagor: we are nearing the 200KB range again... food for thought...
22:19:10elinenbe[IDC]Dragon: not yet, but I will try it out as soon as I pull a cpy of the CVS
22:19:25elinenbeI will check in out in 30 min... will you still be here?
22:19:30[IDC]Dragonhow close are we (for FM)?
22:19:45[IDC]Dragonelinenbe: probably not, don't worry
22:20:06elinenbe[IDC]Dragon: I try it now −− just for yoU!
22:20:24[IDC]DragonI said don't worry
22:20:27bmidy57elinenbe: A solution will be to make our custom lnk, like a simple text file that contains the directory where we wants to jump, I thjink it will be simple enough to code.
22:20:33elinenbeyou don't worry...
22:21:11Zagorelinenbe: nah, we've got 23 KB left. no worries.
22:21:20elinenbeZagor: haha :D
22:21:42Zagorwe'll be moving out some stuff to plugins soon too (like vbrfix for instance)
22:21:56[IDC]Dragonflashing helps ;)
22:22:13elinenbeZagor: as we get more and more plugins, we NEED to have a method of organization...
22:22:22[IDC]Dragonwe can grow to ~400kB there
22:22:39Zagorelinenbe: yeah, we're on it
22:22:56Zagor[IDC]Dragon: too bad not everyone can flash
22:23:02elinenbeZagor: couldn't we also implement ucl into the loaded firmware?
22:23:06[IDC]Dragondon't tell me...
22:23:29Zagorelinenbe: if we really need >200KB, we can always make a two-stage loader
22:23:56Zagorbut I don't want a >200KB firmware anyway, since it takes away from the buffer
22:24:16[IDC]Dragon8MB rulez ;)
22:24:22Zagorhehe
22:24:40[IDC]Dragondon't tell me not everybody can solder in that chip.
22:24:59Zagoryou'll do it for them? ;)
22:25:17[IDC]Dragondefinitely
22:25:21[IDC]Dragonnot
22:25:29Zagor:)
22:25:29elinenbe[IDC]Dragon: I like the changes, but I would really like synched sound.
22:25:42[IDC]Dragonelinenbe: in progress...
22:26:07elinenbeI have loaded a simpsons episode mp3 and then synced it to the video file, but it keeps going out of synch during bitswapping, etc.
22:26:09 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
22:26:24[IDC]DragonOnce Zagor answers my questions, we're closer (no offense)
22:26:26 Quit earHurts (Remote closed the connection)
22:26:34 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
22:26:52elinenbe[IDC]Dragon: also settings to force backlight on for plugins, etc.
22:26:58 Quit earHurts (Remote closed the connection)
22:27:01[IDC]Dragonabout a loader: that can actually be faster
22:27:05 Join earHurts [0] (~zic@pool-138-88-30-103.res.east.verizon.net)
22:27:07Zagori'm undecided if I think plugins should access the settings. it increases flexibility, but also incompatibility.
22:27:16[IDC]Dragonbecause Archos' descrambling is slow
22:27:23Zagortrue
22:27:38 Quit earHurts (Remote closed the connection)
22:27:42elinenbedo we still deal with Archos descrambling if we are flashed?
22:27:47Zagorno
22:28:04[IDC]Dragonyou deal with ucl decompression instead
22:28:07elinenbethat is what I thought.
22:28:25elinenbebut the ucl decompression takes no time... (at least no noticable time)
22:28:30elinenbebe back in 30
22:30:01 Join track [0] (jirc@ACBA9372.ipt.aol.com)
22:30:08trackhi boys
22:36:25 Join NibbIer [0] (nibbler@port-212-202-73-89.reverse.qsc.de)
23:00
23:04:45 Join Timbels [0] (Timbels@qn-213-73-224-142.quicknet.nl)
23:04:51Timbelsevenin
23:04:52 Quit [IDC]Dragon ()
23:05:44trackhi tim
23:05:48trackZagor is very quiet
23:09:54Timbelshehe
23:09:59Timbelsmaybe he is asleep?
23:10:01Timbels;)
23:10:11TimbelsZagor has been idle 5mins 51secs
23:10:17Timbelswell guess not
23:10:17Timbels;)
23:12:48Zagorbmidy57: that code just reinforces my opinion not to support .lnk files. just look att all that cruft!
23:14:01trackZagor what are lnk files?
23:14:11Zagorwindows shortcuts
23:14:17trackoh
23:14:17tracklol
23:14:51 Nick edx{code} is now known as edx{physics} (edx@pD9EAB01F.dip.t-dialin.net)
23:22:08 Quit methangas (" I love my HydraIRC -> http://www.hydrairc.com <-")
23:38:11 Join hardeep [0] (1098@208.247.65.237)
23:39:18 Quit bmidy57 (Read error: 104 (Connection reset by peer))
23:49:46Zagorhey, why hasn't anyone told me resume is borken?
23:53:28Timbelsi did..
23:54:44Timbels[23:57] <Zagor> Timbels: yes, i've noticed problems with resume too. we might have broken it with the recent bookmark change.
23:54:44Timbels[23:57] <trackj> lol
23:54:44Timbels[23:57] <Zagor> i will look at it tomorrow
23:55:13Timbelsu should stop drinking all those beers Zagor, its bad for ur memory
23:55:14Zagorheh, true. well why haven't you reminded me? ;)
23:55:15Timbels;)
23:55:19Timbelsehehe
23:58:10trackyea Zagor too much boozing is bad for u
23:58:13track;-)

Previous day | Next day