NIMSDK-AOS  9.21.10
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 
10 /**
11  * 网络探测类型
12  */
13 
14 public interface AVChatNetDetectType {
15  /**
16  * 音频
17  */
18  int AUDIO = RtcNetDetectType.AUDIO;
19 
20  /**
21  * 视频默认分辨率
22  */
23  int VIDEO_QUALITY_DEFAULT = RtcNetDetectType.VIDEO_QUALITY_DEFAULT;
24 
25  /**
26  * 视频低分辨率, (240x160)
27  */
28  int VIDEO_QUALITY_LOW = RtcNetDetectType.VIDEO_QUALITY_LOW;
29 
30  /**
31  * 视频中等分辨率, (352x288)
32  */
33  int VIDEO_QUALITY_MEDIUM = RtcNetDetectType.VIDEO_QUALITY_MEDIUM;
34 
35  /**
36  * 视频高分辨率, (480x320)
37  */
38  int VIDEO_QUALITY_HIGH = RtcNetDetectType.VIDEO_QUALITY_HIGH;
39 
40  /**
41  * 视频480P, (640x480)
42  */
43  int VIDEO_QUALITY_480P = RtcNetDetectType.VIDEO_QUALITY_480P;
44 
45  /**
46  * 视频720P, (1280x720)
47  */
48  int VIDEO_QUALITY_720P = RtcNetDetectType.VIDEO_QUALITY_720P;
49 
50  /**
51  * 视频540P, (960x540)
52  */
53  int VIDEO_QUALITY_540P = RtcNetDetectType.VIDEO_QUALITY_540P;
54 }