diff options
author | Antti Ajanki <antti.ajanki@iki.fi> | 2010-12-02 20:37:06 +0200 |
---|---|---|
committer | Antti Ajanki <antti.ajanki@iki.fi> | 2010-12-02 20:37:06 +0200 |
commit | 0cbd23ffe7817a64d3d43a74adc135be90ab29ae (patch) | |
tree | a02115928719552974a915d73c3bc3001d2037c1 | |
parent | d994fc6b3d940bc2e152d86ad6610fced8a6593d (diff) | |
download | vdr-plugin-webvideo-0cbd23ffe7817a64d3d43a74adc135be90ab29ae.tar.gz vdr-plugin-webvideo-0cbd23ffe7817a64d3d43a74adc135be90ab29ae.tar.bz2 |
option -p
-rw-r--r-- | HISTORY | 5 | ||||
-rw-r--r-- | src/vdr-plugin/webvideo.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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); |