예제 #1
0
파일: PlcmProxy.cs 프로젝트: dazhouhu/QLSDK
 public static ErrorNumber EnableMediaQoE(VideoDataCapturedCallback videoDataCaptured,
                                          VideoDataRenderedCallback videoDataRendered,
                                          SpeakerDataReceivedCallback speakerDataReceived,
                                          MicrophoneDataSentCallback microphoneDataSent,
                                          DataEncodedCallback dataEncoded,
                                          DataDecodedCallback dataDecoded,
                                          RtpPacketReceivedCallback rtpPacketReceived,
                                          RtpPacketSentCallback rtpPacketSent,
                                          QoEType type)
 {
     return((ErrorNumber)PlcmHelper.enableMediaQoE(videoDataCaptured, videoDataRendered, speakerDataReceived, microphoneDataSent, dataEncoded, dataDecoded, rtpPacketReceived, rtpPacketSent, (int)type));
 }
예제 #2
0
파일: PlcmProxy.cs 프로젝트: dazhouhu/QLSDK
 public static ErrorNumber DisableMediaQoE(QoEType type)
 {
     return((ErrorNumber)PlcmHelper.disableMediaQoE((int)type));
 }
예제 #3
0
 public static ErrorNumber DisableMediaQoE(QoEType type)
 {
     return((ErrorNumber)WrapperInterface.disableMediaQoE((int)type));
 }