123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- /*
- * Copyright (c) 2016-2022, NVIDIA CORPORATION. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * * Neither the name of NVIDIA CORPORATION nor the names of its
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /**
- * @file
- * <b>Libargus API: Request API</b>
- *
- * @b Description: Defines the Request object and core IRequest interface.
- */
- #ifndef _ARGUS_REQUEST_H
- #define _ARGUS_REQUEST_H
- namespace Argus
- {
- /**
- * Container for all settings used by a single capture request.
- *
- * @defgroup ArgusRequest Request
- * @ingroup ArgusObjects
- */
- class Request : public InterfaceProvider, public Destructable
- {
- protected:
- ~Request() {}
- };
- /**
- * @class IRequest
- *
- * Interface to the core Request settings.
- *
- * @ingroup ArgusRequest
- *
- * @defgroup ArgusAutoControlSettings AutoControlSettings
- * Child auto control settings, returned by IRequest::getAutoControlSettings
- * @ingroup ArgusRequest
- *
- * @defgroup ArgusStreamSettings StreamSettings
- * Child per-stream settings, returned by IRequest::getStreamSettings
- * @ingroup ArgusRequest
- *
- * @defgroup ArgusSourceSettings SourceSettings
- * Child source settings, returned by IRequest::getSourceSettings
- * @ingroup ArgusRequest
- */
- DEFINE_UUID(InterfaceID, IID_REQUEST, eb9b3750,fc8d,455f,8e0f,91,b3,3b,d9,4e,c5);
- class IRequest : public Interface
- {
- public:
- static const InterfaceID& id() { return IID_REQUEST; }
- /**
- * Enables the specified output stream.
- * Captures made with this Request will produce output on that stream.
- */
- virtual Status enableOutputStream(OutputStream* stream) = 0;
- /**
- * Disables the specified output stream.
- */
- virtual Status disableOutputStream(OutputStream* stream) = 0;
- /**
- * Disables all output streams.
- */
- virtual Status clearOutputStreams() = 0;
- /**
- * Enables the specified input stream and stream settings.
- * Captures made with this Request will produce input on that stream.
- */
- virtual Status enableInputStream(InputStream *stream, InputStreamSettings *streamSettings) = 0;
- /**
- * Disables the specified input stream with the stream settings provided.
- */
- virtual Status disableInputStream(InputStream *stream, InputStreamSettings *streamSettings) = 0;
- /**
- * Disables all input streams.
- */
- virtual Status clearInputStreams() = 0;
- /**
- * Returns all enabled output streams.
- * @param[out] streams A vector that will be populated with the enabled streams.
- *
- * @returns success/status of the call.
- */
- virtual Status getOutputStreams(std::vector<OutputStream*>* streams) const = 0;
- /**
- * Returns all enabled input streams.
- * @param[out] streams A vector that will be populated with the enabled input streams.
- *
- * @returns success/status of the call.
- */
- virtual Status getInputStreams(std::vector<InputStream*>* streams) const = 0;
- /**
- * Returns the Stream settings for a particular stream in the request.
- * The returned object will have the same lifespan as this object,
- * and expose the IStreamSettings interface.
- * @param[in] stream The stream for which the settings are requested.
- */
- virtual InterfaceProvider* getStreamSettings(const OutputStream* stream) = 0;
- /**
- * Returns the capture control settings for a given AC.
- * The returned object will have the same lifespan as this object,
- * and expose the IAutoControlSettings interface.
- * @param[in] acId The id of the AC component for which the settings are requested.
- * <b>(Currently unused)</b>
- */
- virtual InterfaceProvider* getAutoControlSettings(const AutoControlId acId = 0) = 0;
- /**
- * Returns the source settings for the request.
- * The returned object will have the same lifespan as this object,
- * and expose the ISourceSettings interface.
- */
- virtual InterfaceProvider* getSourceSettings() = 0;
- /**
- * Sets the client data for the request. This value is passed through to and queryable
- * from the CaptureMetadata generated for any captures completed using this Request.
- * Default value is 0.
- * @param[in] data The client data.
- */
- virtual Status setClientData(uint32_t data) = 0;
- /**
- * Gets the client data for the request.
- */
- virtual uint32_t getClientData() const = 0;
- /**
- * Set this if need 2 simultaneous outputs i.e. YUV and RGBA
- */
- virtual Status setPixelFormatType(const PixelFormatType& pixelFormatType) = 0;
- /**
- * Check if 2 simultaneous outputs are needed
- */
- virtual PixelFormatType getPixelFormatType() const = 0;
- /**
- * Set the output port for RGBA output
- */
- virtual Status setCVOutput(const CVOutput& cvOutput) = 0;
- /**
- * Get output port for RGBA output
- */
- virtual CVOutput getCVOutput() const = 0;
- /**
- * Set this to false if o/p buffer is Bayer and ISP stage needs to be skipped
- */
- virtual Status setEnableIspStage(bool enableIspStage) = 0;
- /**
- * Check if ISP stage is enabled/disabled.
- */
- virtual bool getEnableIspStage() const = 0;
- /**
- * Set the flag to enable reprocessing mode for this request.
- */
- virtual Status setReprocessingEnable(bool enable) = 0;
- protected:
- ~IRequest() {}
- };
- } // namespace Argus
- #endif // _ARGUS_REQUEST_H
|