Home
last modified time | relevance | path

Searched refs:MutableFrameFormat (Results 1 – 25 of 28) sorted by relevance

12

/aosp12/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
H A DPrimitiveFormat.java21 import android.filterfw.core.MutableFrameFormat;
28 public static MutableFrameFormat createByteFormat(int count, int target) { in createByteFormat()
32 public static MutableFrameFormat createInt16Format(int count, int target) { in createInt16Format()
36 public static MutableFrameFormat createInt32Format(int count, int target) { in createInt32Format()
48 public static MutableFrameFormat createByteFormat(int target) { in createByteFormat()
52 public static MutableFrameFormat createInt16Format(int target) { in createInt16Format()
56 public static MutableFrameFormat createInt32Format(int target) { in createInt32Format()
60 public static MutableFrameFormat createFloatFormat(int target) { in createFloatFormat()
64 public static MutableFrameFormat createDoubleFormat(int target) { in createDoubleFormat()
69 MutableFrameFormat result = new MutableFrameFormat(baseType, target); in createFormat()
[all …]
H A DObjectFormat.java21 import android.filterfw.core.MutableFrameFormat;
29 public static MutableFrameFormat fromClass(Class clazz, int count, int target) { in fromClass()
31 MutableFrameFormat result = new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target); in fromClass()
40 public static MutableFrameFormat fromClass(Class clazz, int target) { in fromClass()
44 public static MutableFrameFormat fromObject(Object object, int target) { in fromObject()
46 ? new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target) in fromObject()
50 public static MutableFrameFormat fromObject(Object object, int count, int target) { in fromObject()
52 ? new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target) in fromObject()
H A DImageFormat.java22 import android.filterfw.core.MutableFrameFormat;
37 public static MutableFrameFormat create(int width, in create()
42 MutableFrameFormat result = new MutableFrameFormat(FrameFormat.TYPE_BYTE, target); in create()
53 public static MutableFrameFormat create(int width, in create()
65 public static MutableFrameFormat create(int colorspace, int target) { in create()
74 public static MutableFrameFormat create(int colorspace) { in create()
/aosp12/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DToRGBAFilter.java24 import android.filterfw.core.MutableFrameFormat;
44 MutableFrameFormat mask = new MutableFrameFormat(FrameFormat.TYPE_BYTE, in setupPorts()
57 MutableFrameFormat result = format.mutableCopy(); in getConvertedFormat()
H A DToRGBFilter.java24 import android.filterfw.core.MutableFrameFormat;
44 MutableFrameFormat mask = new MutableFrameFormat(FrameFormat.TYPE_BYTE, in setupPorts()
57 MutableFrameFormat result = format.mutableCopy(); in getConvertedFormat()
H A DResizeFilter.java26 import android.filterfw.core.MutableFrameFormat;
50 private MutableFrameFormat mOutputFormat;
92 MutableFrameFormat outputFormat = input.getFormat().mutableCopy(); in process()
H A DCropFilter.java25 import android.filterfw.core.MutableFrameFormat;
82 MutableFrameFormat outputFormat = inputFormat.mutableCopy(); in getOutputFormat()
118 MutableFrameFormat outputFormat = imageFrame.getFormat().mutableCopy(); in process()
H A DToGrayFilter.java23 import android.filterfw.core.MutableFrameFormat;
39 private MutableFrameFormat mOutputFormat;
H A DFixedRotationFilter.java24 import android.filterfw.core.MutableFrameFormat;
71 MutableFrameFormat outputFormat = inputFormat.mutableCopy(); in process()
H A DImageSlicer.java24 import android.filterfw.core.MutableFrameFormat;
97 MutableFrameFormat outputFormat = inputFormat.mutableCopy(); in process()
H A DImageStitcher.java24 import android.filterfw.core.MutableFrameFormat;
72 MutableFrameFormat outputFormat = format.mutableCopy(); in calcOutputFormatForInput()
H A DToPackedGrayFilter.java25 import android.filterfw.core.MutableFrameFormat;
126 MutableFrameFormat tempFrameFormat = inputFormat.mutableCopy(); in process()
/aosp12/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DRetargetFilter.java25 import android.filterfw.core.MutableFrameFormat;
35 private MutableFrameFormat mOutputFormat;
54 MutableFrameFormat retargeted = inputFormat.mutableCopy(); in getOutputFormat()
H A DInputStreamSource.java26 import android.filterfw.core.MutableFrameFormat;
46 private MutableFrameFormat mOutputFormat = null;
/aosp12/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DMutableFrameFormat.java27 public class MutableFrameFormat extends FrameFormat { class
29 public MutableFrameFormat() { in MutableFrameFormat() method in MutableFrameFormat
34 public MutableFrameFormat(int baseType, int target) { in MutableFrameFormat() method in MutableFrameFormat
H A DFrameFormat.java162 public MutableFrameFormat mutableCopy() { in mutableCopy()
163 MutableFrameFormat result = new MutableFrameFormat(); in mutableCopy()
H A DFrameManager.java43 MutableFrameFormat newFormat = frame.getFormat().mutableCopy(); in duplicateFrameToTarget()
H A DFilter.java368 MutableFrameFormat format = ObjectFormat.fromClass(field.getType(), in addFieldPort()
389 MutableFrameFormat format = ObjectFormat.fromClass(varType, in addProgramPort()
633 MutableFrameFormat inputFormat = ObjectFormat.fromObject(value, FrameFormat.TARGET_SIMPLE); in wrapInputValue()
/aosp12/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureTarget.java28 import android.filterfw.core.MutableFrameFormat;
143 MutableFrameFormat screenFormat = new MutableFrameFormat(FrameFormat.TYPE_BYTE, in prepare()
H A DSurfaceTextureSource.java26 import android.filterfw.core.MutableFrameFormat;
106 private MutableFrameFormat mOutputFormat;
H A DCameraSource.java27 import android.filterfw.core.MutableFrameFormat;
74 private MutableFrameFormat mOutputFormat;
/aosp12/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
H A DMediaEncoderFilter.java26 import android.filterfw.core.MutableFrameFormat;
292 MutableFrameFormat screenFormat = new MutableFrameFormat( in startRecording()
/aosp12/frameworks/base/media/mca/filterpacks/java/android/filterpacks/ui/
H A DSurfaceTargetFilter.java28 import android.filterfw.core.MutableFrameFormat;
125 MutableFrameFormat screenFormat = ImageFormat.create(mScreenWidth, in prepare()
H A DSurfaceRenderFilter.java29 import android.filterfw.core.MutableFrameFormat;
120 MutableFrameFormat screenFormat = ImageFormat.create(mSurfaceView.getWidth(), in prepare()
/aosp12/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videoproc/
H A DBackDropperFilter.java26 import android.filterfw.core.MutableFrameFormat;
214 private MutableFrameFormat mMemoryFormat;
215 private MutableFrameFormat mMaskFormat;
216 private MutableFrameFormat mAverageFormat;
553 MutableFrameFormat format = inputFormat.mutableCopy(); in getOutputFormat()

12