HomeSort by relevance Sort by last modified time
    Searched refs:GraphRunner (Results 1 - 15 of 15) sorted by null

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
GraphRunner.java 23 public abstract class GraphRunner {
49 public GraphRunner(FilterContext context) {
AsyncRunner.java 27 public class AsyncRunner extends GraphRunner{
71 if (result.status == GraphRunner.RESULT_SLEEPING) {
SyncRunner.java 31 public class SyncRunner extends GraphRunner {
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
MffContext.java 96 private Set<GraphRunner> mRunners = new HashSet<GraphRunner>();
325 void addRunner(GraphRunner runner) {
391 for (GraphRunner runner : mRunners) {
400 for (GraphRunner runner : mRunners) {
409 for (GraphRunner runner : mRunners) {
423 for (GraphRunner runner : mRunners) {
435 for (GraphRunner runner : mRunners) {
FrameManager.java 56 private GraphRunner mRunner;
264 GraphRunner runner = GraphRunner.current();
278 * Returns the GraphRunner that the FrameManager is bound to.
280 * @return the GraphRunner instance that the FrameManager is bound to.
282 public GraphRunner getRunner() {
389 * @param runner the GraphRunner to bind the FrameManager to.
392 FrameManager(GraphRunner runner, int cacheType) {
466 if (!mRunner.isRunning() || GraphRunner.current() != mRunner) {
FilterGraph.java 59 /** The GraphRunner currently attached to this graph */
60 GraphRunner mRunner;
306 * Attach the graph and its subgraphs to a custom GraphRunner.
308 * Call this if you want the graph to be executed by a specific GraphRunner. You must call
310 * {@code run()} auto-create a GraphRunner.
312 * @param runner The GraphRunner instance that should execute this graph.
316 public void attachToRunner(GraphRunner runner) {
324 throw new RuntimeException("Cannot attach FilterGraph to GraphRunner that is already "
325 + "attached to another GraphRunner!");
465 * @return the GraphRunner instance that was used for execution
    [all...]
GraphRunner.java 27 * A GraphRunner schedules and executes the filter nodes of a graph.
29 * Typically, you create a GraphRunner given a FilterGraph instance, and execute it by calling
37 public final class GraphRunner {
238 Log.w("GraphRunner", "Event queue processing was interrupted.");
282 mThreadRunner.set(GraphRunner.this);
318 listener.onSubGraphRunEnded(GraphRunner.this);
374 Log.w("GraphRunner", "State is not running! (" + mState.current() + ")");
406 Log.v("GraphRunner", "CLOSING FILTERS");
411 Log.i("GraphRunner", "Closing Filter " + filters[i] + "!");
425 Log.i("GraphRunner", scheduleTime + ": Scheduling " + filter + "!")
    [all...]
FrameImage2D.java 96 if (GraphRunner.current().isOpenGLSupported()) {
Filter.java 153 * GraphRunner that is executing the filter is stopped or paused.
165 * GraphRunner that is executing the filter is stopped or paused.
422 * Returns whether the GraphRunner for this filter is running.
427 * @return true, if the GraphRunner for this filter is running.
543 * Filters may use OpenGL if the MffContext supports OpenGL and its GraphRunner allows it.
752 GraphRunner runner = GraphRunner.current();
  /frameworks/base/media/mca/filterfw/java/android/filterfw/
GraphEnvironment.java 25 import android.filterfw.core.GraphRunner;
40 * 4. Obtain a GraphRunner instance using getRunner().
75 public GraphRunner getSyncRunner(FilterContext environment) {
174 * Get a GraphRunner instance for the graph with the specified ID. The GraphRunner instance can
181 * @return A GraphRunner instance for this graph.
183 public GraphRunner getRunner(int graphId, int executionMode) {
  /frameworks/base/media/mca/effect/java/android/media/effect/
FilterGraphEffect.java 21 import android.filterfw.core.GraphRunner;
41 protected GraphRunner mRunner;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/
MffFilterTestCase.java 18 import androidx.media.filterfw.GraphRunner.Listener;
52 private GraphRunner mRunner;
75 public void onGraphRunnerStopped(GraphRunner runner) {
  /frameworks/base/media/mca/samples/CameraEffectsRecordingSample/java/android/media/filterfw/samples/
CameraEffectsRecordingSample.java 29 import android.filterfw.core.GraphRunner;
40 private GraphRunner mRunner;
  /packages/apps/LegacyCamera/src/com/android/camera/
EffectsRecorder.java 24 import android.filterfw.core.GraphRunner;
25 import android.filterfw.core.GraphRunner.OnRunnerDoneListener;
106 private GraphRunner mRunner = null;
107 private GraphRunner mOldRunner = null;
802 if (result == GraphRunner.RESULT_ERROR) {
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
SmartCamera.java 40 import androidx.media.filterfw.GraphRunner;
69 private GraphRunner mRunner;

Completed in 2026 milliseconds