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

1 2 3

  /system/media/mca/filterfw/java/android/filterfw/basefilters/
GLTextureSource.java 27 import android.filterfw.format.ImageFormat;
64 addOutputPort("frame", ImageFormat.create(ImageFormat.COLORSPACE_RGBA,
81 FrameFormat outputFormat = ImageFormat.create(mWidth, mHeight,
82 ImageFormat.COLORSPACE_RGBA,
GLTextureTarget.java 27 import android.filterfw.format.ImageFormat;
45 addMaskedInputPort("frame", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
53 FrameFormat format = ImageFormat.create(input.getFormat().getWidth(),
55 ImageFormat.COLORSPACE_RGBA,
  /frameworks/base/graphics/java/android/graphics/
YuvImage.java 25 * Currently only ImageFormat.NV21 and ImageFormat.YUY2 are supported.
39 * The YUV format as defined in {@link ImageFormat}.
70 * @param format The YUV data format as defined in {@link ImageFormat}.
80 if (format != ImageFormat.NV21 &&
81 format != ImageFormat.YUY2) {
83 "only support ImageFormat.NV21 " +
84 "and ImageFormat.YUY2 for now");
110 * Only ImageFormat.NV21 and ImageFormat.YUY
    [all...]
ImageFormat.java 19 public class ImageFormat {
98 * ImageFormat.
  /system/media/mca/filterpacks/imageproc/java/
BitmapSource.java 31 import android.filterfw.format.ImageFormat;
62 FrameFormat outputFormat = ImageFormat.create(ImageFormat.COLORSPACE_RGBA,
72 FrameFormat outputFormat = ImageFormat.create(mBitmap.getWidth(),
74 ImageFormat.COLORSPACE_RGBA,
ImageEncoder.java 27 import android.filterfw.format.ImageFormat;
53 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA,
ToGrayFilter.java 31 import android.filterfw.format.ImageFormat;
66 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA,
BitmapOverlayFilter.java 29 import android.filterfw.format.ImageFormat;
70 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
137 FrameFormat format = ImageFormat.create(mBitmap.getWidth(),
139 ImageFormat.COLORSPACE_RGBA,
CropRectFilter.java 30 import android.filterfw.format.ImageFormat;
66 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
99 FrameFormat outputFormat = ImageFormat.create(mOutputWidth, mOutputHeight,
100 ImageFormat.COLORSPACE_RGBA,
ToPackedGrayFilter.java 28 import android.filterfw.format.ImageFormat;
67 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA,
107 return ImageFormat.create(ow, oh,
108 ImageFormat.COLORSPACE_GRAY,
ColorTemperatureFilter.java 29 import android.filterfw.format.ImageFormat;
69 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
CrossProcessFilter.java 29 import android.filterfw.format.ImageFormat;
82 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
DrawOverlayFilter.java 30 import android.filterfw.format.ImageFormat;
48 FrameFormat imageFormatMask = ImageFormat.create(ImageFormat.COLORSPACE_RGBA,
NegativeFilter.java 29 import android.filterfw.format.ImageFormat;
55 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
PosterizeFilter.java 29 import android.filterfw.format.ImageFormat;
58 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
SepiaFilter.java 29 import android.filterfw.format.ImageFormat;
56 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
SimpleImageFilter.java 29 import android.filterfw.format.ImageFormat;
59 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
ToRGBAFilter.java 30 import android.filterfw.format.ImageFormat;
63 result.setMetaValue(ImageFormat.COLORSPACE_KEY, ImageFormat.COLORSPACE_RGBA);
ToRGBFilter.java 30 import android.filterfw.format.ImageFormat;
63 result.setMetaValue(ImageFormat.COLORSPACE_KEY, ImageFormat.COLORSPACE_RGB);
BlackWhiteFilter.java 29 import android.filterfw.format.ImageFormat;
78 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
151 FrameFormat format = ImageFormat.create(mWidth, mHeight,
152 ImageFormat.COLORSPACE_RGBA,
DocumentaryFilter.java 29 import android.filterfw.format.ImageFormat;
79 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
131 FrameFormat format = ImageFormat.create(mWidth, mHeight,
132 ImageFormat.COLORSPACE_RGBA,
GrainFilter.java 29 import android.filterfw.format.ImageFormat;
84 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
162 FrameFormat format = ImageFormat.create(mWidth, mHeight,
163 ImageFormat.COLORSPACE_RGBA,
LomoishFilter.java 29 import android.filterfw.format.ImageFormat;
120 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
188 FrameFormat format = ImageFormat.create(mWidth, mHeight,
189 ImageFormat.COLORSPACE_RGBA,
RedEyeFilter.java 29 import android.filterfw.format.ImageFormat;
93 addMaskedInputPort("image", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
188 FrameFormat format = ImageFormat.create(mRedEyeBitmap.getWidth() ,
190 ImageFormat.COLORSPACE_RGBA,
  /system/media/mca/effect/java/android/media/effect/
FilterEffect.java 28 import android.filterfw.format.ImageFormat;
90 FrameFormat format = ImageFormat.create(width, height,
91 ImageFormat.COLORSPACE_RGBA,

Completed in 223 milliseconds

1 2 3