HardwareHeaven.com

HardwareHeaven.com

Looking for the skin chooser?
 
 
  • Home

  • Hardware reviews

  • Articles

  • News

  • Tools

  • Gaming at HardwareHeaven

  • Forums

 

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


Reply
 
Thread Tools
Old Dec 23, 2010, 02:31 AM   #1
HardwareHeaven Newbie
 
Chriscpo's Avatar
 
Join Date: Dec 2010
Location: Manchester, Connecticut, United States
Posts: 3
Rep Power: 0
Chriscpo is on a distinguished road
System Specs

Unregistering DSP Plugins That I Made... How to?

Hi i have been trying to make some DSP plugins and also have edited a few DSP plugins.

I have read the manual many times over in the process. I finally made a dual controlled volume control. Pretty simple, but it took me a few tries.

during the process i messed some things up but all is good due to making a backup of individual kx components. Kx Mixer only settings Kx DSP only and imported them individually if i messed things up.

Okay i made the two controls Stereo Volume control and generateed a GUID. Copied and pasted into plugin while in notepad. Then saved as "4STVOL.da"

I am wondering when i change the GUID KX DSP asks if i want to unregister. I select yes but the Item is still listed in the DSP menu. How can i remove plugin from menu without resetting global settings or device settings through kx Mixer, as that seems to be the only way to remove.

I'd like to be able to easily remove from menu as i am making small changes to each plugin and changing names ...ETc....

Also if anyone wants this you can check out the plugin i made. This is a stable and very much tested version... basically eliminates the need to have two separate Stereo volume windows and eliminates the problem of switching between both. Integrates two High Quality Volume Controls X2 in one window.... etc...



I have it set taking both signals of front and routing them through to headphones output which is actually the digital output putting out analog. soometimes also called subwoofer/center channel. I did make a plugin using only one input and two control outputs but the quality seemed to be reduced due to summing.

Hopefully someone can answer my question on the DSP thing too...

Heres the code for the 4stVol control... Copy and paste into notpad then save as "all files" "4STVOL.da" and save it in your System32 Dir then Use Right Click in DSP Register Effects and select "4STVOL.da" Then it whill appear in DSP.

http://www.hardwareheaven.com/attach...1&d=1293071170

Code:
; Generated by my crafty typing ability using Notpad
name "4StVOL";
copyright "By ChrisCpo - Copyright (c) Dec 2010";
; regardless the particular copyright notice is present in the dump , I made It... aNd of course that would not be possible without Eugene Gavrilov...

engine "kX";
created "December 19 2010";
comment " 2 Stereo Volume Control in a Single Window... ";
guid "011eb0a0-f4c5-45c7-9040-470de3b00589";
; Registers
    input inl;
    output outl;
    input inr;
    output outr;
    input inc;
    output outc;
    input ind;
    output outd;
    control Vol1=0x7fffffff
    control Vol2=0x7fffffff

; Code
     macs      outl,  0x0,  inl,  Vol1;
     macs      outr,  0x0,  inr,  Vol1;
     macs      outc,  0x0,  inc,  Vol2;
     macs      outd,  0x0,  ind,  Vol2;

end
Attached Thumbnails
Unregistering DSP Plugins That I Made... How to?-4stvol.png  
Chriscpo is offline   Reply With Quote


Old Dec 23, 2010, 06:25 AM   #2
HardwareHeaven Lover
 
Join Date: Aug 2007
Posts: 138
Rep Power: 33
jaromanda is just really nicejaromanda is just really nicejaromanda is just really nicejaromanda is just really nice
System Specs

Re: Unregistering DSP Plugins That I Made... How to?

to delete ... look for the plugin's GUID in the registry and delete those entries (in HKCU/Software/kX/Plugins)
__________________
Feed your head.
jaromanda is offline   Reply With Quote
Old Dec 23, 2010, 06:37 PM   #3
HardwareHeaven Extreme Member
 
Join Date: Jan 2005
Posts: 5,563
Rep Power: 62
Russ is just super!Russ is just super!Russ is just super!Russ is just super!Russ is just super!Russ is just super!

Re: Unregistering DSP Plugins That I Made... How to?

Also, you can create a .reg file to do it for you...

e.g. (unregister plugin and remove it's presets)
Code:
Windows Registry Editor Version 5.00

; Reg file to unregister 4StVOL
[HKEY_CURRENT_USER\Software\kX\Plugins]
"011eb0a0-f4c5-45c7-9040-470de3b00589"=-
"011eb0a0-f4c5-45c7-9040-470de3b00589.name"=-

[-HKEY_CURRENT_USER\Software\kX\Plugins\011eb0a0-f4c5-45c7-9040-470de3b00589]
Russ is offline   Reply With Quote
Reply

Thread Tools