Files
nvsci_headers/nvscistream.h
svcmobrel-release b2eea08f24 Updating prebuilts and/or headers
d9d6080242372fb0c778e6899a7375a31b3e81ec - nvscievent.h
90b2d50de948c0f2486fcfae0833370ea8a2d03f - nvscierror.h
b1fdaed87816217d5fd18c1bfa0fef2b22071544 - nvsciipc.h
e91fc7a9c1daab4c34970804792b70df556ee9f8 - nvsciipc.cfg
6b8809ed1b39dcb64c4da2f34ffee2aec10bb0b1 - nvscistream.h
60df71827224ad5951cf42d18b8005ad6f9a0399 - nvscistream_types.h
cf44b50644b81af0652ac1b10205022f5ec8f77d - nvscisync.h
c2219e53c743c6453b1a54ffec54bfce9907b571 - nvscistream_api.h
90ef3ca77c503806f61d0a2bfb283ad099cf5806 - nvscibuf.h

Change-Id: I1743fc8850e3f90e9d1fc5c8c18e72e8a943fe97
2022-08-15 08:53:40 -07:00

32 lines
975 B
C++

/*
* 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 <b> NVIDIA Software Communications Interface (SCI) : NvSciStream </b>
*
* 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 <cstdint>
#else
#include <stdint.h>
#endif
#include "nvscistream_api.h"
#include "nvscistream_types.h"
#endif /* NVSCISTREAM_H */