NIMSDK-AOS  9.16.0
AVChatNetDetectType.java
浏览该文件的文档.
1 /*
2  * Copyright (c) 2014-2018 NetEase, Inc.
3  * All right reserved.
4  */
5 
6 package com.netease.nimlib.sdk.avchat.constant;
7 
8 import com.netease.nrtc.engine.rawapi.RtcNetDetectType;
9 
14 public interface AVChatNetDetectType {
18  int AUDIO = RtcNetDetectType.AUDIO;
19 
23  int VIDEO_QUALITY_DEFAULT = RtcNetDetectType.VIDEO_QUALITY_DEFAULT;
24 
28  int VIDEO_QUALITY_LOW = RtcNetDetectType.VIDEO_QUALITY_LOW;
29 
33  int VIDEO_QUALITY_MEDIUM = RtcNetDetectType.VIDEO_QUALITY_MEDIUM;
34 
38  int VIDEO_QUALITY_HIGH = RtcNetDetectType.VIDEO_QUALITY_HIGH;
39 
43  int VIDEO_QUALITY_480P = RtcNetDetectType.VIDEO_QUALITY_480P;
44 
48  int VIDEO_QUALITY_720P = RtcNetDetectType.VIDEO_QUALITY_720P;
49 
53  int VIDEO_QUALITY_540P = RtcNetDetectType.VIDEO_QUALITY_540P;
54 }