PhoneCallAudioSenderAudioDataReceived Method |
Override this methode if you want access to the outgoing audio data before passing it to the network layer, for example you can produce
specific RTPPacket(s) from it and then attach it(them) to the data by calling SetRtpPackets() on it, in this case the underlaying network layer
will use the existing RTPPacket(s) instead of producing some automatically.
Namespace: Ozeki.VoIPAssembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntax public virtual AudioData AudioDataReceived(
AudioData data
)
Public Overridable Function AudioDataReceived (
data As AudioData
) As AudioData
public:
virtual AudioData^ AudioDataReceived(
AudioData^ data
)
abstract AudioDataReceived :
data : AudioData -> AudioData
override AudioDataReceived :
data : AudioData -> AudioData
Parameters
- data
- Type: Ozeki.MediaAudioData
AudioData which will be sent to the network.
Return Value
Type:
AudioDataAudioData which is pre-processed before sending.
See Also