PixelSearch speed is super slow.

Discuss, ask for help, share ideas, give suggestions, read tutorials, and tell us about bugs you have found with MicroMacro in here.

Do not post RoM-Bot stuff here. There is a subforum for that.
Forum rules
This is a sub-forum for things specific to MicroMacro.

This is not the place to ask questions about the RoM bot, which uses MicroMacro. There is a difference.
Post Reply
Message
Author
Exempt
Posts: 197
Joined: Wed Jan 20, 2010 9:55 am

PixelSearch speed is super slow.

#1 Post by Exempt » Fri Feb 12, 2010 10:06 pm

Is pixelSearch normally super slow. When i set it to this.

Code: Select all

x,y = pixelSearch(hdc, matchcolor, 290, 250, 525, 400, 0, 5);
It takes around 30-40 seconds to finish.

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: PixelSearch speed is super slow.

#2 Post by Administrator » Fri Feb 12, 2010 10:16 pm

It's slow, but not that slow. It should take maybe 100ms tops. Post a copy of your log.

Exempt
Posts: 197
Joined: Wed Jan 20, 2010 9:55 am

Re: PixelSearch speed is super slow.

#3 Post by Exempt » Sat Feb 13, 2010 12:53 am

How would i go about posting my log?

My code is..

Code: Select all

printf("fff\n");
 
setStartKey(key.VK_DELETE);
setStopKey(key.VK_END);

function main()

	mouseX = 0x027C6B6C; --Mouse X position memory address
    mouseY = 0x02485014; --Mouse Y position memory address
	
	myProc = openProcess( findProcess("fff") );
	window = findWindow("fff");
	hdc = openDC(window);
	
	function pickup()
		matchcolor = makeColor(162, 13, 0); -- we're looking for black (text)
		x,y = pixelSearch(hdc, matchcolor, 290, 250, 525, 400, 0, 5);
		printf("X: %d, Y: %d \n", x, y);
	end
	
    running = true;
    while(running == true) do
	
		local keyDown, keyType;
		while(true) do
			keyDown = false;
		
			if(keyPressed(key.VK_NUMPAD4)) then
				keyDown = true;
				keyType = "PICK";
			end
			if(keyPressed(key.VK_NUMPAD5)) then
				keyDown = true;
				keyType = "QUIT";
			end
			
			
			--Key has been pressed and is now released.
			if(keyDown == false and keyType) then
				if(keyType == "QUIT") then
					keyType = "";
					running = false;
					break;
				elseif(keyType == "PICK") then
					pickup()
					keyType = "";
				end
			end
		end --End while true

    end
end
startMacro(main);
Last edited by Exempt on Tue Nov 16, 2010 8:19 pm, edited 1 time in total.

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: PixelSearch speed is super slow.

#4 Post by Administrator » Sat Feb 13, 2010 9:10 am

It the file named log.txt in your micromacro folder.

Exempt
Posts: 197
Joined: Wed Jan 20, 2010 9:55 am

Re: PixelSearch speed is super slow.

#5 Post by Exempt » Sat Feb 13, 2010 9:55 am

Code: Select all

Fri Feb 12 20:58:09 2010 : MicroMacro v1.0
Fri Feb 12 20:58:09 2010 : Processor Type: 4X 586, OS: Windows 7 
Fri Feb 12 20:58:09 2010 : LuaCoco is available.
Fri Feb 12 20:58:09 2010 : Lua glues exported.
Fri Feb 12 20:58:09 2010 : Keyboard layout: US English
Fri Feb 12 20:58:15 2010 : Executing script 'pickup.lua'
--------------------------------------------------------------------------------

Fri Feb 12 21:03:24 2010 : Execution success

Fri Feb 12 21:03:29 2010 : Executing script 'pickup.lua'
--------------------------------------------------------------------------------

Fri Feb 12 21:05:21 2010 : Execution success

Fri Feb 12 21:10:25 2010 : Executing script 'pickup.lua'
--------------------------------------------------------------------------------

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: PixelSearch speed is super slow.

#6 Post by Administrator » Sat Feb 13, 2010 8:59 pm

Try making a script that only tests the pixelSearch() function and see if it takes a long time. It could be something to do with Windows 7.

TheOne777
Posts: 26
Joined: Mon Feb 01, 2010 3:53 pm

Re: PixelSearch speed is super slow.

#7 Post by TheOne777 » Sun Feb 14, 2010 2:43 am

Administrator wrote:Try making a script that only tests the pixelSearch() function and see if it takes a long time. It could be something to do with Windows 7.

Your a windows 7

Exempt
Posts: 197
Joined: Wed Jan 20, 2010 9:55 am

Re: PixelSearch speed is super slow.

#8 Post by Exempt » Sun Feb 14, 2010 8:29 pm

Alright, I will do this tomarrow and post my results.

Exempt
Posts: 197
Joined: Wed Jan 20, 2010 9:55 am

Re: PixelSearch speed is super slow.

#9 Post by Exempt » Tue Feb 16, 2010 12:53 pm

I tested the script on my laptop with Vista which is super slow compared to my main pc and it takes about 2-3 seconds using 5 steps. Same exact code as above. It still takes over 30 seconds on my desktop with windows 7.

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: PixelSearch speed is super slow.

#10 Post by Administrator » Tue Feb 16, 2010 3:25 pm

It's probably a Windows 7 problem then. Can you provide any other information about that machine in case it's hardware related? Specifically, the processor, memory, and video card models. It could be VRAM transfer rates, cache misalignments, FSB issues, or any other number of things.

Exempt
Posts: 197
Joined: Wed Jan 20, 2010 9:55 am

Re: PixelSearch speed is super slow.

#11 Post by Exempt » Tue Feb 16, 2010 4:25 pm

Whats the best way to get all the info?

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: PixelSearch speed is super slow.

#12 Post by Administrator » Tue Feb 16, 2010 8:22 pm

Exempt wrote:Whats the best way to get all the info?
dxdiag

Exempt
Posts: 197
Joined: Wed Jan 20, 2010 9:55 am

Re: PixelSearch speed is super slow.

#13 Post by Exempt » Wed Feb 17, 2010 12:04 am

Code: Select all

------------------
System Information
------------------
Time of this report: 2/16/2010, 23:03:14
       Machine name: WOOG-PC
   Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7600) (7600.win7_rtm.090713-1255)
           Language: English (Regional Setting: English)
System Manufacturer: HP-Pavilion
       System Model: AY747AA-ABA p6310y
               BIOS: BIOS Date: 11/12/09 14:45:05 Ver: 5.13
          Processor: AMD Athlon(tm) II X4 630 Processor (4 CPUs), ~2.8GHz
             Memory: 6144MB RAM
Available OS Memory: 6144MB RAM
          Page File: 1887MB used, 10397MB available
        Windows Dir: C:\Windows
    DirectX Version: DirectX 11
DX Setup Parameters: Not found
   User DPI Setting: Using System DPI
 System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
     DxDiag Version: 6.01.7600.16385 32bit Unicode

------------
DxDiag Notes
------------
      Display Tab 1: No problems found.
        Sound Tab 1: No problems found.
        Sound Tab 2: No problems found.
          Input Tab: No problems found.

--------------------
DirectX Debug Levels
--------------------
Direct3D:    0/4 (retail)
DirectDraw:  0/4 (retail)
DirectInput: 0/5 (retail)
DirectMusic: 0/5 (retail)
DirectPlay:  0/9 (retail)
DirectSound: 0/5 (retail)
DirectShow:  0/6 (retail)

---------------
Display Devices
---------------
          Card name: ATI Radeon HD 4300/4500 Series
       Manufacturer: ATI Technologies Inc.
          Chip type: ATI display adapter (0x954F)
           DAC type: Internal DAC(400MHz)
         Device Key: Enum\PCI\VEN_1002&DEV_954F&SUBSYS_24621682&REV_00
     Display Memory: 3830 MB
   Dedicated Memory: 1015 MB
      Shared Memory: 2815 MB
       Current Mode: 1680 x 1050 (32 bit) (59Hz)
       Monitor Name: Generic PnP Monitor
      Monitor Model: Acer X223W
         Monitor Id: ACR0009
        Native Mode: 1680 x 1050(p) (59.954Hz)
        Output Type: HD15
        Driver Name: atiu9p64 aticfx64 atiu9pag aticfx32 atiumd64 atidxx64 atiumdag atidxx32 atiumdva atiumd6a atitmm64
Driver File Version:  ()
     Driver Version: 8.690.0.0
        DDI Version: 10.1
       Driver Model: WDDM 1.1
  Driver Attributes: Final Retail
   Driver Date/Size: , 0 bytes
        WHQL Logo'd: n/a
    WHQL Date Stamp: n/a
  Device Identifier: {D7B71EE2-D60F-11CF-F962-6304A1C2C535}
          Vendor ID: 0x1002
          Device ID: 0x954F
          SubSys ID: 0x24621682
        Revision ID: 0x0000
 Driver Strong Name: oem36.inf:ATI.Mfg.NTamd64.6.1:ati2mtag_R7X:8.690.0.0:pci\ven_1002&dev_954f
     Rank Of Driver: 00E62001
        Video Accel: ModeMPEG2_A ModeMPEG2_C 
   Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                     {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch 
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                     {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                     {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch 
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                     {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                     {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                     {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                     {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch 
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                     {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
       D3D9 Overlay: Not Supported
            DXVA-HD: Not Supported
       DDraw Status: Enabled
         D3D Status: Enabled
         AGP Status: Enabled

-------------
Sound Devices
-------------
            Description: Headphones (Realtek High Definition Audio)
 Default Sound Playback: Yes
 Default Voice Playback: Yes
            Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0888&SUBSYS_103C2A9E&REV_1002
        Manufacturer ID: 1
             Product ID: 100
                   Type: WDM
            Driver Name: RTKVHD64.sys
         Driver Version: 6.00.0001.5938 (English)
      Driver Attributes: Final Retail
            WHQL Logo'd: n/a
          Date and Size: 9/15/2009 13:08:00, 2004128 bytes
            Other Files: 
        Driver Provider: Realtek Semiconductor Corp.
         HW Accel Level: Basic
              Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
Static/Strm HW Mix Bufs: 1, 0
 Static/Strm HW 3D Bufs: 0, 0
              HW Memory: 0
       Voice Management: No
 EAX(tm) 2.0 Listen/Src: No, No
   I3DL2(tm) Listen/Src: No, No
Sensaura(tm) ZoomFX(tm): No

            Description: Realtek Digital Output (Realtek High Definition Audio)
 Default Sound Playback: No
 Default Voice Playback: No
            Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0888&SUBSYS_103C2A9E&REV_1002
        Manufacturer ID: 1
             Product ID: 100
                   Type: WDM
            Driver Name: RTKVHD64.sys
         Driver Version: 6.00.0001.5938 (English)
      Driver Attributes: Final Retail
            WHQL Logo'd: n/a
          Date and Size: 9/15/2009 13:08:00, 2004128 bytes
            Other Files: 
        Driver Provider: Realtek Semiconductor Corp.
         HW Accel Level: Basic
              Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
Static/Strm HW Mix Bufs: 1, 0
 Static/Strm HW 3D Bufs: 0, 0
              HW Memory: 0
       Voice Management: No
 EAX(tm) 2.0 Listen/Src: No, No
   I3DL2(tm) Listen/Src: No, No
Sensaura(tm) ZoomFX(tm): No

---------------------
Sound Capture Devices
---------------------
            Description: Microphone (Realtek High Definition Audio)
  Default Sound Capture: Yes
  Default Voice Capture: Yes
            Driver Name: RTKVHD64.sys
         Driver Version: 6.00.0001.5938 (English)
      Driver Attributes: Final Retail
          Date and Size: 9/15/2009 13:08:00, 2004128 bytes
              Cap Flags: 0x1
           Format Flags: 0xFFFFF

            Description: Microphone (Screaming Bee Audio)
  Default Sound Capture: No
  Default Voice Capture: No
            Driver Name: ScreamingBAudio64.sys
         Driver Version: 2.00.0002.0000 (English)
      Driver Attributes: Final Retail
          Date and Size: 12/1/2009 15:49:52, 38992 bytes
              Cap Flags: 0x1
           Format Flags: 0xFFFFF

-------------------
DirectInput Devices
-------------------
      Device Name: Mouse
         Attached: 1
    Controller ID: n/a
Vendor/Product ID: n/a
        FF Driver: n/a

      Device Name: Keyboard
         Attached: 1
    Controller ID: n/a
Vendor/Product ID: n/a
        FF Driver: n/a

      Device Name: Microsoft eHome Infrared Transceiver
         Attached: 1
    Controller ID: 0x0
Vendor/Product ID: 0x045E, 0x006D
        FF Driver: n/a

      Device Name: Microsoft eHome Infrared Transceiver
         Attached: 1
    Controller ID: 0x0
Vendor/Product ID: 0x045E, 0x006D
        FF Driver: n/a

      Device Name: Microsoft eHome Infrared Transceiver
         Attached: 1
    Controller ID: 0x0
Vendor/Product ID: 0x045E, 0x006D
        FF Driver: n/a

      Device Name: Microsoft eHome Infrared Transceiver
         Attached: 1
    Controller ID: 0x0
Vendor/Product ID: 0x045E, 0x006D
        FF Driver: n/a

      Device Name: USB Multimedia Cordless Kit  
         Attached: 1
    Controller ID: 0x0
Vendor/Product ID: 0x03F0, 0x0B0C
        FF Driver: n/a

      Device Name: USB Multimedia Cordless Kit  
         Attached: 1
    Controller ID: 0x0
Vendor/Product ID: 0x03F0, 0x0B0C
        FF Driver: n/a

      Device Name: USB Multimedia Cordless Kit  
         Attached: 1
    Controller ID: 0x0
Vendor/Product ID: 0x03F0, 0x0B0C
        FF Driver: n/a

Poll w/ Interrupt: No

-----------
USB Devices
-----------
+ USB Root Hub
| Vendor/Product ID: 0x10DE, 0x077B
| Matching Device ID: usb\root_hub
| Service: usbhub
| 
+-+ USB Input Device
| | Vendor/Product ID: 0x093A, 0x2510
| | Location: Port_#0002.Hub_#0001
| | Matching Device ID: generic_hid_device
| | Service: HidUsb
| | 
| +-+ HID-compliant mouse
| | | Vendor/Product ID: 0x093A, 0x2510
| | | Matching Device ID: hid_device_system_mouse
| | | Service: mouhid

----------------
Gameport Devices
----------------

------------
PS/2 Devices
------------
+ Microsoft eHome Remote Control Keyboard keys
| Matching Device ID: hid\irdevicev2&col05
| Service: kbdhid
| 
+ Microsoft eHome MCIR Keyboard
| Matching Device ID: hid\irdevicev2&col06
| Service: kbdhid
| 
+ Microsoft eHome MCIR 109 Keyboard
| Matching Device ID: hid\irdevicev2&col07
| Service: kbdhid
| 
+ HID Keyboard Device
| Vendor/Product ID: 0x03F0, 0x0B0C
| Matching Device ID: hid_device_system_keyboard
| Service: kbdhid
| 
+ Terminal Server Keyboard Driver
| Matching Device ID: root\rdp_kbd
| Upper Filters: kbdclass
| Service: TermDD
| 
+ HID-compliant mouse
| Matching Device ID: hid_device_system_mouse
| Service: mouhid
| 
+ HID-compliant mouse
| Vendor/Product ID: 0x03F0, 0x0B0C
| Matching Device ID: hid_device_system_mouse
| Service: mouhid
| 
+ Terminal Server Mouse Driver
| Matching Device ID: root\rdp_mou
| Upper Filters: mouclass
| Service: TermDD

------------------------
Disk & DVD/CD-ROM Drives
------------------------
      Drive: C:
 Free Space: 876.8 GB
Total Space: 942.7 GB
File System: NTFS
      Model: WDC WD10 EADS-65M2B0 SCSI Disk Device

      Drive: D:
 Free Space: 1.6 GB
Total Space: 11.0 GB
File System: NTFS
      Model: WDC WD10 EADS-65M2B0 SCSI Disk Device

      Drive: E:
      Model: hp DVD-RAM GH40L SCSI CdRom Device
     Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7600.16385 (English), , 0 bytes

--------------
System Devices
--------------
     Name: Standard Enhanced PCI to USB Host Controller
Device ID: PCI\VEN_10DE&DEV_077C&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&11
   Driver: n/a

     Name: PCI standard PCI-to-PCI bridge
Device ID: PCI\VEN_10DE&DEV_075B&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&90
   Driver: n/a

     Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1204&SUBSYS_00000000&REV_00\3&267A616A&0&C4
   Driver: n/a

     Name: Standard OpenHCD USB Host Controller
Device ID: PCI\VEN_10DE&DEV_077B&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&10
   Driver: n/a

     Name: PCI standard PCI-to-PCI bridge
Device ID: PCI\VEN_10DE&DEV_075A&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&40
   Driver: n/a

     Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1203&SUBSYS_00000000&REV_00\3&267A616A&0&C3
   Driver: n/a

     Name: PCI standard PCI-to-PCI bridge
Device ID: PCI\VEN_10DE&DEV_077A&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&A0
   Driver: n/a

     Name: PCI standard RAM Controller
Device ID: PCI\VEN_10DE&DEV_0754&SUBSYS_2A9E103C&REV_A2\3&267A616A&0&00
   Driver: n/a

     Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1202&SUBSYS_00000000&REV_00\3&267A616A&0&C2
   Driver: n/a

     Name: LSI 1394 OHCI Compliant Host Controller
Device ID: PCI\VEN_11C1&DEV_5811&SUBSYS_2A9E103C&REV_70\4&F437630&0&2840
   Driver: n/a

     Name: PCI standard PCI-to-PCI bridge
Device ID: PCI\VEN_10DE&DEV_077A&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&98
   Driver: n/a

     Name: NVIDIA nForce System Management Controller
Device ID: PCI\VEN_10DE&DEV_0753&SUBSYS_2A9E103C&REV_A2\3&267A616A&0&0B
   Driver: n/a

     Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1201&SUBSYS_00000000&REV_00\3&267A616A&0&C1
   Driver: n/a

     Name: NVIDIA nForce Serial ATA Controller
Device ID: PCI\VEN_10DE&DEV_0AD4&SUBSYS_2A9E103C&REV_A2\3&267A616A&0&48
   Driver: n/a

     Name: PCI standard PCI-to-PCI bridge
Device ID: PCI\VEN_10DE&DEV_0778&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&80
   Driver: n/a

     Name: NVIDIA nForce PCI System Management
Device ID: PCI\VEN_10DE&DEV_0752&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&09
   Driver: n/a

     Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1200&SUBSYS_00000000&REV_00\3&267A616A&0&C0
   Driver: n/a

     Name: High Definition Audio Controller
Device ID: PCI\VEN_10DE&DEV_0774&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&38
   Driver: n/a

     Name: PCI standard RAM Controller
Device ID: PCI\VEN_10DE&DEV_0751&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&0A
   Driver: n/a

     Name: High Definition Audio Controller
Device ID: PCI\VEN_1002&DEV_AA38&SUBSYS_AA381682&REV_00\4&33C7544E&0&0180
   Driver: n/a

     Name: Standard Enhanced PCI to USB Host Controller
Device ID: PCI\VEN_10DE&DEV_077E&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&21
   Driver: n/a

     Name: NVIDIA nForce 10/100 Mbps Ethernet 
Device ID: PCI\VEN_10DE&DEV_0760&SUBSYS_2A9E103C&REV_A2\3&267A616A&0&50
   Driver: n/a

     Name: ATI Radeon HD 4300/4500 Series
Device ID: PCI\VEN_1002&DEV_954F&SUBSYS_24621682&REV_00\4&33C7544E&0&0080
   Driver: n/a

     Name: Standard OpenHCD USB Host Controller
Device ID: PCI\VEN_10DE&DEV_077D&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&20
   Driver: n/a

     Name: PCI standard ISA bridge
Device ID: PCI\VEN_10DE&DEV_075C&SUBSYS_2A9E103C&REV_A2\3&267A616A&0&08
   Driver: n/a

     Name: PCI standard RAM Controller
Device ID: PCI\VEN_10DE&DEV_0568&SUBSYS_2A9E103C&REV_A1\3&267A616A&0&0C
   Driver: n/a

------------------
DirectShow Filters
------------------

DirectShow Filters:
WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7600.16385
WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7600.16385
WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7600.16385
MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7600.16385
WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7600.16385
Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
CyberLink Audio Decoder (HP),0x00201000,1,1,CLAud.ax,6.03.0000.1902
PCM Video/SP Decoder,0x00200000,2,3,PCMRVSD.ax,6.00.0000.3922
MSDVD Audio Wizard (HP),0x00200001,1,1,CLAudWizard.ax,1.00.0000.4414
WMT VIH2 Fix,0x00200000,1,1,WLXVAFilt.dll,14.00.8081.0709
Record Queue,0x00200000,1,1,WLXVAFilt.dll,14.00.8081.0709
WMT Switch Filter,0x00200000,1,1,WLXVAFilt.dll,14.00.8081.0709
WMT Virtual Renderer,0x00200000,1,0,WLXVAFilt.dll,14.00.8081.0709
WMT DV Extract,0x00200000,1,1,WLXVAFilt.dll,14.00.8081.0709
WMT Virtual Source,0x00200000,0,1,WLXVAFilt.dll,14.00.8081.0709
WMT Sample Information Filter,0x00200000,1,1,WLXVAFilt.dll,14.00.8081.0709
CyberLink Volume Meter,0x00200000,1,0,HPVolumeMeter.ax,1.00.0000.0001
CyberLink MPEG Video Encoder,0x00200000,1,1,P2GVidEnc.ax,6.00.0001.2226
CyberLink DVD Navigator (HP),0x00200000,0,3,CLNavX.ax,8.00.0000.3309
ATI Ticker,0x00200000,0,1,Ticker.ax,
PCM Audio Decoder,0x00200000,1,1,PCMRAud.ax,6.00.0000.4104
CyberLink MP3/WAV Wrapper,0x00200000,1,1,P2GMP3Wrap.ax,3.07.0000.1314
CyberLink Line21 Decoder Filter (HP),0x00200000,0,2,CLLine21.ax,4.00.0000.10309
PCM Video Regulator,0x00200000,1,1,PCMRResample.ax,4.00.0000.0126
DV Muxer,0x00400000,0,0,qdv.dll,6.06.7600.16385
CyberLink MPEGV Analyzer,0x00200000,1,1,PCMRmpegvanalyzer.ax,2.03.0000.4316
PCM MPEG Video Encoder,0x00200000,1,1,PCMRMpgVEnc2.ax,5.00.0000.4811
CyberLink File Map Source,0x00200000,0,1,PCMRFMSrc.ax,1.00.0000.0810
CyberLink AudioCD Filter,0x00200000,0,1,P2GAudioCD.ax,5.00.0000.1321
Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7600.16490
WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7600.16385
Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7600.16385
AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7600.16490
VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7600.16490
CyberLink Video Effect (HP),0x00200000,1,1,CLVidFx.ax,1.00.0000.1523
SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7600.16385
CyberLink Editing Service 3.0 (Source),0x00200000,0,2,P2GEdtKrn.dll,3.00.0000.2911
Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0000
CL_EVRWindow,0x00200000,0,0,PCMREvr.dll,1.00.0000.2523
AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7600.16385
Cyberlink SubTitle Importor (HP),0x00200000,1,1,CLSubTitle.ax,1.00.0000.1604
StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7600.16385
MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.16490
MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7600.16490
SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
P2G Video Decoder,0x00200000,2,3,P2GVSD.ax,6.00.0000.2310
VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
CyberLink AVI Audio Time Regulator,0x00200000,1,1,PCMRAVI_AudTR.ax,1.00.0001.0213
CyberLink Audio Noise Reduction,0x00200000,1,1,PCMRAuNRWrapper.ax,1.00.0000.1318
CyberLink Demultiplexer,0x00200000,1,0,PCMRdemuxer.ax,1.03.0000.6701
MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7600.16385
CyberLink Audio Effect,0x00200000,1,1,PCMRAudFx.ax,6.00.0000.5723
Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7600.16385
SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7600.16385
Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16385
CyberLink Pipe Switch,0x00200000,1,1,PCMRPipSwch.ax,1.00.0000.3215
Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
CyberLink Video Regulator,0x00200000,1,1,P2GRGL.ax,2.00.0000.3328
P2G Audio Decoder,0x00200000,1,1,P2GAud.ax,6.01.0000.3601
MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7600.16490
MMACE ProcAmp,0x00200000,0,2,MMACEFilters.dll,
CyberLink Audio Decoder (HP),0x00200000,1,1,CLAud.ax,6.03.0000.1908
DV Splitter,0x00600000,1,2,qdv.dll,6.06.7600.16385
Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7600.16490
CyberLink Video Effect,0x00200000,1,1,P2GVidFx.ax,1.00.0000.2030
Cyberlink SubTitle(HP),0x00200000,2,1,CLSubTitle.ax,1.00.0000.6519
PCM SnapShotTIP Filter,0x00200000,1,1,PCMRSShot.ax,1.00.0000.2504
PCM Video Effect,0x00200000,1,1,PCMRVidFx.ax,1.00.0000.3512
CyberLink Audio Noise Reduction,0x00200000,1,1,P2GAuNRWrapper.ax,2.00.0000.1017
CyberLink EPG Decoder,0x00200000,1,1,PCMREpgDec.ax,1.00.0000.2917
Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7600.16385
CyberLink Load Image Filter,0x00200000,0,1,CLImage.ax,3.00.0000.2307
CyberLink MPEG-2 Splitter,0x00200000,1,2,P2Gm2spliter.ax,2.04.0000.2301
CyberLink Video/SP Decoder (HP),0x00200000,2,3,CLVSD.ax,8.04.0000.0923
CyberLink Audio VolumeBooster,0x00200000,1,1,P2GVB.ax,1.00.0000.1008
ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7600.16490
CyberLink Teletext Decoder Filter,0x00200000,0,2,PCMRttxdec.ax,2.05.0000.6625
Video Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7600.16385
Cyberlink Dump Dispatch Filter,0x00200000,1,0,P2GDumpDispatch.ax,1.02.0001.2412
CyberLink AudioCD Filter (HP),0x00600000,0,1,CLAudioCD.AX,5.00.0000.0912
Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7600.16385
Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7600.16490
Video Renderer,0x00400000,1,0,quartz.dll,6.06.7600.16490
CyberLink Audio Effect (HP),0x00200000,1,1,claudfx.ax,6.00.0000.6525
CyberLink Audio Resampler,0x00200000,1,1,P2GAuRsmpl.ax,1.00.0000.2625
File Writer,0x00200000,1,0,WLXVAFilt.dll,14.00.8081.0709
CyberLink TimeStretch Filter (HP),0x00200000,1,1,clauts.ax,1.00.0000.5423
VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7600.16385
WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7600.16385
CyberLink MPEG-1 Splitter,0x00200000,1,2,P2Gm1spliter.ax,2.04.0000.2301
CyberLink Tzan Filter (HP),0x00200000,1,1,CLTzan.ax,3.05.0000.1928
VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7600.16385
CyberLink File Map Sink,0x00200000,1,0,PCMRFMSnk.ax,1.00.0000.0810
PCM MPEG Splitter,0x00200000,1,2,PCMRM2Splter.ax,3.03.0000.3023
MMACE SoftEmu,0x00200000,0,2,MMACEFilters.dll,
File writer,0x00200000,1,0,qcap.dll,6.06.7600.16385
iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7600.16385
iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7600.16385
Cyberlink File Reader (Async.),0x00200000,0,1,P2GReader.ax,3.00.0000.3016
CyberLink SBE Source Filter,0x00200000,0,0,PCMRsbesrc.ax,2.03.0000.4316
CyberLink M2V Writer,0x00200000,1,0,P2GM2VWriter.ax,1.03.0000.2017
PCM Audio Encoder,0x00200000,2,0,PCMRaudenc.ax,2.01.0000.2031
Cyberlink Dump Filter,0x00200000,1,0,P2GDump.ax,3.00.0000.7122
PCM Dump Filter,0x00200000,1,0,PCMRdump.ax,3.00.0000.10225
CyberLink Video Stabilizer,0x00200000,1,1,P2GVideoStabilizer.ax,1.00.0000.1017
Cyberlink TS Information,0x00200000,1,0,PCMRTSInfo.ax,1.03.0000.1901
CyberLink DVD Navigator (HP),0x00200000,0,3,CLNavX.ax,8.00.0000.3210
CyberLink PCM Wrapper,0x00200000,1,1,P2GPCMEnc.ax,1.01.0000.0321
DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7600.16385
MMACE DeInterlace,0x00200000,0,2,MMACEFilters.dll,
Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7600.16385
PCM Audio Resampler,0x00200000,1,1,PCMRAuRsmpl.ax,1.00.0000.2304
CyberLink DVB Subtitle Decoder,0x00200000,1,1,PCMRDvbSub.ax,1.00.0000.5119
AVI Draw,0x00600064,9,1,quartz.dll,6.06.7600.16490
RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16385
WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7600.16385
MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7600.16385
DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7600.16385
PCM MPEG Muxer,0x00200000,2,1,PCMRMpgMux.ax,5.01.0000.1217
SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7600.16385
Null Renderer,0x00200000,1,0,qedit.dll,6.06.7600.16385
MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7600.16385
Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7600.16385
Cyberlink TS Filter Filter,0x00200000,1,1,PCMRTSFF.ax,1.00.0000.2718
StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7600.16385
PCM RTP Source Filter,0x00200000,0,1,PCMRRTPSrc.ax,1.00.0000.1826
CyberLink TimeStretch Filter (CES),0x00200000,1,1,P2Gauts.ax,1.00.0000.2212
CyberLink MP3 Wrapper-PCM,0x00200000,1,1,PCMRmp3wrap.ax,1.00.0000.0000
Smart Tee,0x00200000,1,2,qcap.dll,6.06.7600.16385
Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7600.16385
CyberLink TL MPEG Splitter,0x00200000,1,2,P2GTLMSplter.ax,3.02.0000.2219
AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.16490
CyberLink MPEG Muxer,0x00200000,2,1,P2GMpgMux.ax,5.01.0000.1723
CyberLink Video/SP Decoder (HP),0x00200000,2,3,CLVSD.ax,8.04.0000.0901
CyberLink Demultiplexer (HP),0x00200000,1,0,CLDemuxer.ax,1.00.0000.5405
AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7600.16490
Wave Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
File stream renderer,0x00400000,1,1,quartz.dll,6.06.7600.16490
CyberLink SBE Filter,0x00200000,0,0,PCMRsbe.ax,2.03.0000.4316
CyberLink Audio Spectrum Analyzer (HP),0x00200000,1,1,CLAudSpa.ax,1.00.0000.0924
Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7600.16385
AVI Mux,0x00200000,1,0,qcap.dll,6.06.7600.16385
Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7600.16490
File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7600.16490
File Source (URL),0x00400000,0,1,quartz.dll,6.06.7600.16490
CyberLink Line21 Decoder Filter (HP),0x00200000,0,2,CLLine21.ax,4.00.0001.7527
P2G Video Regulator,0x00200000,1,1,P2GResample.ax,2.05.0000.1818
P2G Audio Encoder,0x00200000,2,0,P2GAudEnc.ax,2.00.0000.4815
CyberLink PTS Regulator,0x00200000,1,1,PCMPTSReg.ax,1.00.0000.1209
Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7600.16385
CyberLink TimeStretch Filter,0x00200000,1,1,PCMRAuts.ax,1.00.0000.2108
Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7600.16385
CyberLink MPEG Video Encoder,0x00200000,1,1,PCMRMpgVEnc.ax,5.00.0000.4811
CyberLink MPEG Splitter,0x00200000,1,2,CLSplter.ax,3.04.0000.2021
BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7600.16385
CyberLink WMV Dumper(HP),0x00200000,2,0,PCMWMVDump.ax,1.00.0000.1422
MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7600.16490
CyberLink MPEG Decoder,0x00200000,2,3,P2GMVD.ax,5.00.0000.0929

WDM Streaming Tee/Splitter Devices:
Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7600.16385

Video Compressors:
WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7600.16385
MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7600.16490
Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7600.16385
Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7600.16385
Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7600.16385
Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7600.16385
Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7600.16385

Audio Compressors:
WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
PCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7600.16490
Messenger Audio Codec,0x00200000,1,1,quartz.dll,6.06.7600.16490
CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7600.16490
CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7600.16490
MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7600.16490

Audio Capture Sources:
Microphone (Realtek High Defini,0x00200000,0,0,qcap.dll,6.06.7600.16385
Microphone (Screaming Bee Audio,0x00200000,0,0,qcap.dll,6.06.7600.16385

PBDA CP Filters:
PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7600.16385
PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16385
PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16385

Midi Renderers:
Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7600.16490

WDM Streaming Capture Devices:
Realtek HD Audio Line input,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HD Audio Mic input,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HD Audio Stereo input,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Screaming Bee Wave,0x00200000,1,1,ksproxy.ax,6.01.7600.16385

WDM Streaming Rendering Devices:
Realtek HD Audio front output,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HD Audio rear output,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HDA SPDIF Out,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
,0x00000000,0,0,,

BDA Network Providers:
Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7600.16385

Multi-Instance Capable VBI Codecs:
VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385

BDA Transport Information Renderers:
BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7600.16385
MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7600.16385

BDA CP/CA Filters:
Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7600.16385
Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7600.16385
PTFilter,0x00200000,0,0,EncDec.dll,6.06.7600.16385
XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7600.16385

WDM Streaming Communication Transforms:
Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7600.16385

Audio Renderers:
Headphones (Realtek High Defini,0x00200000,1,0,quartz.dll,6.06.7600.16490
CyberLink Audio Renderer (HP),0x00200000,1,0,CLADR.ax,7.00.0000.1906
CyberLink Audio Renderer (HP),0x00200000,1,0,CLADR.ax,6.00.0000.5222
Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7600.16490
DirectSound: Headphones (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7600.16490
DirectSound: Realtek Digital Output (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7600.16490
Realtek Digital Output (Realtek,0x00200000,1,0,quartz.dll,6.06.7600.16490

---------------
EVR Power Information
---------------
Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality) 
  Quality Flags: 2576
    Enabled:
    Force throttling
    Allow half deinterlace
    Allow scaling
    Decode Power Usage: 100
  Balanced Flags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 50
  PowerFlags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 0

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: PixelSearch speed is super slow.

#14 Post by Administrator » Wed Feb 17, 2010 12:45 am

Thanks. This probably won't be fixed soon (as I don't have a Windows 7 machine to test it on, currently), so try to avoid using pixelSearch() if at all possible. I don't see anything in your hardware that should cause any issues.

Exempt
Posts: 197
Joined: Wed Jan 20, 2010 9:55 am

Re: PixelSearch speed is super slow.

#15 Post by Exempt » Wed Feb 17, 2010 11:04 am

Thats just the only way I could think up to make a simple loot pickup script for the game. I'm not to great at searching for arrays that contains stuff like monsters info and item info.

Post Reply

Who is online

Users browsing this forum: No registered users and 4 guests