FileDocCategorySizeDatePackage
FrameManager.javaAPI DocAndroid 5.1 API1910Thu Mar 12 22:22:30 GMT 2015android.filterfw.core

FrameManager

public abstract class FrameManager extends Object
hide

Fields Summary
private FilterContext
mContext
Constructors Summary
Methods Summary
public android.filterfw.core.FrameduplicateFrame(android.filterfw.core.Frame frame)

        Frame result = newFrame(frame.getFormat());
        result.setDataFromFrame(frame);
        return result;
    
public android.filterfw.core.FrameduplicateFrameToTarget(android.filterfw.core.Frame frame, int newTarget)

        MutableFrameFormat newFormat = frame.getFormat().mutableCopy();
        newFormat.setTarget(newTarget);
        Frame result = newFrame(newFormat);
        result.setDataFromFrame(frame);
        return result;
    
public FilterContextgetContext()

        return mContext;
    
public GLEnvironmentgetGLEnvironment()

        return mContext != null ? mContext.getGLEnvironment() : null;
    
public abstract android.filterfw.core.FramenewBoundFrame(android.filterfw.core.FrameFormat format, int bindingType, long bindingId)

public abstract android.filterfw.core.FramenewFrame(android.filterfw.core.FrameFormat format)

public abstract android.filterfw.core.FramereleaseFrame(android.filterfw.core.Frame frame)

public abstract android.filterfw.core.FrameretainFrame(android.filterfw.core.Frame frame)

voidsetContext(FilterContext context)

        mContext = context;
    
public voidtearDown()