mirror of
git://nv-tegra.nvidia.com/tegra/nv-sci-src/nvsci_headers.git
synced 2025-12-22 09:23:12 +03:00
b90f6b262aa3621031036ee780d8815cde1f7857 - nvscibuf.h 5b2f58a4d46aa8e4f7610c81f4c93cafe0c29c90 - nvsciipc.cfg 8a0a9a6809e4f94fef5a607d13f779c37d922b85 - nvscistream_api.h 8dbc8e93caaeb5f0b725d5a678756784223571dd - nvscisync.h 6b8809ed1b39dcb64c4da2f34ffee2aec10bb0b1 - nvscistream.h 30539c9e44aa07fd4e6587195a5760c9e2e4300d - nvscievent.h f81df24708896d40238fd172f21c52905e1d7011 - nvscistream_types.h cf447a1331d4725724fa47122ea5b821c126054c - nvscierror.h 65d2229d2171080ced54ef04a228a1daa0cf79a2 - nvsciipc.h Change-Id: I774e8a20c0fb9de86254901bcd5fd088de216459
32 lines
975 B
C++
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 */
|