Mark @CallSuper on some BaseGlShaderProgram methods.

PiperOrigin-RevId: 528734663
This commit is contained in:
claincly 2023-05-02 11:43:06 +01:00 committed by Marc Baechinger
parent 25581384e9
commit ad2d4f5008

View file

@ -17,6 +17,7 @@ package androidx.media3.effect;
import static androidx.media3.common.util.Assertions.checkState;
import androidx.annotation.CallSuper;
import androidx.media3.common.GlObjectsProvider;
import androidx.media3.common.GlTextureInfo;
import androidx.media3.common.VideoFrameProcessingException;
@ -188,6 +189,7 @@ public abstract class BaseGlShaderProgram implements GlShaderProgram {
}
@Override
@CallSuper
public void flush() {
frameProcessingStarted = true;
freeOutputTextures.addAll(inUseOutputTextures);
@ -199,6 +201,7 @@ public abstract class BaseGlShaderProgram implements GlShaderProgram {
}
@Override
@CallSuper
public void release() throws VideoFrameProcessingException {
frameProcessingStarted = true;
try {