doc: audio stream processor, number of channels (#4753)
* doc: audio stream processor * fixed accidental encoding effect
This commit is contained in:
parent
cceabf6961
commit
6a644b48f0
7 changed files with 15 additions and 15 deletions
|
@ -12119,7 +12119,7 @@
|
|||
},
|
||||
{
|
||||
"name": "AttachAudioStreamProcessor",
|
||||
"description": "Attach audio stream processor to stream, receives the samples as 'float'",
|
||||
"description": "Attach audio stream processor to stream, receives frames x 2 samples as 'float' (stereo)",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
|
@ -12149,7 +12149,7 @@
|
|||
},
|
||||
{
|
||||
"name": "AttachAudioMixedProcessor",
|
||||
"description": "Attach audio stream processor to the entire audio pipeline, receives the samples as 'float'",
|
||||
"description": "Attach audio stream processor to the entire audio pipeline, receives frames x 2 samples as 'float' (stereo)",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
|
@ -12170,4 +12170,4 @@
|
|||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -8276,7 +8276,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "AttachAudioStreamProcessor",
|
||||
description = "Attach audio stream processor to stream, receives the samples as 'float'",
|
||||
description = "Attach audio stream processor to stream, receives frames x 2 samples as 'float' (stereo)",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "AudioStream", name = "stream"},
|
||||
|
@ -8294,7 +8294,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "AttachAudioMixedProcessor",
|
||||
description = "Attach audio stream processor to the entire audio pipeline, receives the samples as 'float'",
|
||||
description = "Attach audio stream processor to the entire audio pipeline, receives frames x 2 samples as 'float' (stereo)",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "AudioCallback", name = "processor"}
|
||||
|
|
|
@ -4659,7 +4659,7 @@ Function 578: SetAudioStreamCallback() (2 input parameters)
|
|||
Function 579: AttachAudioStreamProcessor() (2 input parameters)
|
||||
Name: AttachAudioStreamProcessor
|
||||
Return type: void
|
||||
Description: Attach audio stream processor to stream, receives the samples as 'float'
|
||||
Description: Attach audio stream processor to stream, receives frames x 2 samples as 'float' (stereo)
|
||||
Param[1]: stream (type: AudioStream)
|
||||
Param[2]: processor (type: AudioCallback)
|
||||
Function 580: DetachAudioStreamProcessor() (2 input parameters)
|
||||
|
@ -4671,7 +4671,7 @@ Function 580: DetachAudioStreamProcessor() (2 input parameters)
|
|||
Function 581: AttachAudioMixedProcessor() (1 input parameters)
|
||||
Name: AttachAudioMixedProcessor
|
||||
Return type: void
|
||||
Description: Attach audio stream processor to the entire audio pipeline, receives the samples as 'float'
|
||||
Description: Attach audio stream processor to the entire audio pipeline, receives frames x 2 samples as 'float' (stereo)
|
||||
Param[1]: processor (type: AudioCallback)
|
||||
Function 582: DetachAudioMixedProcessor() (1 input parameters)
|
||||
Name: DetachAudioMixedProcessor
|
||||
|
|
|
@ -3104,7 +3104,7 @@
|
|||
<Param type="AudioStream" name="stream" desc="" />
|
||||
<Param type="AudioCallback" name="callback" desc="" />
|
||||
</Function>
|
||||
<Function name="AttachAudioStreamProcessor" retType="void" paramCount="2" desc="Attach audio stream processor to stream, receives the samples as 'float'">
|
||||
<Function name="AttachAudioStreamProcessor" retType="void" paramCount="2" desc="Attach audio stream processor to stream, receives frames x 2 samples as 'float' (stereo)">
|
||||
<Param type="AudioStream" name="stream" desc="" />
|
||||
<Param type="AudioCallback" name="processor" desc="" />
|
||||
</Function>
|
||||
|
@ -3112,7 +3112,7 @@
|
|||
<Param type="AudioStream" name="stream" desc="" />
|
||||
<Param type="AudioCallback" name="processor" desc="" />
|
||||
</Function>
|
||||
<Function name="AttachAudioMixedProcessor" retType="void" paramCount="1" desc="Attach audio stream processor to the entire audio pipeline, receives the samples as 'float'">
|
||||
<Function name="AttachAudioMixedProcessor" retType="void" paramCount="1" desc="Attach audio stream processor to the entire audio pipeline, receives frames x 2 samples as 'float' (stereo)">
|
||||
<Param type="AudioCallback" name="processor" desc="" />
|
||||
</Function>
|
||||
<Function name="DetachAudioMixedProcessor" retType="void" paramCount="1" desc="Detach audio stream processor from the entire audio pipeline">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue