NIMSDK-AOS  9.19.0
AVChatVideoQuality.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 
9 import com.netease.nrtc.engine.rawapi.RtcVideoQuality;
10 
11 /**
12  * 视频清晰度
13  */
14 public interface AVChatVideoQuality {
15 
16  /**
17  * 默认
18  */
19  int QUALITY_DEFAULT = RtcVideoQuality.QUALITY_DEFAULT;
20 
21  /**
22  * 低分辨率
23  */
24  int QUALITY_LOW = RtcVideoQuality.QUALITY_LOW;
25 
26 
27  /**
28  * 中等分辨率
29  */
30  int QUALITY_MEDIUM = RtcVideoQuality.QUALITY_MEDIUM;
31 
32 
33  /**
34  * 高分辨率
35  */
36  int QUALITY_HIGH = RtcVideoQuality.QUALITY_HIGH;
37 
38 
39  /**
40  * 480P
41  */
42  int QUALITY_480P = RtcVideoQuality.QUALITY_480P;
43 
44  /**
45  * 540P
46  */
47  int QUALITY_540P = RtcVideoQuality.QUALITY_540P;
48 
49 
50  /**
51  * 720P
52  */
53  int QUALITY_720P = RtcVideoQuality.QUALITY_720P;
54 
55 
56 
57 }