-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArgs.pas
106 lines (88 loc) · 2.64 KB
/
Args.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
(*
* File: $RCSfile: Args.pas,v $
* Revision: $Revision: 1.1.1.1 $
* Version : $Id: Args.pas,v 1.1.1.1 2002/04/21 12:57:16 fobmagog Exp $
* Author: $Author: fobmagog $
* Homepage: http://delphimpeg.sourceforge.net/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*)
unit Args;
interface
uses
Windows, SysUtils, MMSystem, BitStream, Header, Shared;
type
TOutput = (WAVEMAPPER, DIRECTSOUND, WAVEFILE);
TArgs = class
public
Stop: Boolean;
Pause: Boolean;
Done: Boolean;
NonSeekable: Boolean;
DesiredPosition: Integer;
PositionChange: Boolean;
PlayMutex: THandle;
constructor Create; virtual;
end;
// A class to contain arguments for maplay.
TMPEGArgs = class(TArgs)
private
FErrorCode: Cardinal;
public
Stream: TBitStream;
MPEGHeader: THeader;
WhichC: TChannels;
UseOwnScaleFactor: Boolean;
ScaleFactor: Single;
StartPos: Cardinal; // start and finish positions (in frames)
EndPos: Cardinal;
MusicPos: Cardinal; // current position (in frames)
PlayMode: Cardinal; // -1 - not initialized, 0 - closed, 1 - opened, 2 - stopped
// 3 - playing, 4 - paused
phwo: HWAVEOUT;
OutputMode: TOutput;
OutputFileName: Array[0..MAX_PATH-1] of char;
constructor Create; override;
function ErrorCode: Cardinal;
end;
implementation
{ TArgs }
constructor TArgs.Create;
begin
Stop := False;
Pause := False;
Done := False;
NonSeekable := False;
DesiredPosition := 0;
PositionChange := False;
end;
{ TMPEGArgs }
constructor TMPEGArgs.Create;
begin
inherited Create;
Stream := nil;
MPEGHeader := nil;
WhichC := Both;
UseOwnScalefactor := False;
ScaleFactor := 32768.0;
OutputMode := WAVEFILE;
OutputFileName := '';
end;
function TMPEGArgs.ErrorCode: Cardinal;
begin
Result := FErrorcode;
FErrorcode := 0;
end;
end.