houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 291189
7  * @version 1.0
8  * @description
9  * @date 2021/8/4 14:24
10  */
11 public class NET_ENCODE_AUDIO_COMPRESSION_INFO extends NetSDKLib.SdkStructure {
12
13     public int                        dwSize;
14     public int                        bAudioEnable;            // 音频使能
15     /** 参考{@link com.netsdk.lib.enumeration.NET_EM_FORMAT_TYPE}*/
16     public int emFormatType;            // 码流类型,设置和获取时都需要设置值
17
18     /** 参考{@link NetSDKLib.NET_EM_AUDIO_FORMAT} */
19     public   int emCompression;            // 音频压缩模式
20
21     public NET_ENCODE_AUDIO_COMPRESSION_INFO( ) {
22         this.dwSize = this.size();
23     }
24 }