diff --git a/library/common/src/main/java/androidx/media3/common/FrameProcessor.java b/library/common/src/main/java/androidx/media3/common/FrameProcessor.java index 3cf8f4c58b..64e940bdb7 100644 --- a/library/common/src/main/java/androidx/media3/common/FrameProcessor.java +++ b/library/common/src/main/java/androidx/media3/common/FrameProcessor.java @@ -72,10 +72,13 @@ public interface FrameProcessor { interface Listener { /** - * Called when the output size after applying the final effect changes. + * Called when the output size changes. * - *
The output size after applying the final effect can differ from the size specified using - * {@link #setOutputSurfaceInfo(SurfaceInfo)}. + *
The output size is the frame size in pixels after applying all {@linkplain Effect + * effects}. + * + *
The output size may differ from the size specified using {@link + * #setOutputSurfaceInfo(SurfaceInfo)}. */ void onOutputSizeChanged(int width, int height);