PhoneCallAudioReceiverDataReceivedFromCall Method |
Some data is received from the call
If you override this method you'll get access to the incoming RTP packets, but keep in mind that you must call the SendMediaData(MediaData mediaData) method
before return. You can make decisions based on the RTP packets before sending the audio data to the speaker or other AudioReceiver.
Namespace: Ozeki.VoIPAssembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntax public virtual void DataReceivedFromCall(
MediaData mediaData
)
Public Overridable Sub DataReceivedFromCall (
mediaData As MediaData
)
public:
virtual void DataReceivedFromCall(
MediaData^ mediaData
)
abstract DataReceivedFromCall :
mediaData : MediaData -> unit
override DataReceivedFromCall :
mediaData : MediaData -> unit
Parameters
- mediaData
- Type: Ozeki.MediaMediaData
The media data that is received from the call
See Also