summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntti Ajanki <antti.ajanki@iki.fi>2010-12-02 20:37:06 +0200
committerAntti Ajanki <antti.ajanki@iki.fi>2010-12-02 20:37:06 +0200
commit0cbd23ffe7817a64d3d43a74adc135be90ab29ae (patch)
treea02115928719552974a915d73c3bc3001d2037c1
parentd994fc6b3d940bc2e152d86ad6610fced8a6593d (diff)
downloadvdr-plugin-webvideo-0cbd23ffe7817a64d3d43a74adc135be90ab29ae.tar.gz
vdr-plugin-webvideo-0cbd23ffe7817a64d3d43a74adc135be90ab29ae.tar.bz2
option -p
-rw-r--r--HISTORY5
-rw-r--r--src/vdr-plugin/webvideo.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 06bbae1..61f2a62 100644
--- a/HISTORY
+++ b/HISTORY
@@ -214,3 +214,8 @@ Video site modules:
- Support VDR 1.7 series by including Make.global.
- Command line arguments override config file options.
- Fixes for Youtube, Metacafe and Google modules.
+
+Version 0.4.1
+
+- Accept -p as alternative to --postprocess (thanks to Matti Lehtimäki).
+
diff --git a/src/vdr-plugin/webvideo.c b/src/vdr-plugin/webvideo.c
index b9c663a..15661d4 100644
--- a/src/vdr-plugin/webvideo.c
+++ b/src/vdr-plugin/webvideo.c
@@ -106,7 +106,7 @@ bool cPluginWebvideo::ProcessArgs(int argc, char *argv[])
};
int c;
- while ((c = getopt_long(argc, argv, "d:t:c:", long_options, NULL)) != -1) {
+ while ((c = getopt_long(argc, argv, "d:t:c:p:", long_options, NULL)) != -1) {
switch (c) {
case 'd':
destdir = cString(optarg);