Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
VABase
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Security & Compliance
Security & Compliance
Dependency List
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Institute of Technical Acoustics (ITA)
VABase
Commits
4ca48c54
Commit
4ca48c54
authored
Oct 04, 2017
by
Dipl.-Ing. Jonas Stienen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding sequencer signal source methods
parent
5f895864
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
include/VAInterface.h
include/VAInterface.h
+16
-0
No files found.
include/VAInterface.h
View file @
4ca48c54
...
...
@@ -563,7 +563,23 @@ public:
* \return Parameter structure
*/
virtual
CVAStruct
GetSignalSourceParameters
(
const
std
::
string
&
sSignalSourceID
,
const
CVAStruct
&
oParams
)
const
=
0
;
//! Add sequencer sample from file path
inline
int
AddSignalSourceSequencerSample
(
const
std
::
string
&
sSignalSourceID
,
const
std
::
string
sFilePath
)
{
CVAStruct
oArgs
;
oArgs
[
"filepath"
]
=
sFilePath
;
return
AddSignalSourceSequencerSample
(
sSignalSourceID
,
oArgs
);
};
//! Add sequencer sample
virtual
int
AddSignalSourceSequencerSample
(
const
std
::
string
&
sSignalSourceID
,
const
CVAStruct
&
oArgs
)
=
0
;
//! Add sequencer sound playback
virtual
int
AddSignalSourceSequencerSoundPlayback
(
const
std
::
string
&
sSignalSourceID
,
const
int
iSoundID
,
const
int
iFlags
,
const
double
dTimecode
);
//! Remove sound sample (a sample added for playback can not be reverted)
virtual
void
RemoveSignalSourceSequencerSoundSample
(
const
std
::
string
&
sSignalSourceID
,
const
int
iSoundID
)
=
0
;
//! Returns wheather a synchronized scene modification is in progress
virtual
bool
GetUpdateLocked
()
const
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment