Searched refs:output (Results 26 - 50 of 189) sorted by relevance

12345678

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DCrossProcessFilter.java117 // Create output frame
118 Frame output = context.getFrameManager().newFrame(inputFormat);
121 mProgram.process(input, output);
123 // Push output
124 pushOutput("image", output);
127 output.release();
H A DNegativeFilter.java85 // Create output frame
86 Frame output = context.getFrameManager().newFrame(inputFormat);
94 mProgram.process(input, output);
96 // Push output
97 pushOutput("image", output);
100 output.release();
H A DPosterizeFilter.java88 // Create output frame
89 Frame output = context.getFrameManager().newFrame(inputFormat);
97 mProgram.process(input, output);
99 // Push output
100 pushOutput("image", output);
103 output.release();
H A DSepiaFilter.java86 // Create output frame
87 Frame output = context.getFrameManager().newFrame(inputFormat);
96 mProgram.process(input, output);
98 // Push output
99 pushOutput("image", output);
102 output.release();
H A DSimpleImageFilter.java74 // Create output frame
75 Frame output = context.getFrameManager().newFrame(inputFormat);
81 mProgram.process(input, output);
83 // Push output
84 pushOutput("image", output);
87 output.release();
H A DToRGBAFilter.java90 // Create output frame
91 Frame output = context.getFrameManager().newFrame(getConvertedFormat(input.getFormat()));
94 mProgram.process(input, output);
96 // Push output
97 pushOutput("image", output);
100 output.release();
H A DToRGBFilter.java90 // Create output frame
91 Frame output = context.getFrameManager().newFrame(getConvertedFormat(input.getFormat()));
94 mProgram.process(input, output);
96 // Push output
97 pushOutput("image", output);
100 output.release();
H A DBitmapOverlayFilter.java106 // Create output frame
107 Frame output = context.getFrameManager().newFrame(inputFormat);
118 mProgram.process(inputs, output);
122 output.setDataFromFrame(input);
125 // Push output
126 pushOutput("image", output);
129 output.release();
H A DResizeFilter.java94 // Create output frame
101 Frame output = env.getFrameManager().newFrame(outputFormat);
110 mProgram.process(mipmapped, output);
113 mProgram.process(input, output);
116 // Push output
117 pushOutput("image", output);
120 output.release();
H A DSaturateFilter.java127 // Create output frame
128 Frame output = context.getFrameManager().newFrame(inputFormat);
132 mHerfProgram.process(input, output);
134 mBenProgram.process(input, output);
136 // Push output
137 pushOutput("image", output);
140 output.release();
H A DBlackWhiteFilter.java149 // Create output frame
150 Frame output = context.getFrameManager().newFrame(inputFormat);
153 mProgram.process(input, output);
155 // Push output
156 pushOutput("image", output);
159 output.release();
H A DCropFilter.java86 // Make sure output size is set to unspecified, as we do not know what we will be resizing
123 // Create output format
128 // Create output frame
129 Frame output = env.getFrameManager().newFrame(outputFormat);
137 mProgram.process(imageFrame, output);
139 // Push output
140 pushOutput("image", output);
143 output.release();
H A DCropRectFilter.java98 // Create output frame
102 Frame output = context.getFrameManager().newFrame(outputFormat);
115 mProgram.process(input, output);
117 // Push output
118 pushOutput("image", output);
121 output.release();
H A DDocumentaryFilter.java132 // Create output frame
133 Frame output = context.getFrameManager().newFrame(inputFormat);
136 mProgram.process(input, output);
138 // Push output
139 pushOutput("image", output);
142 output.release();
H A DDrawRectFilter.java98 // Create output frame with copy of input
99 GLFrame output = (GLFrame)env.getFrameManager().duplicateFrame(imageFrame);
101 // Draw onto output
102 output.focus();
105 // Push output
106 pushOutput("image", output);
109 output.release();
H A DDuotoneFilter.java95 // Create output frame
96 Frame output = context.getFrameManager().newFrame(inputFormat);
105 mProgram.process(input, output);
107 // Push output
108 pushOutput("image", output);
111 output.release();
H A DFillLightFilter.java103 // Create output frame
104 Frame output = context.getFrameManager().newFrame(inputFormat);
113 mProgram.process(input, output);
115 // Push output
116 pushOutput("image", output);
119 output.release();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DRetargetFilter.java66 // Create output frame
67 Frame output = context.getFrameManager().duplicateFrameToTarget(input, mTarget);
69 // Push output
70 pushOutput("frame", output);
73 output.release();
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DNativeProgram.java98 public void process(Frame[] inputs, Frame output) { argument
111 // Get the native output frame
113 if (output == null || output instanceof NativeFrame) {
114 nativeOutput = (NativeFrame)output;
116 throw new RuntimeException("NativeProgram got non-native output frame!");
173 private native boolean callNativeProcess(NativeFrame[] inputs, NativeFrame output); argument
/frameworks/base/tests/backup/src/com/android/backuptest/
H A DBackupTestActivity.java79 PrintStream output = null;
81 output = new PrintStream(openFileOutput(FILE_NAME, MODE_APPEND));
83 output.println(formatter.format(new Date()));
84 output.close();
86 if (output != null) {
87 output.close();
95 PrintStream output = null;
97 output = new PrintStream(openFileOutput(FILE_NAME, MODE_PRIVATE));
98 output.close();
100 if (output !
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpost_filter.cpp34 uint8 *output)
54 oscl_memcpy(output, decodedFrame, size);
55 oscl_memcpy(output + size, decodedFrame + size, (size >> 2));
56 oscl_memcpy(output + size + (size >> 2), decodedFrame + size + (size >> 2), (size >> 2));
75 CombinedHorzVertRingFilter(output, width, height, QP_store, 0, pp_mod);
83 CombinedHorzVertFilter(output, width, height,
88 CombinedHorzVertFilter_NoSoftDeblocking(output, width, height,
94 Deringing_Luma(output, width, height, QP_store,
103 output += size;
107 CombinedHorzVertRingFilter(output, (in
31 PostFilter( VideoDecData *video, int filter_type, uint8 *output) argument
[all...]
/frameworks/base/core/java/android/util/
H A DBase64InputStream.java70 coder.output = new byte[coder.maxOutputSize(BUFFER_SIZE)];
115 return coder.output[outputStart++] & 0xff;
127 System.arraycopy(coder.output, outputStart, b, off, bytes);
134 * decode/encode it into the empty coder.output, and reset the
H A DBase64OutputStream.java137 coder.output = embiggen(coder.output, coder.maxOutputSize(len));
141 out.write(coder.output, 0, coder.op);
/frameworks/native/include/private/gui/
H A DLayerState.h64 status_t write(Parcel& output) const;
94 status_t write(Parcel& output) const;
122 status_t write(Parcel& output) const;
/frameworks/base/core/java/android/content/pm/
H A DVerifierDeviceIdentity.java138 long output = 0L;
169 output = (output << 5) | value;
185 return output;

Completed in 152 milliseconds

12345678