|
| Notices |
Welcome to the DriverHeaven.net forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
 |
|
Sep 16, 2005, 01:59 PM
|
#1 (permalink)
|
|
DriverHeaven Lover
Join Date: Jan 2005
Location: Italy
Posts: 192
|
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! 
|
|
|
Sep 16, 2005, 02:07 PM
|
#2 (permalink)
|
|
Tail Razer
Join Date: Jun 2005
Location: Bernyurass, AZ - USA
Posts: 3,628
|
i get a forbidden error...

|
|
|
Sep 16, 2005, 02:44 PM
|
#3 (permalink)
|
|
DriverHeaven Senior Member
Join Date: Mar 2004
Posts: 1,694
|
Right click, Save Target as..works for me.
|
|
|
Sep 16, 2005, 02:50 PM
|
#4 (permalink)
|
|
DriverHeaven Lover
Join Date: Jan 2005
Location: Italy
Posts: 192
|
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. 
|
|
|
Sep 16, 2005, 03:11 PM
|
#5 (permalink)
|
|
Tail Razer
Join Date: Jun 2005
Location: Bernyurass, AZ - USA
Posts: 3,628
|
doh! - I should have known to try that - thanks....
|
|
|
Sep 16, 2005, 03:54 PM
|
#6 (permalink)
|
|
DriverHeaven Lover
Join Date: Jan 2005
Location: Italy
Posts: 192
|
... Hey, some feedback would be appreciated!
|
|
|
Sep 16, 2005, 07:08 PM
|
#7 (permalink)
|
|
DriverHeaven Addict
Join Date: Dec 2002
Posts: 259
|
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.
|
|
|
Sep 16, 2005, 08:20 PM
|
#8 (permalink)
|
|
Tail Razer
Join Date: Jun 2005
Location: Bernyurass, AZ - USA
Posts: 3,628
|
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...
|
|
|
Sep 16, 2005, 08:33 PM
|
#9 (permalink)
|
|
Tail Razer
Join Date: Jun 2005
Location: Bernyurass, AZ - USA
Posts: 3,628
|
and yes... nice little gadget there.. 1000 thanx.
|
|
|
Sep 16, 2005, 09:37 PM
|
#10 (permalink)
|
|
S-3D enthusiast
Join Date: Sep 2004
Location: Canada
Posts: 1,402
|
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.
|
|
|
Sep 16, 2005, 10:06 PM
|
#11 (permalink)
|
|
DriverHeaven Extreme Member
Join Date: Jan 2005
Posts: 4,009
|
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;
|
|
|
Sep 16, 2005, 10:16 PM
|
#12 (permalink)
|
|
d/h member-shmember
Join Date: Dec 2002
Location: from the edge of the deep green sea
Posts: 2,137
|
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
|
|
|
Sep 16, 2005, 10:55 PM
|
#13 (permalink)
|
|
d/h member-shmember
Join Date: Dec 2002
Location: from the edge of the deep green sea
Posts: 2,137
|
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-)
|
|
|
Sep 16, 2005, 11:01 PM
|
#14 (permalink)
|
|
DriverHeaven Extreme Member
Join Date: Jan 2005
Posts: 4,009
|
Ok Max, now you are just showing off.
j/k
|
|
|
Sep 17, 2005, 04:01 AM
|
#15 (permalink)
|
|
DriverHeaven Lover
Join Date: Jan 2005
Location: Italy
Posts: 192
|
   .... 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!!!
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|
|