NVIDIA DeepStream SDK API Reference

7.1 Release
deepstream_asr_tts_config_file_parser.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3  * SPDX-License-Identifier: LicenseRef-NvidiaProprietary
4  *
5  * NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
6  * property and proprietary rights in and to this material, related
7  * documentation and any modifications thereto. Any use, reproduction,
8  * disclosure or distribution of this material and related documentation
9  * without an express license agreement from NVIDIA CORPORATION or
10  * its affiliates is strictly prohibited.
11  */
12 
13 
14 #ifndef __CONFIG_FILE_PARSER_H_
15 #define __CONFIG_FILE_PARSER_H_
16 
17 #include <glib.h>
18 #include <stdio.h>
19 
20 typedef struct __NvDsAudioConfig
21 {
22  const char *asr_output_file_name;
24 
25 
26 typedef struct __NvDsAppConfig
27 {
28  gboolean sync;
30 
31 
32 #endif
NvDsAudioConfig
struct __NvDsAudioConfig NvDsAudioConfig
NvDsAppConfig
struct __NvDsAppConfig NvDsAppConfig
__NvDsAudioConfig::asr_output_file_name
const char * asr_output_file_name
Definition: deepstream_asr_tts_config_file_parser.h:22
__NvDsAppConfig::sync
gboolean sync
Definition: deepstream_asr_tts_config_file_parser.h:28
__NvDsAppConfig
Definition: deepstream_asr_tts_config_file_parser.h:26
__NvDsAudioConfig
Definition: deepstream_asr_tts_config_file_parser.h:20