Format with google-java-format

This commit is contained in:
Luyuan Chen 2024-02-07 20:56:42 +00:00
parent 84df55c6e8
commit 3cccecf368
4 changed files with 5 additions and 4 deletions

View File

@ -76,7 +76,6 @@ public interface VideoGraph {
* <p>If the method throws, the caller must call {@link #release}. * <p>If the method throws, the caller must call {@link #release}.
* *
* @param sequenceIndex The sequence index of the input which can aid ordering of the inputs. * @param sequenceIndex The sequence index of the input which can aid ordering of the inputs.
*
* @return The id of the registered input, which can be used to get the underlying {@link * @return The id of the registered input, which can be used to get the underlying {@link
* VideoFrameProcessor} via {@link #getProcessor(int)}. * VideoFrameProcessor} via {@link #getProcessor(int)}.
*/ */

View File

@ -53,6 +53,7 @@ public interface VideoCompositor extends GlTextureProducer {
* the order of the input sources. * the order of the input sources.
*/ */
int registerInputSource(int sequenceIndex); int registerInputSource(int sequenceIndex);
/** /**
* Signals that no more frames will come from the upstream {@link GlTextureProducer.Listener}. * Signals that no more frames will come from the upstream {@link GlTextureProducer.Listener}.
* *

View File

@ -154,7 +154,8 @@ import org.checkerframework.dataflow.qual.Pure;
} }
@Override @Override
public GraphInput getInput(EditedMediaItem editedMediaItem, Format format, int sequenceIndex) throws ExportException { public GraphInput getInput(EditedMediaItem editedMediaItem, Format format, int sequenceIndex)
throws ExportException {
try { try {
return videoGraph.createInput(sequenceIndex); return videoGraph.createInput(sequenceIndex);
} catch (VideoFrameProcessingException e) { } catch (VideoFrameProcessingException e) {