summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorphintuka <phintuka>2008-03-13 22:14:06 +0000
committerphintuka <phintuka>2008-03-13 22:14:06 +0000
commit9fd110ed8a923a79150ab518a2c2e507ec0c94a0 (patch)
treeab2428ff660548ddddc2a5564cf6ecfa6939ae71 /config.h
parentfd81945f1def8fa78fc04ee89c814fa175f87220 (diff)
downloadxineliboutput-9fd110ed8a923a79150ab518a2c2e507ec0c94a0.tar.gz
xineliboutput-9fd110ed8a923a79150ab518a2c2e507ec0c94a0.tar.bz2
Eliminated static data
Diffstat (limited to 'config.h')
-rw-r--r--config.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/config.h b/config.h
index 1e55e79d..55085d00 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h,v 1.39 2008-03-13 22:12:05 phintuka Exp $
+ * $Id: config.h,v 1.40 2008-03-13 22:14:06 phintuka Exp $
*
*/
@@ -340,11 +340,11 @@ class config_t {
bool IsVideoFile(const char *);
bool IsPlaylistFile(const char *);
- const char *AutocropOptions(void);
- const char *SwScaleOptions(void);
- const char *FfmpegPpOptions(void);
- const char *UnsharpOptions(void);
- const char *Denoise3dOptions(void);
+ cString AutocropOptions(void);
+ cString SwScaleOptions(void);
+ cString FfmpegPpOptions(void);
+ cString UnsharpOptions(void);
+ cString Denoise3dOptions(void);
template<typename T> bool IsOptionHidden(T & option)
{ return hidden_options[(int)((long int)&option - (long int)this)];};