NIMSDK-AOS  9.20.15
AVChatVideoCropRatio.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.RtcVideoCropRatio;
9 
10 /**
11  * 本地发送预览画面裁剪比例
12  */
13 public interface AVChatVideoCropRatio {
14 
15  /**
16  * 画面不裁剪
17  */
18  int CROP_RATIO_NONE = RtcVideoCropRatio.CROP_RATIO_NONE;
19 
20  /**
21  * 画面 16:9 裁剪
22  */
23  int CROP_RATIO_16_9 = RtcVideoCropRatio.CROP_RATIO_16_9;
24 
25  /**
26  * 画面 4:3 裁剪
27  */
28  int CROP_RATIO_4_3 = RtcVideoCropRatio.CROP_RATIO_4_3;
29 
30  /**
31  * 画面 1:1 裁剪
32  */
33  int CROP_RATIO_1_1 = RtcVideoCropRatio.CROP_RATIO_1_1;
34 
35 }