NIMSDK-AOS  9.20.15
AVChatVideoQualityStrategy.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.RtcVideoQualityStrategy;
10 
11 /**
12  * 视频 QoS调控策略
13  */
14 public interface AVChatVideoQualityStrategy {
15 
16  /**
17  * 清晰优先
18  */
19  int PreferImageQuality = RtcVideoQualityStrategy.PreferImageQuality;
20 
21  /**
22  * 流畅优先
23  */
24  int PreferFrameRate = RtcVideoQualityStrategy.PreferFrameRate;
25 
26  /**
27  * 录屏模式
28  */
29  int ScreenSharing = RtcVideoQualityStrategy.ScreenSharing;
30 
31 }