I am working on the Jetson Orin Nano platform and I am attempting to extend the functionality of the gstreamer nvarguscamerasrc element beyond what is exposed by the gstreamer plugin itself.
I download the BSP sources for Jetson Linux 36.3 from: Jetson Linux | NVIDIA Developer
I took the gstnvarguscamerasrc.hpp
file (plus some others in that directory) from this package and included it in my project. However, the code will not compile because the header uses Argus::
and Ordered<bool>
types but never includes those in the header itself. In the implementation file where the header is referenced, all of these necessary includes are included prior to including gstnvarguscamerasrc.hpp
.
This essentially yields that header unusable without manual edits (which shouldn’t be required).