|
SAA_channelStartTake
Starts a take recording session.
A take recording session begins with a call to SAA_channelStartTake and
ends with a call to SAA_channelEndTake.
Do not start another take recording session until you end the previous session.
The hintId and saveType arguments allow you to override the
defaults set in the call to SAA_channelInit.
To use the default settings, pass NULL for both arguments when you call SAA_channelStartTake.
set hintId 1
set saveType [SAA_AllocChannelTakeTypes]
SAA_channelStartTake $hintId $saveType
hintId
- Numeric ID for the take. If this ID is already assigned to a previous take, the next
highest number is used.
saveType
- Specifies whether the take data is saved in ASCII or binary format:
SAA_CHANNEL_TAKE_ASCII
SAA_CHANNEL_TAKE_BINARY
Return Value
Return correct usage if incorrect parameters are passed
"SI_ERR_ERROR_MSG" if a channel run is already active, the channel
run was not set up for take recording, or the take directory can not be created.
|