HomeSort by relevance Sort by last modified time
    Searched refs:mOutputFormat (Results 1 - 25 of 30) 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...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropExtras.java 46 private String mOutputFormat = null;
62 mOutputFormat = outputFormat;
70 c.mReturnData, c.mExtraOutput, c.mOutputFormat, c.mShowWhenLocked,
107 return mOutputFormat;
  /frameworks/av/media/libstagefright/
MediaAdapter.cpp 30 mOutputFormat(meta) {
35 mOutputFormat.clear();
65 return mOutputFormat;
OMXCodec.cpp     [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 131 return mOutputFormat;
182 mOutputFormat = mInputFormat->dup();
188 mOutputFormat->setString("mime", outputMIME.c_str());
198 mOutputFormat->setInt32("bitrate", audioBitrate);
200 mOutputFormat->setInt32("bitrate", videoBitrate);
201 mOutputFormat->setInt32("bitrate-mode", OMX_Video_ControlRateConstant);
202 mOutputFormat->setInt32("frame-rate", 30);
203 mOutputFormat->setInt32("i-frame-interval", 15); // Iframes every 15 secs
206 mOutputFormat->setInt32("intra-refresh-mode", OMX_VIDEO_IntraRefreshCyclic);
209 if (!mOutputFormat->findInt32("width", &width
    [all...]
Converter.h 89 sp<AMessage> mOutputFormat;
  /frameworks/av/include/media/stagefright/
MediaAdapter.h 69 sp<MetaData> mOutputFormat;
MediaCodec.h 201 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 141 mOutputFormat = OUTPUT_FORMAT_THREE_GPP;
143 mOutputFormat = of;
756 switch (mOutputFormat) {
782 ALOGE("Unsupported output file format: %d", mOutputFormat);
872 CHECK_EQ(mOutputFormat, OUTPUT_FORMAT_AAC_ADTS);
890 CHECK(mOutputFormat == OUTPUT_FORMAT_AMR_NB ||
891 mOutputFormat == OUTPUT_FORMAT_AMR_WB);
893 if (mOutputFormat == OUTPUT_FORMAT_AMR_NB) {
900 } else { // mOutputFormat must be OUTPUT_FORMAT_AMR_WB
949 CHECK_EQ(mOutputFormat, OUTPUT_FORMAT_RTP_AVP)
    [all...]
StagefrightRecorder.h 84 output_format mOutputFormat;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
MediaEncoderFilter.java 130 private int mOutputFormat = MediaRecorder.OutputFormat.MPEG_4;
254 mMediaRecorder.setOutputFormat(mOutputFormat);

Completed in 1655 milliseconds

1 2