Utilitybase chatlog - 2006-04-17

Back to overview|Highlight a word

00:36:31   <-- bones has quit (Quit: This computer has gone to sleep)
01:05:37   <-- Orgin has quit (Read error: Connection reset by peer)
01:13:39   --> number6 (~user@15e08640.31b34b44.dialup.citynet.net) has joined #amigadev
01:18:56   <-- number6 has left #amigadev
01:24:47   --> number6 (~user@2d996ff7.31b34b44.dialup.citynet.net) has joined #amigadev
01:39:02   <-- redblue has quit (Quit: Happiness isn't something you experience; it's something you remember. -OL)
02:02:20   --> redblue (~star@25b55acd.25ea667f.mt.videotron.ca) has joined #amigadev
02:16:57 ssolie redblue: hi there.. you in Canada?
02:18:11 wegster think he's idle, have tried before. redblue - if you're anywhere near ontario, and own a classic, please shoot amail to adam/ack, can find email addy if you ping me or ssolie..
02:36:55   --> Belxjander (~Belxjande@53886e8.36cd2766.xtra.co.nz) has joined #AmigaDev
02:45:29 nicomen he was awakae at 2:52 ;)
02:45:45 Belxjander TGR is back on channel ?
02:45:56 nicomen hm?
02:46:20 Belxjander Grim Reaper up there ---->>>>
02:46:27 nicomen sure
02:46:34 nicomen it's the Services bot
03:16:25   <-- Belxjander has quit (Ping timeout: 180 seconds)
03:32:22   <-- number6 has left #amigadev
04:03:32   --> jahc (~jahc@jahc.Amigaworld.Net) has joined #amigadev
04:04:06 jahc I'm recording from mic with ahi, saving to a buffer.. it plays back fine, and I can save it as PCM WAV (by putting a header in front then saving the buffer)..
04:04:23 jahc but when I try to send the buffer over the net, it sounds a bit like a dalek when its played back
04:04:55 jahc long buffer[BUFFERSIZE];
04:04:55 jahc long playback_send_buffer[2000000];
04:05:01 jahc long playback_buffer[2000000];
04:05:18 jahc for(int total_sent=0, bytesleft=playback_buffer_size; total_sent<playback_buffer_size;)
04:05:18 jahc {
04:05:18 jahc for(count=0, count2=total_sent; count<4096 && count2 < playback_buffer_size; count++, count2++)
04:05:18 jahc {
04:05:18 jahc playback_send_buffer[count]=playback_buffer[count2];
04:05:19 jahc }
04:05:22 jahc sent_amount = send(dcc_socket, (send_type)playback_send_buffer, count, 0);
04:05:24 jahc if (sent_amount != -1)
04:05:26 jahc {
04:05:28 jahc total_sent += sent_amount;
04:05:30 jahc bytesleft -= sent_amount;
04:05:31 jahc printf("sent %i bytes, %i left\n",sent_amount,bytesleft);
04:05:34 jahc }
04:05:36 jahc }
04:05:38 jahc ........
04:05:40 jahc and when I recieve it at the other end:
04:05:44 jahc recv_amount=recv(dcc_socket, (recv_type)buffer, BUFFERSIZE-1, 0);
04:05:45 jahc if(recv_amount==0) disconnect_connection();
04:05:45 jahc else if(recv_amount != -1)
04:05:47 jahc {
04:05:55 jahc for(count=0; count<recv_amount; count++)
04:05:56 jahc playback_buffer[playback_buffer_size+count]=buffer[count];
04:05:56 jahc playback_buffer_size+=recv_amount;
04:05:56 jahc }
04:06:38 jahc ..
04:06:48 jahc once everythings done sending and recieving at either end, the "
04:06:52 jahc buffers are the same size
04:07:45 jahc but sound different
04:15:11 wegster no idea on sound but count2 still isn't needed in there.
04:26:41 jahc ok thanks wegster.
04:27:15 jahc count2 is needed I think
04:27:35 jahc I cant increment total_sent until I know it was sent successfully
04:28:03 jahc send() doesnt garauntee it can send the whole lot in one go
04:28:37 jahc oh well. I'm talking with bean privately by PM on aw.net. Hopefully he'll be able to give me some pointers.
04:30:44 jahc I dont think its a playback issue, I think its an issue of sending/recieving long instead of char
04:42:04   <-- ssolie has quit (Quit: OS4 makes computing fun)
06:00:58   <-- jahc has quit (Quit: <klesterjr> Immoralized for all eternity <klesterjr> Immortalized, I mean )
06:34:36   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
06:34:41   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
06:34:55   -!- Rigo_ is now known as Rigo
06:44:59   --> Belxjander (~Belxjande@53886e8.36cd2766.xtra.co.nz) has joined #AmigaDev
06:51:14   --> bones (~darren@1a9e3c85.11de379d.demon.co.uk) has joined #amigadev
06:57:40   <-- Belxjander has quit (Ping timeout: 180 seconds)
07:01:01   --> Belxjander (~Belxjande@1e706c24.540cf85.xtra.co.nz) has joined #AmigaDev
07:21:05   <-- Belxjander has quit (Ping timeout: 180 seconds)
07:53:10   <-- Ami603[AW] has quit (Read error: Connection reset by peer)
08:00:46   <-- redblue has quit (Ping timeout: 180 seconds)
08:05:19   --> Orgin (~Banana@Network-Admin.AmigaWorld.net) has joined #amigadev
08:10:57   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
08:11:03   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
08:11:03   -!- Rigo_ is now known as Rigo
08:15:00   --> redblue (~star@12ed360d.12ed360d.mt.videotron.ca) has joined #amigadev
08:15:01   --> jayhal (~jk@17833c43.1fbd6a28.dsl.pipex.com) has joined #amigadev
09:01:02   --> Ami603 (~coco@6a63aef.1ccf6d0.dynamicIP.rima-tde.net) has joined #amigadev
09:01:04 Ami603 hi
09:01:09 Ami603 hey wegster: check mail
09:04:03   <-- jayhal has quit (Read error: Connection reset by peer)
09:36:07   <-- Ami603 has quit (Quit: AmigaOS4, teh Real thing!)
09:48:24   <-- freaks has quit (Ping timeout: 180 seconds)
09:51:12   --> Ami603 (~coco@6a63aef.1ccf6d0.dynamicIP.rima-tde.net) has joined #amigadev
10:19:04   --> Willium (~william@1e706c24.297f4433.dsl.pipex.com) has joined #amigadev
10:30:43   <-- Willium has quit (Quit: )
10:40:03   --> Bit-Gone (~sdfhdsr@24785cc1.35474391.adsl.cybercity.dk) has joined #amigadev
11:10:51   <-- Ami603 has quit (Quit: AmigaOS4, teh Real thing!)
11:40:53   --> Belxjander (~Belxjande@1e706c24.540cf85.xtra.co.nz) has joined #AmigaDev
11:42:51   --> racs (~not.tod@2ae78891.1366b407.catv.broadband.hu) has joined #amigadev
11:42:52 MrBot [racs] Pimp my flowers! ;)
11:42:55 racs hi there
11:44:40   --> Ami603 (~coco@6a63aef.1ccf6d0.dynamicIP.rima-tde.net) has joined #amigadev
12:18:59   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
12:19:03   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
12:19:06   -!- Rigo_ is now known as Rigo
12:21:20   <-- Belxjander has quit (Ping timeout: 180 seconds)
13:28:21   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
13:28:26   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
13:28:28   -!- Rigo_ is now known as Rigo
13:49:42 racs gone
13:49:44 racs bye all
13:49:50   <-- racs has quit (Quit: )
14:06:22   <-- redblue has quit (Quit: Happiness isn't something you experience; it's something you remember. -OL)
14:12:54   --> redblue (~star@3a15f1cd.322bbfaa.mt.videotron.ca) has joined #amigadev
15:04:34   <-- Ami603 has quit (Read error: Connection reset by peer)
15:21:50   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
15:21:54   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
15:21:57   -!- Rigo_ is now known as Rigo
15:27:25   --> Belxjander (~Belxjande@1e706c24.540cf85.xtra.co.nz) has joined #AmigaDev
15:31:05   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
15:31:09   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
15:31:11   -!- Rigo_ is now known as Rigo
15:33:30   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
15:33:35   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
15:33:35   -!- Rigo_ is now known as Rigo
15:35:32   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
15:35:38   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
15:35:50   -!- Rigo_ is now known as Rigo
15:36:58   --> Ami603 (~coco@6a63aef.1ccf6d0.dynamicIP.rima-tde.net) has joined #amigadev
15:37:01 Ami603 hi
15:37:04   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
15:37:08   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
15:37:12   -!- Rigo_ is now known as Rigo
15:37:45 Ami603 hi
15:38:01 Ami603 anyone here used OS4 window.class prop gadgets?
15:38:16 nicomen you? ;)
15:38:21 Ami603 nope
15:39:07 Ami603 i can send and receive some data from those via Set/GetAttrs, but i don't receive any message events from those
15:40:19   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
15:40:23   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
15:40:24   -!- Rigo_ is now known as Rigo
15:42:02   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
15:42:08   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
15:42:08   -!- Rigo_ is now known as Rigo
15:43:47   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
15:43:51   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
15:43:54   -!- Rigo_ is now known as Rigo
15:44:56   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
15:45:00   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
15:45:03   -!- Rigo_ is now known as Rigo
15:54:54   --> racs (~not.tod@2ae78891.1366b407.catv.broadband.hu) has joined #amigadev
15:54:54 MrBot [racs] Pimp my flowers! ;)
15:54:56 racs back
15:59:09   --> BinoX (~BinoX@2850d5e8.24785cc1.demon.co.uk) has joined #amigadev
15:59:15 BinoX Gooood evening
15:59:19 BinoX afternoon even
15:59:24 BinoX or whatever it is where you live
16:00:13 Belxjander Hi there BinoX
16:01:06 BinoX I'm pleased to announce that, even though it takes about 30 mins to do it, my prog is now rendering simple pages with quite a bit of formatting
16:01:34 Belxjander BinoX: lovely...
16:01:40 BinoX unfortunately... as soon as it finishes it locks my system... so I'm investigating that atm too... lol
16:03:14 Ami603 whoa
16:03:16 Ami603 congrats ;)
16:03:19 BinoX thx
16:03:26 BinoX by simple though.. I mean really simple.. lol
16:03:46 BinoX basic tags... span, b, i, div, a, etc
16:04:21 BinoX table support is still being worked on... heh... have a seperate copy of the source for that beast.. lol
16:04:27 Ami603 if we didn't enjoy simple steps,we would be using something else instead of Amiga ;)
16:04:40 BinoX lol true :)
16:05:04 BinoX I'm back on the pen and paper side of things drawing flow diagrams to find out where I'm going wrong.. lol
16:06:23 BinoX also, even though the socket code works, I haven't put it in the main code... ('cause header parsing is a bit out)
16:06:36 BinoX but locally all seems fine
16:07:24 BinoX anyway.. off to try and find my errors now.. heh
16:07:26   <-- Belxjander has quit (Ping timeout: 180 seconds)
16:10:48 Ami603 BinoX: have you tried using GDB?
16:15:51 BinoX Ami603: Nope.. heh.. but I'm old fashioned..
16:16:11 BinoX Then again.. when I go through debugging stuff I tend to optimise the code around it too.. heh
16:16:34 BinoX I mention that 'cause I realised that I'm drawing everything twice...
16:18:07 BinoX and I just found a big flaw that won't appear in my simple tests.. heh
16:18:10 BinoX (oops)
16:19:56 Ami603 that's why i suggested to make small tests until you understand each thing properly
16:20:36 BinoX lol.. it was a small test.. I put == instead of <=
16:21:50   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
16:21:55   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
16:22:08   -!- Rigo_ is now known as Rigo
16:45:04 racs BinoX
16:45:17 BinoX That's me
16:46:23 BinoX What can I do ya for?
16:46:28 racs I know :)
16:46:38 racs just noticed you are around
16:46:46 BinoX lol
16:46:56 Ami603 so now you can kick him around? ;)
16:48:17 racs I wouldn't
16:48:59 Ami603 then i will! <x>_<x>
16:49:44 BinoX lol.. nooo!
16:50:29 Ami603 am i asking so dumb questions that nobody wants to answer or is too difficult to find an answer?
16:51:17 racs Ami603: because you have asked...?
16:51:36 nicomen Ami603: try a publi forum
16:52:19 Ami603 i'm waiting on os4-invite because i think that feature was added/made public on V50
17:12:31 Ami603 cya guys
17:12:37   -!- Ami603 is now known as Ami603[AW]
17:12:38 BinoX c ya
17:18:26 racs BinoX: how is the page rendering going recently? :)
17:30:16   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
17:30:20   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
17:30:23   -!- Rigo_ is now known as Rigo
17:52:39   --> number6 (~user@2142b218.31b34b44.dialup.citynet.net) has joined #amigadev
18:21:33   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
18:21:37   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
18:21:40   -!- Rigo_ is now known as Rigo
18:33:40 racs gone
18:33:54 racs bye
18:34:00   <-- racs has quit (Quit: )
18:38:31   <-- Bit-Gone has quit (Quit: )
18:42:30   <-- number6 has quit (Ping timeout: 180 seconds)
18:52:10   --> number6 (~user@2142b218.31b34b44.dialup.citynet.net) has joined #amigadev
19:24:47   <-- number6 has left #amigadev
19:44:30   --> jayhal (~jk@17833c43.1fbd6a28.dsl.pipex.com) has joined #amigadev
20:10:01   <-- redblue has quit (Ping timeout: 180 seconds)
20:24:06 zerohero launch->seglist->ps_JMP = 0x4ef9;
20:24:11 zerohero what is that doing?
20:24:33 zerohero i'm guessing it's doing something very bad on os4? :)
20:31:56   <-- jayhal has quit (Quit: )
21:22:04   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
21:22:08   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
21:22:08   -!- Rigo_ is now known as Rigo
21:41:17   --> Varthall (~Varthall@a6c6559.2142b218.f4.ngi.it) has joined #amigadev
21:56:48   --> Rigo_ (~repairs@113ade0c.14012855.blueyonder.co.uk) has joined #amigadev
21:56:54   <-- Rigo has quit (SVSKilled: NickServ (GHOST command used by Rigo_))
21:57:09   -!- Rigo_ is now known as Rigo
22:48:52   --> freaks (~nyarlatho@21b52b10.25ea667f.abo.wanadoo.fr) has joined #amigadev
22:52:50   --> ssolie (~ssolie@2f31aeca.1ccf6d0.abhsia.telus.net) has joined #amigadev
23:05:58   --> wegsterOS4 (~wegster@2d996ff7.3d716d1f.res.rr.com) has joined #amigadev
23:37:04   --> number6 (~user@a9a2d23.31b34b44.dialup.citynet.net) has joined #amigadev