vtk_theora.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
3 #ifndef vtk_libtheora_h
4 #define vtk_libtheora_h
5 
6 /* Use the theora library configured for VTK. */
7 #define VTK_MODULE_USE_EXTERNAL_vtktheora 0
8 
9 #if VTK_MODULE_USE_EXTERNAL_vtktheora
10 # include <theora/theora.h>
11 # include <theora/theoradec.h>
12 # include <theora/theoraenc.h>
13 #else
14 # include <vtktheora/include/theora/theora.h>
15 # include <vtktheora/include/theora/theoradec.h>
16 # include <vtktheora/include/theora/theoraenc.h>
17 #endif
18 
19 #endif