123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- /*
- * Copyright (c) 2016-2018, 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>NVIDIA Multiemdia API: Image Decode API</b>
- *
- * @b Description: This file declares the NvJpegDecoder APIs.
- */
- #ifndef __NV_JPEG_DECODER_H__
- #define __NV_JPEG_DECODER_H__
- /**
- *
- * @defgroup l4t_mm_nvjpegdecoder_group Image Decoder
- * @ingroup l4t_mm_nvimage_group
- *
- * The \c %NvJPEGDecoder API provides functionality for decoding JPEG
- * images using libjpeg APIs.
- *
- * @{
- */
- #ifndef TEGRA_ACCELERATE
- /**
- * @c TEGRA_ACCELERATE must be defined to enable hardware-accelerated
- * JPEG decoding.
- */
- #define TEGRA_ACCELERATE
- #endif
- #include <stdio.h>
- #include "jpeglib.h"
- #include "NvElement.h"
- #include "NvBuffer.h"
- #ifndef MAX_CHANNELS
- /**
- * Specifies the maximum number of channels to be used with the
- * decoder.
- */
- #define MAX_CHANNELS 3
- #endif
- /**
- * @brief Helper class for decoding JPEG images using libjpeg APIs.
- *
- * @c %NvJPEGDecoder uses the @c libjpeg APIs for decoding JPEG images. It
- * supports two methods for decoding:
- *
- * - Decode to a @c DMABUF and return its file descriptor (FD).
- * - Decode and write data to a NvBuffer object, i.e., software allocated
- * memory (@c malloc).
- *
- * The JPEG decoder is capable of decoding YUV420, YUV422, and YUV444 JPEG images.
- *
- * @note Only the @c JCS_YCbCr (YUV420) color space is currently
- * supported.
- */
- class NvJPEGDecoder:public NvElement
- {
- public:
- /**
- * Creates a new JPEG Decoder named @a comp_name.
- *
- * @return Reference to the newly created decoder object, or NULL
- * in case of failure during initialization.
- */
- static NvJPEGDecoder *createJPEGDecoder(const char *comp_name);
- ~NvJPEGDecoder();
- /**
- * Decodes a JPEG image to hardware buffer memory.
- *
- * This method decodes JPEG images in hardware memory to a
- * specified width and size.
- *
- * @param[out] fd A reference to the file descriptor (FD) of the hardware buffer.
- * @param[in] in_buf A pointer to the memory containing
- * the JPEG image.
- * @param[in] in_buf_size Size of the input buffer in bytes.
- * @param[out] pixfmt A reference to the V4L2 pixel format
- * of the decoded image.
- * @param[out] width A reference to the width of the
- * decoded image in pixels.
- * @param[out] height A reference to the height of the
- * decoded image in pixels.
- * @return 0 for success, -1 otherwise.
- */
- int decodeToFd(int &fd,
- unsigned char *in_buf, unsigned long in_buf_size,
- uint32_t &pixfmt, uint32_t &width, uint32_t &height);
- /**
- * Decodes a JPEG image to software buffer memory.
- *
- * This method decodes JPEG images in software memory to a
- * specified width and size.
- *
- * @note The @c decodeToBuffer method is slower than the
- * NvJPEGDecoder::decodeToFd method because it involves conversion
- * from hardware buffer memory to software buffer memory.
- *
- * @attention The application must free the NvBuffer object.
- *
- * @param[out] buffer Indirect pointer to an @c %NvBuffer object that contains
- * the decoded image. The object is allocated by
- * the method and the buffer memory is
- * allocated using NvBuffer::allocateMemory.
- * @param[in] in_buf A pointer to the memory containing the JPEG.
- * @param[in] in_buf_size Size of the input buffer in bytes.
- * @param[out] pixfmt A pointer to the V4L2 pixel format
- * of the decoded image.
- * @param[out] width A pointer to the width of the decoded image
- * in pixels.
- * @param[out] height A pointer to the height of the decoded image
- * in pixels.
- * @return 0 for success, -1 otherwise.
- */
- int decodeToBuffer(NvBuffer ** buffer,
- unsigned char *in_buf, unsigned long in_buf_size,
- uint32_t *pixfmt, uint32_t *width, uint32_t *height);
- private:
- NvJPEGDecoder(const char *comp_name);
- void decodeIndirect(NvBuffer *out_buf, uint32_t pixel_format);
- void decodeDirect(NvBuffer *out_buf, uint32_t pixel_format);
- struct jpeg_decompress_struct cinfo;
- struct jpeg_error_mgr jerr;
- static const NvElementProfiler::ProfilerField valid_fields =
- NvElementProfiler::PROFILER_FIELD_TOTAL_UNITS |
- NvElementProfiler::PROFILER_FIELD_LATENCIES;
- };
- /** @} */
- #endif
|