Commit a9079f67 by andrewlewis Committed by Oliver Woodman

Fix some documentation nits.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=148776593
parent ab8fd147
...@@ -43,6 +43,9 @@ public final class GvrAudioProcessor implements AudioProcessor { ...@@ -43,6 +43,9 @@ public final class GvrAudioProcessor implements AudioProcessor {
private float y; private float y;
private float z; private float z;
/**
* Creates a new GVR audio processor.
*/
public GvrAudioProcessor() { public GvrAudioProcessor() {
// Use the identity for the initial orientation. // Use the identity for the initial orientation.
w = 1f; w = 1f;
......
...@@ -484,7 +484,7 @@ public final class C { ...@@ -484,7 +484,7 @@ public final class C {
* {@link ExoPlayer#sendMessages} or {@link ExoPlayer#blockingSendMessages}. The message object * {@link ExoPlayer#sendMessages} or {@link ExoPlayer#blockingSendMessages}. The message object
* should be a {@link android.media.PlaybackParams}, or null, which will be used to configure the * should be a {@link android.media.PlaybackParams}, or null, which will be used to configure the
* underlying {@link android.media.AudioTrack}. The message object should not be modified by the * underlying {@link android.media.AudioTrack}. The message object should not be modified by the
* caller after it has been passed * caller after it has been passed.
*/ */
public static final int MSG_SET_PLAYBACK_PARAMS = 3; public static final int MSG_SET_PLAYBACK_PARAMS = 3;
......
...@@ -33,7 +33,7 @@ import java.util.List; ...@@ -33,7 +33,7 @@ import java.util.List;
public final class DefaultTsPayloadReaderFactory implements TsPayloadReader.Factory { public final class DefaultTsPayloadReaderFactory implements TsPayloadReader.Factory {
/** /**
* Flags controlling elementary stream readers behaviour. * Flags controlling elementary stream readers' behavior.
*/ */
@Retention(RetentionPolicy.SOURCE) @Retention(RetentionPolicy.SOURCE)
@IntDef(flag = true, value = {FLAG_ALLOW_NON_IDR_KEYFRAMES, FLAG_IGNORE_AAC_STREAM, @IntDef(flag = true, value = {FLAG_ALLOW_NON_IDR_KEYFRAMES, FLAG_IGNORE_AAC_STREAM,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment