Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Multimedia (https://www.delphipraxis.net/16-multimedia/)
-   -   Delphi DSPack installieren (https://www.delphipraxis.net/165268-dspack-installieren.html)

Skullwing 20. Dez 2011 22:42

DSPack installieren
 
Hallo an alle :)

Also, um gleich zum Thema zu kommen, ich habe mir das DSPack runtergeladen. Da ich Videos streamen möchte und das dazu ja bekanntlich am besten ist. Ich benutze Delphi RAD Studio XE2 und habe leider keine Ahnung wie ich das DSPack installieren kann. Eine Anleitung wäre ganz nett.

PS.: Die Beschreibung in der Readme funktioniert hier nicht.

lbccaleb 20. Dez 2011 23:02

AW: DSPack installieren
 
http://www.delphipraxis.net/158430-d...delphi-xe.html

Skullwing 21. Dez 2011 00:28

AW: DSPack installieren
 
danke schonmal, aber:

[DCC Fehler] DSUtils.pas(1061): E2003 Undeklarierter Bezeichner: 'FrameRateCode'

da stoße ich auf diesen Fehler und ich hab leider keine Ahung wie ich ihn wegbekomme.

Zitat:

function IntToTimeCode(x : longint): TDVDTimeCode;
begin
Result.Hours1 := (x and $F0000000) shr 28;
Result.Hours10 := (x and $0F000000) shr 24;
Result.Minutes1 := (x and $00F00000) shr 20;
Result.Minutes10 := (x and $000F0000) shr 16;
Result.Seconds1 := (x and $0000F000) shr 12;
Result.Seconds10 := (x and $00000F00) shr 08;
Result.Frames1 := (x and $000000F0) shr 04;
Result.Frames10 := (x and $0000000C) shr 02;
Result.FrameRateCode := (x and $00000003) shr 00;
end;

lbccaleb 21. Dez 2011 01:18

AW: DSPack installieren
 
Also das Problem ist, genau dazu kann ich dir nichts sagen da ich selber weder Delphi XE Noch diese Version vom DS Pack nutze. Allerdings weiß ich, das um Kompatibilität herzustellen, einige Teile aus dem DS Pack entfernt wurden. Also vllt. Erstmal mit simplen ausklammern versuchen...

Skullwing 22. Dez 2011 19:52

AW: DSPack installieren
 
Hab ich versucht, deshalb frag ich das überhaupt, da kamen über 30 neue Fehler o.O

Skullwing 23. Dez 2011 20:45

AW: DSPack installieren
 
Keiner mehr da der mir helfen kann ??

Skullwing 23. Dez 2011 21:09

AW: DSPack installieren
 
Das hier dürfte für mein Problem die Lösung sein. (Ziemlich sicher) nur weiß ich gerade nicht genau wie ich das umsetzen soll. Wohin soll ich Komponente setzen ?

Zitat:

What steps will reproduce the problem?
1. Put a new filter component on a form
2. Double click to set BaseFilter property
3. Delphi raises AV at addr 16DDBA13 in module DSPackDesign_D2010.bpl, read of addr 0000003C. (I use d2010 package since there is no DSPackDesign_DXE or DSPackDesign_DXE2)

What is the expected output? What do you see instead?
I would expect a window to pop up, asking me to choose directshow filters.

What version of the product are you using? On what operating system?
I am using Delphi XE2, tested both under XP and Win7. I

Please provide any additional information below.
Here is the stack dump:

[16DDBA13]{DSPackDesign_D2010.bpl} DSEditors.TBaseFilterPropertyClass.Edit (Line 111, "DSEditors.pas" + 3) + $12
[2089890A]{coreide160.bpl} PropInsp.TPropertyInspector.PropListEditDblClick (Line 871, "PropInsp.pas" + 18) + $E
[2113D791]{vclide160.bpl} IDEInspListBox.TInspListBox.DoEditDblClick (Line 620, "IDEInspListBox.pas" + 2) + $A
[2113F016]{vclide160.bpl} IDEInspListBox.TInspListBox.EditDblClick (Line 1192, "IDEInspListBox.pas" + 0) + $2
[50332D8D]{vcl160.bpl } Vcl.Controls.TControl.DblClick (Line 7325, "Vcl.Controls.pas" + 1) + $14
[50332F08]{vcl160.bpl } Vcl.Controls.TControl.WMLButtonDblClk (Line 7368, "Vcl.Controls.pas" + 4) + $C
[50332814]{vcl160.bpl } Vcl.Controls.TControl.WndProc (Line 7204, "Vcl.Controls.pas" + 91) + $6
[503369F8]{vcl160.bpl } Vcl.Controls.TWinControl.IsControlMouseMsg (Line 9753, "Vcl.Controls.pas" + 9) + $25
[50337163]{vcl160.bpl } Vcl.Controls.TWinControl.WndProc (Line 9976, "Vcl.Controls.pas" + 152) + $6
[2113CEF3]{vclide160.bpl} IDEInspListBox.TPropInspEdit.WndProc (Line 361, "IDEInspListBox.pas" + 7) + $4
[503367B8]{vcl160.bpl } Vcl.Controls.TWinControl.MainWndProc (Line 9689, "Vcl.Controls.pas" + 3) + $6
[500B5FCC]{rtl160.bpl } System.Classes.MakeObjectInstance (Line 13921, "System.Classes.pas" + 0) + $0
[504524EF]{vcl160.bpl } Vcl.Forms.TApplication.ProcessMessage (Line 10164, "Vcl.Forms.pas" + 23) + $1
[50452532]{vcl160.bpl } Vcl.Forms.TApplication.HandleMessage (Line 10194, "Vcl.Forms.pas" + 1) + $4
[50452865]{vcl160.bpl } Vcl.Forms.TApplication.Run (Line 10331, "Vcl.Forms.pas" + 26) + $3


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:45 Uhr.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz