/* * Copyright (c) 2018-2020 NVIDIA Corporation. All rights reserved. * * NVIDIA Corporation and its licensors retain all intellectual property and * proprietary rights in and to this software, related documentation and any * modifications thereto. Any use, reproduction, disclosure or distribution * of this software and related documentation without an express license * agreement from NVIDIA Corporation is strictly prohibited. */ /** * @file * * @brief NVIDIA Software Communications Interface (SCI) : NvSciStream * * The NvSciStream library is a layer on top of NvSciBuf and NvSciSync libraries * to provide utilities for streaming sequences of data packets between * multiple application modules to support a wide variety of use cases. */ #ifndef NVSCISTREAM_H #define NVSCISTREAM_H #ifdef __cplusplus #include #else #include #endif #include "nvscistream_api.h" #include "nvscistream_types.h" #endif /* NVSCISTREAM_H */