mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +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
(cherry picked from commit 7286155fc3)
This commit is contained in:
parent
49cc724a32
commit
fdd72aed5a
1 changed files with 6 additions and 3 deletions
|
|
@ -72,10 +72,13 @@ public interface FrameProcessor {
|
||||||
interface Listener {
|
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
|
* <p>The output size is the frame size in pixels after applying all {@linkplain Effect
|
||||||
* {@link #setOutputSurfaceInfo(SurfaceInfo)}.
|
* effects}.
|
||||||
|
*
|
||||||
|
* <p>The output size may differ from the size specified using {@link
|
||||||
|
* #setOutputSurfaceInfo(SurfaceInfo)}.
|
||||||
*/
|
*/
|
||||||
void onOutputSizeChanged(int width, int height);
|
void onOutputSizeChanged(int width, int height);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue