| AudioFormat Constructor (Int32, Int32, Int32, Int32, AudioType, Int32, String) | 
 
Namespace: Ozeki.MediaAssembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntaxpublic AudioFormat(
	int sampleRate,
	int channels,
	int bitRate,
	int packetizationTime,
	AudioType audioCodecType,
	int audioCodecBitrate = 0,
	string mpeg4_aac_conf = ""
)
Public Sub New ( 
	sampleRate As Integer,
	channels As Integer,
	bitRate As Integer,
	packetizationTime As Integer,
	audioCodecType As AudioType,
	Optional audioCodecBitrate As Integer = 0,
	Optional mpeg4_aac_conf As String = ""
)
public:
AudioFormat(
	int sampleRate, 
	int channels, 
	int bitRate, 
	int packetizationTime, 
	AudioType audioCodecType, 
	int audioCodecBitrate = 0, 
	String^ mpeg4_aac_conf = L""
)
new : 
        sampleRate : int * 
        channels : int * 
        bitRate : int * 
        packetizationTime : int * 
        audioCodecType : AudioType * 
        ?audioCodecBitrate : int * 
        ?mpeg4_aac_conf : string 
(* Defaults:
        let _audioCodecBitrate = defaultArg audioCodecBitrate 0
        let _mpeg4_aac_conf = defaultArg mpeg4_aac_conf ""
*)
-> AudioFormatParameters
- sampleRate
 - Type: SystemInt32
Sample rate. - channels
 - Type: SystemInt32
Channels. - bitRate
 - Type: SystemInt32
Bits per sample. - packetizationTime
 - Type: SystemInt32
Packetization time. - audioCodecType
 - Type: Ozeki.MediaAudioType
 - audioCodecBitrate (Optional)
 - Type: SystemInt32
 - mpeg4_aac_conf (Optional)
 - Type: SystemString
 
See Also