- Timestamp:
- Mar 26, 2024, 11:27:01 PM (8 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/CoolAudio/Systems/mplayer/AudioSystemMPlayer.pas
r74 r75 1 1 // MPlayer slave command list: http://www.mplayerhq.hu/DOCS/tech/slave.txt 2 2 3 unit UAudioSystemMPlayer; 4 5 {$I UCoolAudioConfig.inc} 6 {$mode Delphi}{$H+} 3 unit AudioSystemMPlayer; 4 5 {$I CoolAudioConfig.inc} 7 6 8 7 interface 9 8 10 9 uses 11 Classes, SysUtils, UAudioSystem, Process, Math, Dialogs, DateUtils;10 Classes, SysUtils, AudioSystem, Process, Math, Dialogs, DateUtils; 12 11 13 12 const … … 64 63 SCantStopProcess = 'Can''t stop Mplayer process'; 65 64 65 66 66 implementation 67 67 … … 125 125 destructor TAudioSystemMPlayer.Destroy; 126 126 begin 127 inherited Destroy;127 inherited; 128 128 end; 129 129 … … 189 189 function TPlayerMPlayer.GetVolume: Real; 190 190 begin 191 Result := 0; 191 192 end; 192 193 … … 251 252 var 252 253 MPOptions: String; 253 Vol: Real;254 254 begin 255 255 if FPlaying then Stop; … … 306 306 begin 307 307 Stop; 308 F Process.Free;309 inherited Destroy;308 FreeAndNil(FProcess); 309 inherited; 310 310 end; 311 311
Note:
See TracChangeset
for help on using the changeset viewer.