Video SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKAudioRawData.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import java.nio.ByteBuffer;
4
10public interface ZoomVideoSDKAudioRawData {
11
12
19 boolean canAddRef();
20
24 void addRef();
25
29 void releaseRef();
30
35 ByteBuffer getBuffer();
36
42
48
54
60
62
63 byte[] getArray();
64}
Zoom Video SDK audio raw data bean.
boolean canAddRef()
Determines whether the reference count for the interface pointer can be increased....
void releaseRef()
Decreases the reference count by 1.
int getSampleRate()
Gets the audio sample rate.
long getTimeStamp()
Gets the timestamp of the audio data.
int getChannelNum()
Gets the audio channel number.
ByteBuffer getBuffer()
Gets the audio buffer.
int getBufferLen()
Gets the buffer data length.
void addRef()
Increases the reference count by 1.