Panda3D
 All Classes Functions Variables Enumerations
config_ffmpeg.h
1 // Filename: config_ffmpeg.h
2 // Created by: rdb (23Aug13)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef CONFIG_FFMPEG_H
16 #define CONFIG_FFMPEG_H
17 
18 #include "pandabase.h"
19 #include "notifyCategoryProxy.h"
20 #include "configVariableEnum.h"
21 #include "configVariableInt.h"
22 #include "configVariableBool.h"
23 #include "threadPriority.h"
24 #include "dconfig.h"
25 
26 ConfigureDecl(config_ffmpeg, EXPCL_FFMPEG, EXPTP_FFMPEG);
27 NotifyCategoryDecl(ffmpeg, EXPCL_FFMPEG, EXPTP_FFMPEG);
28 
29 extern ConfigVariableInt ffmpeg_max_readahead_frames;
30 extern ConfigVariableBool ffmpeg_show_seek_frames;
31 extern ConfigVariableBool ffmpeg_support_seek;
32 extern ConfigVariableBool ffmpeg_global_lock;
33 extern ConfigVariableEnum<ThreadPriority> ffmpeg_thread_priority;
34 extern ConfigVariableInt ffmpeg_read_buffer_size;
35 
36 extern EXPCL_FFMPEG void init_libffmpeg();
37 
38 #endif /* CONFIG_FFMPEG_H */
This is a convenience class to specialize ConfigVariable as a boolean type.
This class specializes ConfigVariable as an enumerated type.
This is a convenience class to specialize ConfigVariable as an integer type.