Searched refs:output (Results 1 - 25 of 393) sorted by path

1234567891011>>

/frameworks/av/camera/include/camera/ndk/
H A DNdkCameraDevice.h266 * @param request the output request will be stored here if the method call succeeds.
295 * Create a capture session output container.
301 * @param container the output {@link ACaptureSessionOutputContainer} will be stored here if the
313 * Free a capture session output container.
325 * an output {@link ANativeWindow} to ACaptureSessionOutputContainer. Use
330 * @param output the output {@link ACaptureSessionOutput} will be stored here if the
335 * filled in the output argument.</li>
336 * <li>{@link ACAMERA_ERROR_INVALID_PARAMETER} if anw or output is NULL.</li></ul>
341 ANativeWindow* anw, /*out*/ACaptureSessionOutput** output);
[all...]
H A DNdkCaptureRequest.h49 // Container for output targets
52 // Container for a single output target
56 * ACaptureRequest is an opaque type that contains settings and output targets needed to capture
60 * the processing pipeline, the control algorithms, and the output buffers. Also
89 * <p>The ACameraOutputTarget is used in {@link ACaptureRequest_addTarget} method to add an output
94 * @param output the output {@link ACameraOutputTarget} will be stored here if the
99 * be filled in the output argument.</li>
100 * <li>{@link ACAMERA_ERROR_INVALID_PARAMETER} if window or output is NULL.</li></ul>
104 camera_status_t ACameraOutputTarget_create(ANativeWindow* window, ACameraOutputTarget** output);
[all...]
/frameworks/av/camera/ndk/
H A DNdkCameraDevice.cpp111 void ACaptureSessionOutput_free(ACaptureSessionOutput* output) { argument
113 if (output != nullptr) {
114 delete output;
121 ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output) {
123 if (container == nullptr || output == nullptr) {
124 ALOGE("%s: Error: invalid input: container %p, output %p",
125 __FUNCTION__, container, output);
128 auto pair = container->mOutputs.insert(*output);
130 ALOGW("%s: output %p already exists!", __FUNCTION__, output);
120 ACaptureSessionOutputContainer_add( ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output) argument
136 ACaptureSessionOutputContainer_remove( ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output) argument
[all...]
/frameworks/av/camera/tests/
H A DCameraBinderTests.cpp468 OutputConfiguration output(gbProducer, /*rotation*/0);
474 res = device->createStream(output, &streamId);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
H A DFwdLockEngine.h288 * the output converted data and offset. In this case the
518 FwdLockConv_Output_t output; member in class:android::FwdLockEngine::ConvertSession
522 memset(&output, 0, sizeof(FwdLockConv_Output_t));
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp79 FwdLockConv_CloseSession(convSession->uniqueId, &(convSession->output));
393 FwdLockConv_OpenSession(&(newSession->uniqueId), &(newSession->output))) {
418 &(convSession->output));
422 if (convSession->output.fromConvertData.numBytes > 0) {
423 convResult->data = new char[convSession->output.fromConvertData.numBytes];
426 convResult->length = convSession->output.fromConvertData.numBytes;
428 (char *)convSession->output.fromConvertData.pBuffer,
433 offset = convSession->output.fromConvertData.errorPos;
452 retStatus = FwdLockConv_CloseSession(convSession->uniqueId, &(convSession->output));
455 offset = convSession->output
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.c542 * Writes the header of the output file.
545 * @param[out] pOutput The output from the conversion process.
591 * @param[out] pOutput The output from the conversion process.
825 * Encrypts the given character and writes it to the output buffer.
829 * @param[in,out] pOutput The output from the conversion process.
863 * @param[in,out] pOutput The output from the conversion process.
875 // to the output buffer and start over.
886 // The current character isn't part of the delimiter. Write it to the output buffer.
931 * @param[in,out] pOutput The output from the conversion process.
1072 * @param[in,out] pOutput The output fro
1269 FwdLockConv_Output_t output; local
[all...]
/frameworks/av/drm/libmediadrm/
H A DDrm.cpp678 Vector<uint8_t> &output) {
691 return mPlugin->encrypt(sessionId, keyId, input, iv, output);
698 Vector<uint8_t> &output) {
711 return mPlugin->decrypt(sessionId, keyId, input, iv, output);
674 encrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
694 decrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
H A DDrmHal.cpp828 Vector<uint8_t> const &iv, Vector<uint8_t> &output) {
843 output = toVector(hOutput);
854 Vector<uint8_t> const &iv, Vector<uint8_t> &output) {
869 output = toVector(hOutput);
826 encrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
852 decrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
H A DIDrm.cpp429 Vector<uint8_t> &output) {
442 readVector(reply, output);
451 Vector<uint8_t> &output) {
464 readVector(reply, output);
850 Vector<uint8_t> sessionId, keyId, input, iv, output; local
855 uint32_t result = encrypt(sessionId, keyId, input, iv, output);
856 writeVector(reply, output);
864 Vector<uint8_t> sessionId, keyId, input, iv, output; local
869 uint32_t result = decrypt(sessionId, keyId, input, iv, output);
870 writeVector(reply, output);
425 encrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
447 decrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DDrmPlugin.h187 Vector<uint8_t>& output) {
192 UNUSED(output);
201 Vector<uint8_t>& output) {
206 UNUSED(output);
182 encrypt( const Vector<uint8_t>& sessionId, const Vector<uint8_t>& keyId, const Vector<uint8_t>& input, const Vector<uint8_t>& iv, Vector<uint8_t>& output) argument
196 decrypt( const Vector<uint8_t>& sessionId, const Vector<uint8_t>& keyId, const Vector<uint8_t>& input, const Vector<uint8_t>& iv, Vector<uint8_t>& output) argument
/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.cpp556 Vector<uint8_t> &output)
580 // byte[] mock-output -> output
581 index = mByteArrayProperties.indexOfKey(String8("mock-output"));
586 output = mByteArrayProperties.valueAt(index);
595 Vector<uint8_t> &output)
619 // byte[] mock-output -> output
620 index = mByteArrayProperties.indexOfKey(String8("mock-output"));
625 output
552 encrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
591 decrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
[all...]
H A DMockDrmCryptoPlugin.h114 Vector<uint8_t> &output);
120 Vector<uint8_t> &output);
/frameworks/av/include/camera/ndk/
H A DNdkCameraDevice.h266 * @param request the output request will be stored here if the method call succeeds.
295 * Create a capture session output container.
301 * @param container the output {@link ACaptureSessionOutputContainer} will be stored here if the
313 * Free a capture session output container.
325 * an output {@link ANativeWindow} to ACaptureSessionOutputContainer. Use
330 * @param output the output {@link ACaptureSessionOutput} will be stored here if the
335 * filled in the output argument.</li>
336 * <li>{@link ACAMERA_ERROR_INVALID_PARAMETER} if anw or output is NULL.</li></ul>
341 ANativeWindow* anw, /*out*/ACaptureSessionOutput** output);
[all...]
H A DNdkCaptureRequest.h49 // Container for output targets
52 // Container for a single output target
56 * ACaptureRequest is an opaque type that contains settings and output targets needed to capture
60 * the processing pipeline, the control algorithms, and the output buffers. Also
89 * <p>The ACameraOutputTarget is used in {@link ACaptureRequest_addTarget} method to add an output
94 * @param output the output {@link ACameraOutputTarget} will be stored here if the
99 * be filled in the output argument.</li>
100 * <li>{@link ACAMERA_ERROR_INVALID_PARAMETER} if window or output is NULL.</li></ul>
104 camera_status_t ACameraOutputTarget_create(ANativeWindow* window, ACameraOutputTarget** output);
[all...]
/frameworks/av/include/media/
H A DAudioMixer.h54 // This mixer has a hard-coded upper limit of 8 channels for output.
85 MIXER_CHANNEL_MASK = 0x4006, // Channel mask for mixer output
167 typedef void (*hook_t)(track_t* t, int32_t* output, size_t numOutFrames, int32_t* temp,
242 audio_format_t mMixerFormat; // output mix format: AUDIO_FORMAT_PCM_(FLOAT|16_BIT)
H A DAudioSystem.h66 // set/get stream volume on specified output
68 audio_io_handle_t output);
70 audio_io_handle_t output);
110 // Returned samplingRate and frameCount output values are guaranteed
124 // For output threads with a fast mixer, returns the number of frames per normal mixer buffer.
125 // For output threads without a fast mixer, or for input, this is same as getFrameCountHAL().
128 // returns the audio output latency in ms. Corresponds to
130 static status_t getLatency(audio_io_handle_t output,
141 // audio dsp to DAC since the specified output has exited standby.
148 static status_t getRenderPosition(audio_io_handle_t output,
[all...]
H A DDrm.h103 Vector<uint8_t> &output);
109 Vector<uint8_t> &output);
H A DDrmHal.h113 Vector<uint8_t> &output);
119 Vector<uint8_t> &output);
H A DIAudioFlinger.h64 audio_io_handle_t output,
102 virtual audio_format_t format(audio_io_handle_t output) const = 0;
106 virtual uint32_t latency(audio_io_handle_t output) const = 0;
121 audio_io_handle_t output) = 0;
125 audio_io_handle_t output) const = 0;
140 // Register an object to receive audio input/output change and track notifications.
151 audio_io_handle_t *output,
159 virtual status_t closeOutput(audio_io_handle_t output) = 0;
160 virtual status_t suspendOutput(audio_io_handle_t output) = 0;
161 virtual status_t restoreOutput(audio_io_handle_t output)
[all...]
H A DIAudioPolicyService.h65 audio_io_handle_t *output,
73 virtual status_t startOutput(audio_io_handle_t output,
76 virtual status_t stopOutput(audio_io_handle_t output,
79 virtual void releaseOutput(audio_io_handle_t output,
H A DIDrm.h99 Vector<uint8_t> &output) = 0;
105 Vector<uint8_t> &output) = 0;
/frameworks/av/include/media/stagefright/
H A DMediaSync.h45 // For video playback, it requires an output surface and provides an input
47 // the input surface) on the output surface to happen at the appropriate time.
61 // The client needs to configure surface (for output video rendering) and audio
66 // frames and render them onto the output surface at the appropriate time.
79 status_t setSurface(const sp<IGraphicBufferProducer> &output);
87 // be internally directed to output surface for rendering at appropriate
174 OutputListener(const sp<MediaSync> &sync, const sp<IGraphicBufferProducer> &output);
188 // mIsAbandoned is set to true when the input or output dies.
218 // Keep track of buffers sent to |mOutput|. When a new output surface comes
219 // in, those buffers will be returned to input and old output surfac
[all...]
/frameworks/av/include/ndk/
H A DNdkMediaDrm.h409 * by cipherAlgorithm, and write the encrypted result into output. The caller must
410 * ensure that the output buffer is large enough to accept dataSize bytes. The key
416 const uint8_t *input, uint8_t *output, size_t dataSize);
420 * by cipherAlgorithm, and write the decrypted result into output. The caller must
421 * ensure that the output buffer is large enough to accept dataSize bytes. The key
427 const uint8_t *input, uint8_t *output, size_t dataSize);
/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); \

Completed in 5541 milliseconds

1234567891011>>