Go Back   DriverHeaven.net > Forums > Hardware and Related Topics > kX Project Audio Driver Support Forum > Effects and the DSP

Notices

Reply
 
LinkBack Thread Tools Display Modes
Old Sep 16, 2005, 01:59 PM   #1 (permalink)
radiocolonel.it
DriverHeaven Lover
 
radiocolonel.it's Avatar
 
Join Date: Jan 2005
Location: Italy
Posts: 192
radiocolonel.it is on a distinguished road

exclamation Widener Plugin

Hi, this is a simple but effective plugin i made:
it is simply increase the stereo image of the signal so don't use on mono sources!
I tried and i liked the way it worked so i thought somebody would like to try it, so
i u can download it here:


http://xoomer.virgilio.it/ars_acustica/Col_Widener.zip

I hope u enjoy it!
__________________

http://www.rossanodembech.it
radiocolonel.it is offline   Reply With Quote
Old Sep 16, 2005, 02:07 PM   #2 (permalink)
Maddogg6
Tail Razer
 
Maddogg6's Avatar
 
Join Date: Jun 2005
Location: Bernyurass, AZ - USA
Posts: 3,628
Maddogg6 will become famous soon enough

i get a forbidden error...

Maddogg6 is offline   Reply With Quote
Old Sep 16, 2005, 02:44 PM   #3 (permalink)
ROBSCIX
DriverHeaven Senior Member
 
ROBSCIX's Avatar
 
Join Date: Mar 2004
Posts: 1,694
ROBSCIX is on a distinguished road

Right click, Save Target as..works for me.
ROBSCIX is offline   Reply With Quote
Old Sep 16, 2005, 02:50 PM   #4 (permalink)
radiocolonel.it
DriverHeaven Lover
 
radiocolonel.it's Avatar
 
Join Date: Jan 2005
Location: Italy
Posts: 192
radiocolonel.it is on a distinguished road

Quote:
Originally Posted by Maddogg6
i get a forbidden error...

Yes, right click and save wors fine to me too so just try that way.
__________________

http://www.rossanodembech.it
radiocolonel.it is offline   Reply With Quote
Old Sep 16, 2005, 03:11 PM   #5 (permalink)
Maddogg6
Tail Razer
 
Maddogg6's Avatar
 
Join Date: Jun 2005
Location: Bernyurass, AZ - USA
Posts: 3,628
Maddogg6 will become famous soon enough

doh! - I should have known to try that - thanks....
Maddogg6 is offline   Reply With Quote
Old Sep 16, 2005, 03:54 PM   #6 (permalink)
radiocolonel.it
DriverHeaven Lover
 
radiocolonel.it's Avatar
 
Join Date: Jan 2005
Location: Italy
Posts: 192
radiocolonel.it is on a distinguished road

... Hey, some feedback would be appreciated!
__________________

http://www.rossanodembech.it
radiocolonel.it is offline   Reply With Quote
Old Sep 16, 2005, 07:08 PM   #7 (permalink)
eyagos
DriverHeaven Addict
 
Join Date: Dec 2002
Posts: 259
eyagos is on a distinguished road

Yes, the effect is really noticiable. Nice work.

Only one thing: You don't need to use the initial MACINTS tmp,0,in,4. Doing this, you break the 12dB 'save range' that DSP gives to all the effects. Just put MACINTS tmp,0,in,1 at the begining and MACS out,0,tmp,1 at the end.
eyagos is offline   Reply With Quote
Old Sep 16, 2005, 08:20 PM   #8 (permalink)
Maddogg6
Tail Razer
 
Maddogg6's Avatar
 
Join Date: Jun 2005
Location: Bernyurass, AZ - USA
Posts: 3,628
Maddogg6 will become famous soon enough

for whatever reason - that link doesnt work with firefox (latest version) - the zip is broken if I right click and save link location as. something with the server i suspect.. ?? I had to use IE to d/l it.

just fyi...
Maddogg6 is offline   Reply With Quote
Old Sep 16, 2005, 08:33 PM   #9 (permalink)
Maddogg6
Tail Razer
 
Maddogg6's Avatar
 
Join Date: Jun 2005
Location: Bernyurass, AZ - USA
Posts: 3,628
Maddogg6 will become famous soon enough

and yes... nice little gadget there.. 1000 thanx.
Maddogg6 is offline   Reply With Quote
Old Sep 16, 2005, 09:37 PM   #10 (permalink)
Tril
S-3D enthusiast
 
Tril's Avatar
 
Join Date: Sep 2004
Location: Canada
Posts: 1,402
Tril is on a distinguished road
System Specs

Nice little plugin. Following eyagos recommandation and modifying the code slightly, I would use the following code :

Code:
; New microcode
name "ColHQ WIDENER";
copyright "Copyright (c) 2004.";
created "09/15/2005";
engine "kX";
; comment "";
guid "c72fd388-235e-4719-975b-3fe33e646856";
; -- generated GUID
input inl, inr
output outl, outr
temp tmpl1, tmpr1, tmpl2, tmpr2
control WIDE=0
macs tmpl1, inl, 0, 0 ;tmpl1 = inl
macs tmpr1, inr, 0, 0 ;tmpr1 = inr
macints tmpl2, tmpl1, tmpr1, -1 ;tmpl2 = tmpl1 - tmpr1
macints tmpr2, tmpr1, tmpl1, -1 ;tmpr2 = tmpr1 - tmpl1
macs	outl, tmpl1, tmpl2, WIDE ;outl = tmpl1 + tmpl2 * WIDE
macs	outr, tmpr1, tmpr2, WIDE ;outr = tmpr1 + tmpr2 * WIDE
end
It saves two instructions because the four last lines can now be combined to two. I changed the macsn to macints. That's not really necessary but I prefer it that way. There is some very small rounding in the multiplication sometimes with macs. Using macints with -1, it's certain that the signal is being inverted without any attenuation. Of course that's very far from being audible so it does not really matter.
Tril is offline   Reply With Quote
Old Sep 16, 2005, 10:06 PM   #11 (permalink)
Russ
DriverHeaven Extreme Member
 
Join Date: Jan 2005
Posts: 4,009
Russ has a spectacular aura aboutRuss has a spectacular aura aboutRuss has a spectacular aura about

Don't forget that you can use output registers more than once, and thus can use them as temporary registers (i.e. you can eliminate tmpl2 and tmpr2 above as well).

i.e.

macs tmpl1, inl, 0, 0;
macs tmpr1, inr, 0, 0;
macints outl, tmpl1, tmpr1, -1;
macints outr, tmpr1, tmpl1, -1;
macs outl, tmpl1, outl, WIDE;
macs outr, tmpr1, outr, WIDE;
Russ is offline   Reply With Quote
Old Sep 16, 2005, 10:16 PM   #12 (permalink)
Max M.
d/h member-shmember
 
Max M.'s Avatar
 
Join Date: Dec 2002
Location: from the edge of the deep green sea
Posts: 2,137
Max M. is on a distinguished road

another opt.:
Code:
macs tl, inl, 0, 0
macs tr, inr, 0, 0
macs outr, tl, tr, -1
macs outl, tl, outr, WIDE
macsn outr, tr, outr, WIDE
Max M. is offline   Reply With Quote
Old Sep 16, 2005, 10:55 PM   #13 (permalink)
Max M.
d/h member-shmember
 
Max M.'s Avatar
 
Join Date: Dec 2002
Location: from the edge of the deep green sea
Posts: 2,137
Max M. is on a distinguished road

or even more:
Code:
macs outl, inl, 0, 0
macs outr, inr, 0, 0
macs t, outl, outr, -1
macs outl, outl, t, WIDE
macsn outr, outr, t, WIDE
8-)
Max M. is offline   Reply With Quote
Old Sep 16, 2005, 11:01 PM   #14 (permalink)
Russ
DriverHeaven Extreme Member
 
Join Date: Jan 2005
Posts: 4,009
Russ has a spectacular aura aboutRuss has a spectacular aura aboutRuss has a spectacular aura about

Ok Max, now you are just showing off.


j/k
Russ is offline   Reply With Quote
Old Sep 17, 2005, 04:01 AM   #15 (permalink)
radiocolonel.it
DriverHeaven Lover
 
radiocolonel.it's Avatar
 
Join Date: Jan 2005
Location: Italy
Posts: 192
radiocolonel.it is on a distinguished road

.... Thanks guys!!! thanks to everybody, your feedback made me happy!!!
Thanks double to Tril, Russ and Max always so kind in helping me with dane!!!
I just waked up, now it's 11 a.m., i have my coffe (as every good italian) and then i'll try your suggestions!!!
__________________

http://www.rossanodembech.it
radiocolonel.it is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump




 

 
Powered by: vBulletin
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Artwork by Allan 'Zardon' Campbell, vBulletin implementation by Craig '5320' Humphreys based on original artwork by Ratchet.

All times are GMT -5. The time now is 12:26 AM. Copyright ©2008 DriverHeaven.net