diff options
author | 2021-07-05 13:00:47 +0000 | |
---|---|---|
committer | 2021-07-07 05:57:17 +0000 | |
commit | 1641bb0c6c4ab25c389ba0b3e810d03522efaf19 (patch) | |
tree | 821525fb1fe8a99b4e4e822adf85cc08b2411193 | |
parent | 9864fc9af697a42cfecfd7280a49a2b5f31f7e5a (diff) |
Typo Fix and Import Optimisations
Fixed typo in SurfaceTextureSource and optimised imports for successful execution of repohooks
Bug: 192803663
Test: built the code
Change-Id: I7802547055a4f1d046fa6979e045a21c3f855548
-rw-r--r-- | media/mca/filterpacks/java/android/filterpacks/videosrc/SurfaceTextureSource.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/media/mca/filterpacks/java/android/filterpacks/videosrc/SurfaceTextureSource.java b/media/mca/filterpacks/java/android/filterpacks/videosrc/SurfaceTextureSource.java index 7919723b80a8..a00031a28b4f 100644 --- a/media/mca/filterpacks/java/android/filterpacks/videosrc/SurfaceTextureSource.java +++ b/media/mca/filterpacks/java/android/filterpacks/videosrc/SurfaceTextureSource.java @@ -20,16 +20,15 @@ import android.filterfw.core.Filter; import android.filterfw.core.FilterContext; import android.filterfw.core.Frame; import android.filterfw.core.FrameFormat; +import android.filterfw.core.GLFrame; import android.filterfw.core.GenerateFieldPort; import android.filterfw.core.GenerateFinalPort; -import android.filterfw.core.GLFrame; import android.filterfw.core.MutableFrameFormat; import android.filterfw.core.ShaderProgram; import android.filterfw.format.ImageFormat; import android.graphics.SurfaceTexture; -import android.os.ConditionVariable; import android.opengl.Matrix; - +import android.os.ConditionVariable; import android.util.Log; /** <p>A filter that converts textures from a SurfaceTexture object into frames for @@ -57,7 +56,7 @@ public class SurfaceTextureSource extends Filter { public void onSurfaceTextureSourceReady(SurfaceTexture source); } /** A callback to send the internal SurfaceTexture object to, once it is - * created. This callback will be called when the the filter graph is + * created. This callback will be called when the filter graph is * preparing to execute, but before any processing has actually taken * place. The SurfaceTexture object passed to this callback is the only way * to feed this filter. When the filter graph is shutting down, this |