FileDocCategorySizeDatePackage
PrimitiveFormat.javaAPI DocAndroid 5.1 API2717Thu Mar 12 22:22:30 GMT 2015android.filterfw.format

PrimitiveFormat

public class PrimitiveFormat extends Object
hide

Fields Summary
Constructors Summary
Methods Summary
public static android.filterfw.core.MutableFrameFormatcreateByteFormat(int count, int target)

        return createFormat(FrameFormat.TYPE_BYTE, count, target);
    
public static android.filterfw.core.MutableFrameFormatcreateByteFormat(int target)

        return createFormat(FrameFormat.TYPE_BYTE, target);
    
public static android.filterfw.core.MutableFrameFormatcreateDoubleFormat(int target)

        return createFormat(FrameFormat.TYPE_DOUBLE, target);
    
public static android.filterfw.core.MutableFrameFormatcreateDoubleFormat(int count, int target)

        return createFormat(FrameFormat.TYPE_DOUBLE, count, target);
    
public static android.filterfw.core.MutableFrameFormatcreateFloatFormat(int count, int target)

        return createFormat(FrameFormat.TYPE_FLOAT, count, target);
    
public static android.filterfw.core.MutableFrameFormatcreateFloatFormat(int target)

        return createFormat(FrameFormat.TYPE_FLOAT, target);
    
private static android.filterfw.core.MutableFrameFormatcreateFormat(int baseType, int count, int target)

        MutableFrameFormat result = new MutableFrameFormat(baseType, target);
        result.setDimensions(count);
        return result;
    
private static android.filterfw.core.MutableFrameFormatcreateFormat(int baseType, int target)

        MutableFrameFormat result = new MutableFrameFormat(baseType, target);
        result.setDimensionCount(1);
        return result;
    
public static android.filterfw.core.MutableFrameFormatcreateInt16Format(int count, int target)

        return createFormat(FrameFormat.TYPE_INT16, count, target);
    
public static android.filterfw.core.MutableFrameFormatcreateInt16Format(int target)

        return createFormat(FrameFormat.TYPE_INT16, target);
    
public static android.filterfw.core.MutableFrameFormatcreateInt32Format(int count, int target)

        return createFormat(FrameFormat.TYPE_INT32, count, target);
    
public static android.filterfw.core.MutableFrameFormatcreateInt32Format(int target)

        return createFormat(FrameFormat.TYPE_INT32, target);