HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 1 - 25 of 521) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Program.java 20 import android.filterfw.core.Frame;
27 public abstract void process(Frame[] inputs, Frame output);
29 public void process(Frame input, Frame output) {
30 Frame[] inputs = new Frame[1];
FrameManager.java 20 import android.filterfw.core.Frame;
31 public abstract Frame newFrame(FrameFormat format);
33 public abstract Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId);
35 public Frame duplicateFrame(Frame frame) {
36 Frame result = newFrame(frame.getFormat());
37 result.setDataFromFrame(frame);
41 public Frame duplicateFrameToTarget(Frame frame, int newTarget)
    [all...]
CachedFrameManager.java 20 import android.filterfw.core.Frame;
33 private SortedMap<Integer, Frame> mAvailableFrames;
40 mAvailableFrames = new TreeMap<Integer, Frame>();
44 public Frame newFrame(FrameFormat format) {
45 Frame result = findAvailableFrame(format, Frame.NO_BINDING, 0);
49 result.setTimestamp(Frame.TIMESTAMP_NOT_SET);
54 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) {
55 Frame result = findAvailableFrame(format, bindingType, bindingId);
59 result.setTimestamp(Frame.TIMESTAMP_NOT_SET)
124 Frame frame = mAvailableFrames.get(oldest); local
134 Frame frame = entry.getValue(); local
    [all...]
FilterContext.java 21 import android.filterfw.core.Frame;
36 private HashMap<String, Frame> mStoredFrames = new HashMap<String, Frame>();
69 public void onFrameReceived(Filter filter, Frame frame, Object userData);
72 public synchronized void storeFrame(String key, Frame frame) {
73 Frame storedFrame = fetchFrame(key);
77 frame.onFrameStore();
78 mStoredFrames.put(key, frame.retain())
82 Frame frame = mStoredFrames.get(key); local
90 Frame frame = mStoredFrames.get(key); local
    [all...]
SimpleFrameManager.java 20 import android.filterfw.core.Frame;
37 public Frame newFrame(FrameFormat format) {
42 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) {
43 Frame result = null;
59 private Frame createNewFrame(FrameFormat format) {
60 Frame result = null;
83 throw new RuntimeException("Unsupported frame target type: " +
90 public Frame retainFrame(Frame frame) {
    [all...]
StreamPort.java 25 private Frame mFrame;
41 public void setFrame(Frame frame) {
42 assignFrame(frame, true);
46 public void pushFrame(Frame frame) {
47 assignFrame(frame, false);
50 protected synchronized void assignFrame(Frame frame, boolean persistent) {
52 checkFrameType(frame, persistent)
    [all...]
FilterFunction.java 43 public Frame execute(KeyValueMap inputMap) {
68 if (entry.getValue() instanceof Frame) {
69 mFilter.pushInputFrame(entry.getKey(), (Frame)entry.getValue());
83 Frame result = null;
96 public Frame executeWithArgList(Object... inputs) {
112 public void setInputFrame(String input, Frame frame) {
113 mFilter.setInputFrame(input, frame);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameQueue.java 79 public Frame pullFrame();
81 public Frame fetchAvailableFrame(int[] dimensions);
83 public Frame peek();
85 public void pushFrame(Frame frame);
91 private Frame mFrame = null;
104 public Frame pullFrame() {
105 Frame result = mFrame;
111 public Frame peek() {
116 public Frame fetchAvailableFrame(int[] dimensions)
    [all...]
Frame.java 27 * There are two ways to obtain new Frame instances. You can call
28 * {@link OutputPort#fetchAvailableFrame(int[])} on an OutputPort to obtain a Frame to pass to an
30 * a detached Frame instance that you may hold onto in your filter. If you need to hold on to a
31 * Frame that is owned by an input or output queue, you must call
34 * When you are done using a detached Frame, you must release it yourself.
36 * To access frame data, call any of the {@code lock}-methods. This will give you access to the
37 * frame data in the desired format. You must pass in a {@code mode} indicating whether you wish
38 * to read or write to the data. Writing to a read-locked Frame may produce unexpected results and
40 * {@link #unlock()}. Note, that a Frame must be unlocked before you push it into an output queue.
42 * Generally, any type of access format to a Frame's data will be granted. However, it is strongl
198 Frame frame = new Frame(getType(), getDimensions(), frameManager); local
    [all...]
GraphOutputTarget.java 6 import androidx.media.filterfw.Frame;
13 private Frame mFrame = null;
32 .addInputPort("frame", Signature.PORT_REQUIRED, mType)
36 // Returns a retained frame!
37 public Frame pullFrame() {
38 Frame result = null;
48 Frame frame = getConnectedInputPort("frame").pullFrame(); local
52 mFrame = frame.retain()
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
CalendarApp.java 10 import java.awt.Frame;
34 public Frame createDemoFrame(DemoApplet applet) {
  /external/opencv3/samples/winrt/ImageManipulations/common/
suspensionmanager.h 34 static void RegisterFrame(Windows::UI::Xaml::Controls::Frame^ frame, Platform::String^ sessionStateKey);
35 static void UnregisterFrame(Windows::UI::Xaml::Controls::Frame^ frame);
43 Windows::UI::Xaml::Controls::Frame^ frame);
46 static void RestoreFrameNavigationState(Windows::UI::Xaml::Controls::Frame^ frame);
47 static void SaveFrameNavigationState(Windows::UI::Xaml::Controls::Frame^ frame);
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/
FrameSourceFilter.java 23 * <p> When a frame is injected using {@link #injectFrame(Frame)}, this source will push it on its
24 * output port and then sleep until another frame is injected.
25 * <p> Multiple frames may be injected before any frame is pushed out. In this case they will be
30 private final Queue<Frame> mFrames = new LinkedList<Frame>();
43 private synchronized Frame obtainFrame() {
53 * Call this method to inject a frame that will be pushed in a future execution of the filter.
56 public synchronized void injectFrame(Frame frame) {
63 Frame frame = obtainFrame(); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Machine.java 27 * upon a {@link Frame}. A machine conceptually contains four arbitrary-value
51 * @param frame {@code non-null;} frame to operate on
54 public void popArgs(Frame frame, int count);
64 * @param frame {@code non-null;} frame to operate on
67 public void popArgs(Frame frame, Prototype prototype);
74 * @param frame {@code non-null;} frame to operate o
    [all...]
Frame.java 26 * Representation of a Java method execution frame. A frame consists
31 public final class Frame {
47 private Frame(LocalsArray locals, ExecutionStack stack) {
57 * subroutines this frame is nested in
59 private Frame(LocalsArray locals,
86 public Frame(int maxLocals, int maxStack) {
97 public Frame copy() {
98 return new Frame(locals.copy(), stack.copy(), subroutines);
112 * this frame with its initialized equivalent
    [all...]
  /frameworks/base/media/mca/effect/java/android/media/effect/
SizeChangeEffect.java 19 import android.filterfw.core.Frame;
44 Frame inputFrame = frameFromTexture(inputTexId, width, height);
45 Frame resultFrame = mFunction.executeWithArgList(mInputName, inputFrame);
50 Frame outputFrame = frameFromTexture(outputTexId, outputWidth, outputHeight);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DrawOverlayFilter.java 22 import android.filterfw.core.Frame;
62 // Get input frame
63 Frame sourceFrame = pullInput("source");
64 Frame overlayFrame = pullInput("overlay");
65 Frame boxFrame = pullInput("box");
73 // Create output frame with copy of input
74 Frame output = env.getFrameManager().newFrame(sourceFrame.getFormat());
83 // Release pushed frame
BitmapOverlayFilter.java 21 import android.filterfw.core.Frame;
41 private Frame mFrame;
96 // Get input frame
97 Frame input = pullInput("image");
100 // Create output frame
101 Frame output = context.getFrameManager().newFrame(inputFormat);
109 Frame frame = createBitmapFrame(context); local
111 Frame[] inputs = {input, frame};
132 Frame frame = context.getFrameManager().newFrame(format); local
    [all...]
  /external/v8/src/compiler/
frame.cc 5 #include "src/compiler/frame.h"
15 Frame::Frame(int fixed_frame_size_in_slots)
21 int Frame::AlignFrame(int alignment) {
52 // No frame. Retrieve all parameters relative to stack pointer.
osr.h 72 // simply load from the unoptimized frame.
87 class Frame;
91 // details of the frame layout.
105 // Prepares the frame w.r.t. OSR.
106 void SetupFrame(Frame* frame);
108 // Returns the number of unoptimized frame slots for this OSR.
  /frameworks/base/media/mca/effect/java/android/media/effect/effects/
IdentityEffect.java 20 import android.filterfw.core.Frame;
37 Frame inputFrame = frameFromTexture(inputTexId, width, height);
38 Frame outputFrame = frameFromTexture(outputTexId, width, height);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
StringSource.java 22 import android.filterfw.core.Frame;
49 Frame output = env.getFrameManager().newFrame(mOutputFormat);
51 output.setTimestamp(Frame.TIMESTAMP_UNKNOWN);
ToUpperCase.java 22 import android.filterfw.core.Frame;
48 Frame input = pullInput("mixedcase");
51 Frame output = env.getFrameManager().newFrame(mOutputFormat);
  /external/eigen/demos/opengl/
camera.h 15 // #include <frame.h>
17 class Frame
22 inline Frame(const Eigen::Vector3f& pos = Eigen::Vector3f::Zero(),
26 Frame lerp(float alpha, const Frame& other) const
28 return Frame((1.f-alpha)*position + alpha * other.position,
66 void setFrame(const Frame& f);
67 const Frame& frame(void) const { return mFrame; } function in class:Camera
102 Frame mFrame
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
FrameStore.java 22 import android.filterfw.core.Frame;
39 addInputPort("frame");
43 // Get input frame
44 Frame input = pullInput("frame");
46 // Store frame

Completed in 584 milliseconds

1 2 3 4 5 6 7 8 91011>>