|
@@ -659,14 +659,15 @@ class RtcEngine {
|
659
|
659
|
Agora.setAudioSessionOperationRestriction();
|
660
|
660
|
}
|
661
|
661
|
/**
|
|
662
|
+ * @deprecated
|
662
|
663
|
* start echo test
|
663
|
664
|
*
|
664
|
665
|
* This method launches an audio call test to determine whether the audio devices (for example, headset and speaker) and the network connection are working properly.
|
665
|
666
|
* @returns Promise<{success, value}>
|
666
|
667
|
*/
|
667
|
|
- static startEchoTest() {
|
668
|
|
- return Agora.startEchoTest();
|
669
|
|
- }
|
|
668
|
+ // public static startEchoTest(): Promise<any> {
|
|
669
|
+ // return Agora.startEchoTest();
|
|
670
|
+ // }
|
670
|
671
|
/**
|
671
|
672
|
* stop echo test
|
672
|
673
|
*
|
|
@@ -828,6 +829,7 @@ class RtcEngine {
|
828
|
829
|
return Agora.removeInjectStreamUrl(options);
|
829
|
830
|
}
|
830
|
831
|
/**
|
|
832
|
+ * @deprecated
|
831
|
833
|
* set video quality
|
832
|
834
|
*
|
833
|
835
|
* This method sets the preferences for the video quality. (Live broadcast only).
|
|
@@ -835,9 +837,9 @@ class RtcEngine {
|
835
|
837
|
* @param quality boolean
|
836
|
838
|
* @returns Promise<{success, value}>
|
837
|
839
|
*/
|
838
|
|
- static setVideoQualityParameters(quality) {
|
839
|
|
- return Agora.setVideoQualityParameters(quality);
|
840
|
|
- }
|
|
840
|
+ // public static setVideoQualityParameters(quality: boolean): Promise<any> {
|
|
841
|
+ // return Agora.setVideoQualityParameters(quality);
|
|
842
|
+ // }
|
841
|
843
|
/**
|
842
|
844
|
* set local video mirror mode
|
843
|
845
|
*
|