Fix file formatting

PiperOrigin-RevId: 375919564
This commit is contained in:
olly 2021-05-26 13:17:31 +01:00 committed by Oliver Woodman
parent 4b0c987675
commit ee2af43a54
4 changed files with 7 additions and 10 deletions

View file

@ -16,9 +16,8 @@
#include "include/flac_parser.h"
#include <jni.h>
#include <android/log.h>
#include <jni.h>
#include <cassert>
#include <cstdlib>

View file

@ -64,8 +64,8 @@ public class GvrAudioProcessor implements AudioProcessor {
}
/**
* Updates the listener head orientation. May be called on any thread. See
* {@code GvrAudioSurround.updateNativeOrientation}.
* Updates the listener head orientation. May be called on any thread. See {@code
* GvrAudioSurround.updateNativeOrientation}.
*
* @param w The w component of the quaternion.
* @param x The x component of the quaternion.
@ -113,7 +113,8 @@ public class GvrAudioProcessor implements AudioProcessor {
throw new UnhandledAudioFormatException(inputAudioFormat);
}
if (buffer == EMPTY_BUFFER) {
buffer = ByteBuffer.allocateDirect(FRAMES_PER_OUTPUT_BUFFER * OUTPUT_FRAME_SIZE)
buffer =
ByteBuffer.allocateDirect(FRAMES_PER_OUTPUT_BUFFER * OUTPUT_FRAME_SIZE)
.order(ByteOrder.nativeOrder());
}
pendingInputAudioFormat = inputAudioFormat;
@ -192,5 +193,4 @@ public class GvrAudioProcessor implements AudioProcessor {
gvrAudioSurround = null;
}
}
}

View file

@ -432,5 +432,4 @@ public final class ExoPlaybackException extends PlaybackException {
bundle.putBoolean(keyForField(FIELD_IS_RECOVERABLE), isRecoverable);
return bundle;
}
}

View file

@ -57,7 +57,6 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
void onTransportReady(String transport, RtpDataChannel rtpDataChannel);
}
/** The track ID associated with the Loadable. */
public final int trackId;
/** The {@link RtspMediaTrack} to load. */