NIMSDK-AOS  9.16.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 
14 public interface AVChatVideoQuality {
15 
19  int QUALITY_DEFAULT = RtcVideoQuality.QUALITY_DEFAULT;
20 
24  int QUALITY_LOW = RtcVideoQuality.QUALITY_LOW;
25 
26 
30  int QUALITY_MEDIUM = RtcVideoQuality.QUALITY_MEDIUM;
31 
32 
36  int QUALITY_HIGH = RtcVideoQuality.QUALITY_HIGH;
37 
38 
42  int QUALITY_480P = RtcVideoQuality.QUALITY_480P;
43 
47  int QUALITY_540P = RtcVideoQuality.QUALITY_540P;
48 
49 
53  int QUALITY_720P = RtcVideoQuality.QUALITY_720P;
54 
55 
56 
57 }