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

1 2

  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
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);
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);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
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);
ObjectSource.java 40 private FrameFormat mOutputFormat = FrameFormat.unspecified();
53 addOutputPort("frame", mOutputFormat);
RetargetFilter.java 37 private MutableFrameFormat mOutputFormat;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/numeric/
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);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
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);
  /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/mca/filterpacks/java/android/filterpacks/videosrc/
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 109 private MutableFrameFormat mOutputFormat;
187 mOutputFormat = ImageFormat.create(ImageFormat.COLORSPACE_RGBA,
215 mOutputFormat,
340 Frame output = context.getFrameManager().newFrame(mOutputFormat);
421 mOutputFormat.setDimensions(mWidth, mHeight);
423 mOutputFormat.setDimensions(mHeight, mWidth);
525 mOutputFormat.setDimensions(width, height);
527 mOutputFormat.setDimensions(height, width);
532 if (mOutputFormat.getWidth() != width ||
533 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);
  /frameworks/av/media/libstagefright/wifi-display/source/
Converter.cpp 94 return mOutputFormat;
139 mOutputFormat = mInputFormat->dup();
145 mOutputFormat->setString("mime", outputMIME.c_str());
154 mOutputFormat->setInt32("bitrate", audioBitrate);
156 mOutputFormat->setInt32("bitrate", videoBitrate);
157 mOutputFormat->setInt32("bitrate-mode", OMX_Video_ControlRateConstant);
158 mOutputFormat->setInt32("frame-rate", 30);
159 mOutputFormat->setInt32("i-frame-interval", 1); // Iframes every 1 secs
160 mOutputFormat->setInt32("prepend-sps-pps-to-idr-frames", 1);
163 ALOGV("output format is '%s'", mOutputFormat->debugString(0).c_str())
    [all...]
Converter.h 80 sp<AMessage> mOutputFormat;
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorSRC.cpp 57 mOutputFormat = new MetaData;
58 mOutputFormat->setCString(kKeyMIMEType, MEDIA_MIMETYPE_AUDIO_RAW);
59 mOutputFormat->setInt32(kKeySampleRate, kDefaultSamplingFreqencyHz);
60 mOutputFormat->setInt32(kKeyChannelCount, 2); // always stereo
109 return mOutputFormat;
VideoEditorSRC.h 64 sp<MetaData> mOutputFormat;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
ToGrayFilter.java 48 private MutableFrameFormat mOutputFormat;
ResizeFilter.java 53 private MutableFrameFormat mOutputFormat;
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp 140 mOutputFormat = OUTPUT_FORMAT_THREE_GPP;
142 mOutputFormat = of;
747 switch (mOutputFormat) {
773 ALOGE("Unsupported output file format: %d", mOutputFormat);
863 CHECK_EQ(mOutputFormat, OUTPUT_FORMAT_AAC_ADTS);
881 CHECK(mOutputFormat == OUTPUT_FORMAT_AMR_NB ||
882 mOutputFormat == OUTPUT_FORMAT_AMR_WB);
884 if (mOutputFormat == OUTPUT_FORMAT_AMR_NB) {
891 } else { // mOutputFormat must be OUTPUT_FORMAT_AMR_WB
940 CHECK_EQ(mOutputFormat, OUTPUT_FORMAT_RTP_AVP)
    [all...]
StagefrightRecorder.h 81 output_format mOutputFormat;
  /frameworks/av/media/libstagefright/
OMXCodec.cpp     [all...]
MediaCodec.cpp 648 mOutputFormat = msg;
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
MediaEncoderFilter.java 130 private int mOutputFormat = MediaRecorder.OutputFormat.MPEG_4;
254 mMediaRecorder.setOutputFormat(mOutputFormat);
  /frameworks/av/include/media/stagefright/
MediaCodec.h 185 sp<AMessage> mOutputFormat;
OMXCodec.h 191 sp<MetaData> 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);

Completed in 170 milliseconds

1 2