• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* GStreamer
2  * Copyright (C) 2019 Seungha Yang <seungha.yang@navercorp.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 
20 #ifndef __GST_NVRTC_LOADER_H__
21 #define __GST_NVRTC_LOADER_H__
22 
23 #include <gst/gst.h>
24 #include <nvrtc.h>
25 
26 G_BEGIN_DECLS
27 
28 gboolean gst_nvrtc_load_library (void);
29 
30 nvrtcResult NvrtcCompileProgram (nvrtcProgram prog,
31                                  int numOptions,
32                                  const char** options);
33 
34 nvrtcResult NvrtcCreateProgram  (nvrtcProgram* prog,
35                                  const char* src,
36                                  const char* name,
37                                  int numHeaders,
38                                  const char** headers,
39                                  const char** includeNames);
40 
41 nvrtcResult NvrtcDestroyProgram (nvrtcProgram* prog);
42 
43 nvrtcResult NvrtcGetPTX         (nvrtcProgram prog,
44                                  char* ptx);
45 
46 nvrtcResult NvrtcGetPTXSize     (nvrtcProgram prog,
47                                  size_t* ptxSizeRet);
48 
49 nvrtcResult NvrtcGetProgramLog (nvrtcProgram prog,
50                                 char* log);
51 
52 nvrtcResult NvrtcGetProgramLogSize (nvrtcProgram prog,
53                                     size_t* logSizeRet);
54 
55 G_END_DECLS
56 #endif /* __GST_NVRTC_LOADER_H__ */
57