Searched refs:output (Results 101 - 125 of 393) sorted by relevance

1234567891011>>

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DCropFilter.java80 // Make sure output size is set to unspecified, as we do not know what we will be resizing
117 // Create output format
122 // Create output frame
123 Frame output = env.getFrameManager().newFrame(outputFormat);
131 mProgram.process(imageFrame, output);
133 // Push output
134 pushOutput("image", output);
137 output.release();
H A DCropRectFilter.java93 // Create output frame
97 Frame output = context.getFrameManager().newFrame(outputFormat);
110 mProgram.process(input, output);
112 // Push output
113 pushOutput("image", output);
116 output.release();
H A DDocumentaryFilter.java129 // Create output frame
130 Frame output = context.getFrameManager().newFrame(inputFormat);
133 mProgram.process(input, output);
135 // Push output
136 pushOutput("image", output);
139 output.release();
H A DDrawRectFilter.java95 // Create output frame with copy of input
96 GLFrame output = (GLFrame)env.getFrameManager().duplicateFrame(imageFrame);
98 // Draw onto output
99 output.focus();
102 // Push output
103 pushOutput("image", output);
106 output.release();
H A DDuotoneFilter.java92 // Create output frame
93 Frame output = context.getFrameManager().newFrame(inputFormat);
102 mProgram.process(input, output);
104 // Push output
105 pushOutput("image", output);
108 output.release();
H A DFillLightFilter.java99 // Create output frame
100 Frame output = context.getFrameManager().newFrame(inputFormat);
109 mProgram.process(input, output);
111 // Push output
112 pushOutput("image", output);
115 output.release();
H A DFisheyeFilter.java106 // Create output frame
107 Frame output = context.getFrameManager().newFrame(inputFormat);
120 mProgram.process(input, output);
122 // Push output
123 pushOutput("image", output);
126 output.release();
H A DFixedRotationFilter.java96 // Create output frame
97 Frame output = context.getFrameManager().newFrame(outputFormat);
103 mProgram.process(input, output);
105 // Push output
106 pushOutput("image", output);
109 output.release();
H A DImageCombineFilter.java90 // Create output frame
91 Frame output = context.getFrameManager().newFrame(inputs[0].getFormat());
97 mProgram.process(inputs, output);
99 // Push output
100 pushOutput(mOutputName, output);
103 output.release();
H A DImageSlicer.java75 // calculate the output size based on input size, xSlices, and ySlices
100 // Create output frame
101 Frame output = context.getFrameManager().newFrame(outputFormat);
121 mProgram.process(mOriginalFrame, output);
134 // Push output
135 pushOutput("image", output);
138 output.release();
H A DLomoishFilter.java193 // Create output frame
194 Frame output = context.getFrameManager().newFrame(inputFormat);
197 mProgram.process(input, output);
199 // Push output
200 pushOutput("image", output);
203 output.release();
H A DSharpenFilter.java104 // Create output frame
105 Frame output = context.getFrameManager().newFrame(inputFormat);
118 mProgram.process(input, output);
120 // Push output
121 pushOutput("image", output);
124 output.release();
H A DToPackedGrayFilter.java77 throw new RuntimeException("Invalid output dimensions: " +
95 // final output size
132 Frame output = context.getFrameManager().newFrame(outputFormat);
133 output.setDataFromFrame(temp);
136 // Push output and yield ownership.
137 pushOutput("image", output);
138 output.release();
H A DVignetteFilter.java143 // Create output frame
144 Frame output = context.getFrameManager().newFrame(inputFormat);
147 mProgram.process(input, output);
149 // Push output
150 pushOutput("image", output);
153 output.release();
/frameworks/rs/tests/cpp_api/cppbasic-getpointer/
H A Dcompute.cpp42 uint32_t *output = (uint32_t*)aout->getPointer(&outputStride); local
46 printf("Output pointer: %p\n", output);
55 output[i * inputStride + j] = 0;
75 if (input[i * inputStride + j] != ~(output[i * inputStride + j])) {
/frameworks/rs/tests/lldb/java/Reduction/src/com/android/rs/lldbreductiontest/
H A Dreduce_common.rsh57 static void find_min_user_type_outc(float *output, const user_t *val) {
58 *output = val->a + val->b * multiplier;
/frameworks/av/media/libstagefright/codec2/include/
H A DC2ParamDef.h302 * an optional BaseIndex. Global parameters are not tied to a port (input or output).
330 * an optional BaseIndex. Global parameters are not tied to a port (input or output).
362 * an optional BaseIndex. Port parameters are tied to a port (input or output), but not to a
373 * There are 3 flavors of port parameters: unspecified, input and output. Parameters with
388 : T(sizeof(_type), _output ? output::typeIndex : input::typeIndex), S(args...) { }
390 inline void setPort(bool output) { C2Param::setPort(output); }
405 /// Specialization for an output port parameter.
406 struct output : public T, public S, public C2BaseIndexOverride<S, BaseIndex>,
410 inline output(cons
[all...]
/frameworks/native/libs/vr/libbufferhubqueue/
H A Dbuffer_hub_queue_producer.cpp249 QueueBufferOutput* output) {
252 if (output == nullptr) {
339 output->width = buffer_producer->width();
340 output->height = buffer_producer->height();
341 output->transformHint = 0; // default value, we don't use it yet.
347 output->numPendingBuffers = 0;
351 output->nextFrameNumber = 0;
456 bool /* producer_controlled_by_app */, QueueBufferOutput* output) {
462 if (output == nullptr) {
479 output
247 queueBuffer(int slot, const QueueBufferInput& input, QueueBufferOutput* output) argument
454 connect( const sp<IProducerListener>& , int api, bool , QueueBufferOutput* output) argument
[all...]
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffHelpers.h36 #define ZERO_TILL_WORD(output, index, ret) \
40 BAIL_ON_FAIL((output)->write(ZERO_WORD, 0, remaining), ret); \
/frameworks/base/media/mca/filterpacks/native/imageproc/
H A Dbrightness.c52 char* output,
63 LOGE("Brightness: Input-output sizes do not match up. %d vs. %d!", input_sizes[0], output_size);
67 // Get the input and output pointers
69 int* output_ptr = (int*)output;
72 LOGE("Brightness: No input or output pointer found!");
49 brightness_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
H A Dcontrast.c47 char* output,
58 LOGE("Contrast: Input-output sizes do not match up. %d vs. %d!", input_sizes[0], output_size);
62 // Get the input and output pointers
64 char* output_ptr = output;
66 LOGE("Contrast: No input or output pointer found!");
44 contrast_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dcolorspace.cpp57 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
59 Rgba* const pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output));
96 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
98 Rgba* pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output));
111 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
113 Rgba* pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output));
154 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
156 Rgba* pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output));
56 nativeYuv420pToRgba8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
95 nativeArgb8888ToRgba8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
110 nativeRgba8888ToHsva8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
153 nativeRgba8888ToYcbcra8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
/frameworks/rs/
H A Drun_rs_cts.sh12 $CTS_TRADEFED run commandAndExit cts --output-file-path $TMP_PATH -p android.renderscript
/frameworks/rs/tests/lldb/tests/testcases/
H A Dreduce_common.py50 output = self.try_command(
58 for line in output.splitlines():
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureSource.java72 /** The width of the output image frame. If the texture width for the
77 /** The height of the output image frame. If the texture height for the
83 * SurfaceTexture, or whether it will output an old frame again if a new
102 // Variables for input->output conversion
118 // Shader for output
164 // Prepare output
215 // Next, render to output
216 Frame output = context.getFrameManager().newFrame(mOutputFormat);
217 mFrameExtractor.process(mMediaFrame, output);
219 output
[all...]

Completed in 1470 milliseconds

1234567891011>>