Skip to content

Commit b9fda89

Browse files
committed
Format with google-java-format
1 parent f23c868 commit b9fda89

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

libraries/common/src/main/java/androidx/media3/common/VideoGraph.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ interface Listener {
7676
*

If the method throws, the caller must call {@link #release}.

7777
*
7878
* @param sequenceIndex The sequence index of the input which can aid ordering of the inputs.
79-
*
8079
* @return The id of the registered input, which can be used to get the underlying {@link
8180
* VideoFrameProcessor} via {@link #getProcessor(int)}.
8281
*/

libraries/effect/src/main/java/androidx/media3/effect/VideoCompositor.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,10 @@ interface Listener {
5050
* source, to be used in {@link #queueInputTexture}.
5151
*
5252
* @param sequenceIndex The sequence index of the input source, which is can be used to determine
53-
* the order of the input sources.
53+
* the order of the input sources.
5454
*/
5555
int registerInputSource(int sequenceIndex);
56+
5657
/**
5758
* Signals that no more frames will come from the upstream {@link GlTextureProducer.Listener}.
5859
*

libraries/transformer/src/main/java/androidx/media3/transformer/SampleExporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public SampleExporter(Format firstInputFormat, MuxerWrapper muxerWrapper) {
6868
* @throws ExportException If an error occurs getting the input.
6969
*/
7070
public abstract GraphInput getInput(
71-
EditedMediaItem editedMediaItem, Format format, int sequenceIndex) throws ExportException;
71+
EditedMediaItem editedMediaItem, Format format, int sequenceIndex) throws ExportException;
7272

7373
/**
7474
* Processes the input data and returns whether it may be possible to process more data by calling

libraries/transformer/src/main/java/androidx/media3/transformer/VideoSampleExporter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ public VideoSampleExporter(
168168
}
169169

170170
@Override
171-
public GraphInput getInput(EditedMediaItem editedMediaItem, Format format, int sequenceIndex) throws ExportException {
171+
public GraphInput getInput(EditedMediaItem editedMediaItem, Format format, int sequenceIndex)
172+
throws ExportException {
172173
try {
173174
return videoGraph.createInput(sequenceIndex);
174175
} catch (VideoFrameProcessingException e) {

0 commit comments

Comments
 (0)