HomeSort by relevance Sort by last modified time
    Searched defs:mOutputFormat (Results 1 - 19 of 19) sorted by null

  /system/media/mca/filterpacks/text/java/
StringSource.java 37 private FrameFormat mOutputFormat;
45 mOutputFormat = ObjectFormat.fromClass(String.class, FrameFormat.TARGET_SIMPLE);
46 addOutputPort("string", mOutputFormat);
51 Frame output = env.getFrameManager().newFrame(mOutputFormat);
ToUpperCase.java 31 private FrameFormat mOutputFormat;
39 mOutputFormat = ObjectFormat.fromClass(String.class, FrameFormat.TARGET_SIMPLE);
40 addMaskedInputPort("mixedcase", mOutputFormat);
41 addOutputPort("uppercase", mOutputFormat);
49 Frame output = env.getFrameManager().newFrame(mOutputFormat);
  /system/media/mca/filterfw/java/android/filterfw/basefilters/
ObjectSource.java 40 private FrameFormat mOutputFormat = FrameFormat.unspecified();
53 addOutputPort("frame", mOutputFormat);
RetargetFilter.java 37 private MutableFrameFormat mOutputFormat;
InputStreamSource.java 47 private MutableFrameFormat mOutputFormat = null;
56 if (mOutputFormat == null) {
57 mOutputFormat = PrimitiveFormat.createByteFormat(target);
59 addOutputPort("data", mOutputFormat);
83 mOutputFormat.setDimensions(fileSize);
84 Frame output = context.getFrameManager().newFrame(mOutputFormat);
  /system/media/mca/filterpacks/imageproc/java/
ToGrayFilter.java 48 private MutableFrameFormat mOutputFormat;
ResizeFilter.java 53 private MutableFrameFormat mOutputFormat;
  /system/media/mca/filterpacks/numeric/java/
SinWaveFilter.java 39 private FrameFormat mOutputFormat;
47 mOutputFormat = ObjectFormat.fromClass(Float.class, FrameFormat.TARGET_SIMPLE);
48 addOutputPort("value", mOutputFormat);
58 Frame output = env.getFrameManager().newFrame(mOutputFormat);
  /system/media/mca/filterpacks/performance/java/
ThroughputFilter.java 41 private FrameFormat mOutputFormat;
53 mOutputFormat = ObjectFormat.fromClass(Throughput.class, FrameFormat.TARGET_SIMPLE);
55 addOutputPort("throughput", mOutputFormat);
94 Frame throughputFrame = context.getFrameManager().newFrame(mOutputFormat);
  /frameworks/media/libvideoeditor/lvpp/
VideoEditorSRC.h 76 sp<MetaData> mOutputFormat;
  /system/media/mca/filterpacks/videosrc/java/
SurfaceTextureSource.java 117 private MutableFrameFormat mOutputFormat;
159 mOutputFormat = ImageFormat.create(mWidth, mHeight,
171 mMediaFrame = (GLFrame)context.getFrameManager().newBoundFrame(mOutputFormat,
227 Frame output = context.getFrameManager().newFrame(mOutputFormat);
254 mOutputFormat.setDimensions(mWidth, mHeight);
MediaSource.java 102 private MutableFrameFormat mOutputFormat;
166 mOutputFormat = ImageFormat.create(ImageFormat.COLORSPACE_RGBA,
194 mOutputFormat,
312 Frame output = context.getFrameManager().newFrame(mOutputFormat);
393 mOutputFormat.setDimensions(mWidth, mHeight);
395 mOutputFormat.setDimensions(mHeight, mWidth);
493 mOutputFormat.setDimensions(width, height);
495 mOutputFormat.setDimensions(height, width);
500 if (mOutputFormat.getWidth() != width ||
501 mOutputFormat.getHeight() != height)
    [all...]
CameraSource.java 81 private MutableFrameFormat mOutputFormat;
127 mOutputFormat = ImageFormat.create(mWidth, mHeight,
153 mCameraFrame = (GLFrame)context.getFrameManager().newBoundFrame(mOutputFormat,
203 Frame output = context.getFrameManager().newFrame(mOutputFormat);
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 33 private String mOutputFormat = "xml";
64 Output.generateFirstHeader(fileName, mOutputFormat);
66 Output.generateHeader(fileName, mOutputFormat);
69 Output.generate(dexData, mOutputFormat, mJustClasses);
70 Output.generateFooter(mOutputFormat);
193 mOutputFormat = arg.substring(arg.indexOf('=') + 1);
194 if (!mOutputFormat.equals("brief") &&
195 !mOutputFormat.equals("xml"))
197 System.err.println("Unknown format '" + mOutputFormat +"'");
200 //System.out.println("+++ using format " + mOutputFormat);
    [all...]
  /frameworks/base/media/libmediaplayerservice/
StagefrightRecorder.h 81 output_format mOutputFormat;
  /frameworks/base/include/media/stagefright/
OMXCodec.h 177 sp<MetaData> mOutputFormat;
  /system/media/mca/filterpacks/videosink/java/
MediaEncoderFilter.java 130 private int mOutputFormat = MediaRecorder.OutputFormat.MPEG_4;
249 mMediaRecorder.setOutputFormat(mOutputFormat);
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 63 private Bitmap.CompressFormat mOutputFormat =
115 mOutputFormat = Bitmap.CompressFormat.valueOf(
328 croppedImage.compress(mOutputFormat, 75, outputStream);
  /system/media/mca/filterpacks/videoproc/java/
BackDropperFilter.java 204 private FrameFormat mOutputFormat;
    [all...]

Completed in 2209 milliseconds