Fix some documentation nits.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=148776593
This commit is contained in:
andrewlewis 2017-02-28 09:09:01 -08:00 committed by Oliver Woodman
parent ab8fd14724
commit a9079f67aa
3 changed files with 5 additions and 2 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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,