diff options
Diffstat (limited to 'src/vdr-plugin/config.h')
-rw-r--r-- | src/vdr-plugin/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vdr-plugin/config.h b/src/vdr-plugin/config.h index 29304b4..fd541b3 100644 --- a/src/vdr-plugin/config.h +++ b/src/vdr-plugin/config.h @@ -34,6 +34,7 @@ class cWebvideoConfig { private: char *downloadPath; char *templatePath; + char *postProcessCmd; bool preferXine; cList<cDownloadQuality> downloadLimits; cList<cDownloadQuality> streamLimits; @@ -57,6 +58,9 @@ public: const char *GetMinQuality(const char *site, eRequestType type); const char *GetMaxQuality(const char *site, eRequestType type); + + void SetPostProcessCmd(const char *cmd); + const char *GetPostProcessCmd(); }; extern cWebvideoConfig *webvideoConfig; |