FastDeploy  latest
Fast & Easy to Deploy!
nvjpeg_decoder.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 //
15 // Part of the following code in this file refs to
16 // https://github.com/CVCUDA/CV-CUDA/blob/release_v0.2.x/samples/common/NvDecoder.h
17 //
18 // Copyright (c) 2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
19 // Licensed under the Apache-2.0 license
20 // \brief
21 // \author NVIDIA
22 
23 #pragma once
24 
25 #ifdef ENABLE_NVJPEG
26 #include "fastdeploy/core/fd_tensor.h"
27 
28 #include <cuda_runtime_api.h>
29 #include <nvjpeg.h>
30 
31 
32 namespace fastdeploy {
33 namespace vision {
34 namespace nvjpeg {
35 
36 typedef std::vector<std::string> FileNames;
37 typedef std::vector<std::vector<char>> FileData;
38 
39 struct decode_params_t {
40  int batch_size;
41  nvjpegJpegState_t nvjpeg_state;
42  nvjpegHandle_t nvjpeg_handle;
43  cudaStream_t stream;
44 
45  // used with decoupled API
46  nvjpegJpegState_t nvjpeg_decoupled_state;
47  nvjpegBufferPinned_t pinned_buffers[2]; // 2 buffers for pipelining
48  nvjpegBufferDevice_t device_buffer;
49  nvjpegJpegStream_t jpeg_streams[2]; // 2 streams for pipelining
50  nvjpegDecodeParams_t nvjpeg_decode_params;
51  nvjpegJpegDecoder_t nvjpeg_decoder;
52 
53  nvjpegOutputFormat_t fmt;
54  bool hw_decode_available;
55 };
56 
57 void init_decoder(decode_params_t& params);
58 void destroy_decoder(decode_params_t& params);
59 
60 double process_images(const FileNames& image_names, decode_params_t& params,
61  double& total, std::vector<nvjpegImage_t>& iout,
62  std::vector<FDTensor*>& output_buffers,
63  std::vector<int>& widths, std::vector<int>& heights);
64 
65 } // namespace nvjpeg
66 } // namespace vision
67 } // namespace fastdeploy
68 
69 #endif // ENABLE_NVJPEG
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16