AudioTrack: fix javadoc in setOffloadDelayPadding

Bug: 128676433
Test: make offline-sdk-docs
Change-Id: I1ba2524aad71bd3d2611a76897e644a98afe81c4
This commit is contained in:
Jean-Michel Trivi
2019-03-18 10:46:52 -07:00
parent 04b8032de5
commit 72e6a4a250

View File

@@ -1014,9 +1014,9 @@ public class AudioTrack extends PlayerBase
* frame indicates the number of samples per channel, e.g. 100 frames for a stereo compressed
* stream corresponds to 200 decoded interleaved PCM samples.
* @param delayInFrames number of frames to be ignored at the beginning of the stream. A value
* of 0 indicates no padding is to be applied.
* @param paddingInFrames number of frames to be ignored at the end of the stream. A value of 0
* of 0 indicates no delay is to be applied.
* @param paddingInFrames number of frames to be ignored at the end of the stream. A value of 0
* of 0 indicates no padding is to be applied.
*/
public void setOffloadDelayPadding(@IntRange(from = 0) int delayInFrames,
@IntRange(from = 0) int paddingInFrames) {