Methods Summary |
---|
public static android.filterfw.core.MutableFrameFormat | createByteFormat(int count, int target)
return createFormat(FrameFormat.TYPE_BYTE, count, target);
|
public static android.filterfw.core.MutableFrameFormat | createByteFormat(int target)
return createFormat(FrameFormat.TYPE_BYTE, target);
|
public static android.filterfw.core.MutableFrameFormat | createDoubleFormat(int target)
return createFormat(FrameFormat.TYPE_DOUBLE, target);
|
public static android.filterfw.core.MutableFrameFormat | createDoubleFormat(int count, int target)
return createFormat(FrameFormat.TYPE_DOUBLE, count, target);
|
public static android.filterfw.core.MutableFrameFormat | createFloatFormat(int count, int target)
return createFormat(FrameFormat.TYPE_FLOAT, count, target);
|
public static android.filterfw.core.MutableFrameFormat | createFloatFormat(int target)
return createFormat(FrameFormat.TYPE_FLOAT, target);
|
private static android.filterfw.core.MutableFrameFormat | createFormat(int baseType, int count, int target)
MutableFrameFormat result = new MutableFrameFormat(baseType, target);
result.setDimensions(count);
return result;
|
private static android.filterfw.core.MutableFrameFormat | createFormat(int baseType, int target)
MutableFrameFormat result = new MutableFrameFormat(baseType, target);
result.setDimensionCount(1);
return result;
|
public static android.filterfw.core.MutableFrameFormat | createInt16Format(int count, int target)
return createFormat(FrameFormat.TYPE_INT16, count, target);
|
public static android.filterfw.core.MutableFrameFormat | createInt16Format(int target)
return createFormat(FrameFormat.TYPE_INT16, target);
|
public static android.filterfw.core.MutableFrameFormat | createInt32Format(int count, int target)
return createFormat(FrameFormat.TYPE_INT32, count, target);
|
public static android.filterfw.core.MutableFrameFormat | createInt32Format(int target)
return createFormat(FrameFormat.TYPE_INT32, target);
|