diff options
author | phintuka <phintuka> | 2008-03-13 22:14:06 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-03-13 22:14:06 +0000 |
commit | 9fd110ed8a923a79150ab518a2c2e507ec0c94a0 (patch) | |
tree | ab2428ff660548ddddc2a5564cf6ecfa6939ae71 /config.h | |
parent | fd81945f1def8fa78fc04ee89c814fa175f87220 (diff) | |
download | xineliboutput-9fd110ed8a923a79150ab518a2c2e507ec0c94a0.tar.gz xineliboutput-9fd110ed8a923a79150ab518a2c2e507ec0c94a0.tar.bz2 |
Eliminated static data
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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)];}; |