mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
Effect: Update javadoc to remove "final effect" references
"Final" was likely added to reference the FinalMatrixTextureProcessorWrapper, which is a package-private class. However, I think more clear to express that this is the input size, which then has all effects applied, to get the output size. PiperOrigin-RevId: 477975358
This commit is contained in:
parent
d5c272fde8
commit
de82a2be33
1 changed files with 6 additions and 3 deletions
|
|
@ -74,10 +74,13 @@ public interface FrameProcessor {
|
|||
interface Listener {
|
||||
|
||||
/**
|
||||
* Called when the output size after applying the final effect changes.
|
||||
* Called when the output size changes.
|
||||
*
|
||||
* <p>The output size after applying the final effect can differ from the size specified using
|
||||
* {@link #setOutputSurfaceInfo(SurfaceInfo)}.
|
||||
* <p>The output size is the frame size in pixels after applying all {@linkplain Effect
|
||||
* effects}.
|
||||
*
|
||||
* <p>The output size may differ from the size specified using {@link
|
||||
* #setOutputSurfaceInfo(SurfaceInfo)}.
|
||||
*/
|
||||
void onOutputSizeChanged(int width, int height);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue