Searched refs:output (Results 101 - 125 of 189) sorted by last modified time

12345678

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
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();
H A DFisheyeFilter.java112 // Create output frame
113 Frame output = context.getFrameManager().newFrame(inputFormat);
126 mProgram.process(input, output);
128 // Push output
129 pushOutput("image", output);
132 output.release();
H A DFixedRotationFilter.java97 // Create output frame
98 Frame output = context.getFrameManager().newFrame(outputFormat);
104 mProgram.process(input, output);
106 // Push output
107 pushOutput("image", output);
110 output.release();
H A DFlipFilter.java98 // Create output frame
99 Frame output = context.getFrameManager().newFrame(inputFormat);
102 mProgram.process(input, output);
104 // Push output
105 pushOutput("image", output);
108 output.release();
H A DGrainFilter.java170 // Create output frame
171 Frame output = context.getFrameManager().newFrame(inputFormat);
189 mGrainProgram.process(inputs, output);
191 // Push output
192 pushOutput("image", output);
195 output.release();
H A DImageCombineFilter.java96 // Create output frame
97 Frame output = context.getFrameManager().newFrame(inputs[0].getFormat());
103 mProgram.process(inputs, output);
105 // Push output
106 pushOutput(mOutputName, output);
109 output.release();
H A DImageSlicer.java77 // calculate the output size based on input size, xSlices, and ySlices
102 // Create output frame
103 Frame output = context.getFrameManager().newFrame(outputFormat);
123 mProgram.process(mOriginalFrame, output);
136 // Push output
137 pushOutput("image", output);
140 output.release();
H A DLomoishFilter.java196 // Create output frame
197 Frame output = context.getFrameManager().newFrame(inputFormat);
200 mProgram.process(input, output);
202 // Push output
203 pushOutput("image", output);
206 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 DRedEyeFilter.java121 // Create output frame
122 Frame output = context.getFrameManager().newFrame(inputFormat);
138 mProgram.process(inputs, output);
140 // Push output
141 pushOutput("image", output);
144 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 DRotateFilter.java109 // Create output frame
114 Frame output = context.getFrameManager().newFrame(outputFormat);
117 mProgram.process(input, output);
119 // Push output
120 pushOutput("image", output);
123 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 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 DSharpenFilter.java109 // Create output frame
110 Frame output = context.getFrameManager().newFrame(inputFormat);
123 mProgram.process(input, output);
125 // Push output
126 pushOutput("image", output);
129 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 DStraightenFilter.java101 // Create output frame
108 Frame output = context.getFrameManager().newFrame(inputFormat);
111 mProgram.process(input, output);
113 // Push output
114 pushOutput("image", output);
117 output.release();
H A DTintFilter.java105 // Create output frame
106 Frame output = context.getFrameManager().newFrame(inputFormat);
109 mProgram.process(input, output);
111 // Push output
112 pushOutput("image", output);
115 output.release();
H A DToPackedGrayFilter.java79 throw new RuntimeException("Invalid output dimensions: " +
97 // final output size
134 Frame output = context.getFrameManager().newFrame(outputFormat);
135 output.setDataFromFrame(temp);
138 // Push output and yield ownership.
139 pushOutput("image", output);
140 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 DVignetteFilter.java146 // Create output frame
147 Frame output = context.getFrameManager().newFrame(inputFormat);
150 mProgram.process(input, output);
152 // Push output
153 pushOutput("image", output);
156 output.release();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/numeric/
H A DSinWaveFilter.java58 Frame output = env.getFrameManager().newFrame(mOutputFormat);
59 output.setObjectValue(((float)Math.sin(mValue) + 1.0f) / 2.0f);
60 pushOutput("value", output);
62 output.release();

Completed in 156 milliseconds

12345678