Blame view

3rdparty/opencv-4.5.4/modules/gapi/src/streaming/onevpl/source_priv.cpp 1.32 KB
f4334277   Hu Chunming   提交3rdparty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
  // This file is part of OpenCV project.
  // It is subject to the license terms in the LICENSE file found in the top-level directory
  // of this distribution and at http://opencv.org/license.html.
  //
  // Copyright (C) 2021 Intel Corporation
  
  #include <algorithm>
  #include <sstream>
  
  #include "streaming/onevpl/source_priv.hpp"
  #include "logger.hpp"
  
  #ifndef HAVE_ONEVPL
  namespace cv {
  namespace gapi {
  namespace wip {
  namespace onevpl {
  bool GSource::Priv::pull(cv::gapi::wip::Data&) {
      return true;
  }
  GMetaArg GSource::Priv::descr_of() const {
      return {};
  }
  } // namespace onevpl
  } // namespace wip
  } // namespace gapi
  } // namespace cv
  
  #else // HAVE_ONEVPL
  
  namespace cv {
  namespace gapi {
  namespace wip {
  namespace onevpl {
  GSource::Priv::Priv() :
      mfx_handle(MFXLoad())
  {
      GAPI_LOG_INFO(nullptr, "Initialized MFX handle: " << mfx_handle);
      description_is_valid = false;
  }
  
  GSource::Priv::Priv(std::shared_ptr<IDataProvider>, const std::vector<CfgParam>&) :
      GSource::Priv()
  {
  }
  
  GSource::Priv::~Priv()
  {
      GAPI_LOG_INFO(nullptr, "Unload MFX handle: " << mfx_handle);
      MFXUnload(mfx_handle);
  }
  
  bool GSource::Priv::pull(cv::gapi::wip::Data&)
  {
      return false;
  }
  
  GMetaArg GSource::Priv::descr_of() const
  {
      return {};
  }
  } // namespace onevpl
  } // namespace wip
  } // namespace gapi
  } // namespace cv
  
  #endif // HAVE_ONEVPL