aboutsummaryrefslogtreecommitdiffstats
path: root/mediaplugin/src/media/UAudioDecoder_Bass.pas
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-11-01 20:13:59 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-11-01 20:13:59 +0000
commit0b833c98bc6e9f79320b45dfc331cd5121078150 (patch)
tree2bb362f67ab82c8be0a5503b55c33fbab077b4fd /mediaplugin/src/media/UAudioDecoder_Bass.pas
parent4063388c8b0df5be7b1877d32e89723aae612618 (diff)
downloadusdx-0b833c98bc6e9f79320b45dfc331cd5121078150.tar.gz
usdx-0b833c98bc6e9f79320b45dfc331cd5121078150.tar.xz
usdx-0b833c98bc6e9f79320b45dfc331cd5121078150.zip
- audio converter managed by media interface handler
- added (yet unused) interface priorities git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@2700 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'mediaplugin/src/media/UAudioDecoder_Bass.pas')
-rw-r--r--mediaplugin/src/media/UAudioDecoder_Bass.pas8
1 files changed, 7 insertions, 1 deletions
diff --git a/mediaplugin/src/media/UAudioDecoder_Bass.pas b/mediaplugin/src/media/UAudioDecoder_Bass.pas
index d6d2425a..e08b91ff 100644
--- a/mediaplugin/src/media/UAudioDecoder_Bass.pas
+++ b/mediaplugin/src/media/UAudioDecoder_Bass.pas
@@ -73,6 +73,7 @@ type
TAudioDecoder_Bass = class( TInterfacedObject, IAudioDecoder )
public
function GetName: string;
+ function GetPriority: integer;
function InitializeDecoder(): boolean;
function FinalizeDecoder(): boolean;
@@ -209,7 +210,12 @@ end;
function TAudioDecoder_Bass.GetName: String;
begin
- result := 'BASS_Decoder';
+ Result := 'BASS_Decoder';
+end;
+
+function TAudioDecoder_Bass.GetPriority: integer;
+begin
+ Result := 90;
end;
function TAudioDecoder_Bass.InitializeDecoder(): boolean;