summaryrefslogtreecommitdiff
path: root/softhddev.c
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2012-02-16 21:55:14 +0100
committerJohns <johns98@gmx.net>2012-02-16 21:55:14 +0100
commit09cfab3856fa0104f0375b32a67e6b5fbea1c094 (patch)
treef5a1f36b31043a996cb82be64ccc0f7ee7045bd4 /softhddev.c
parent30e903d90a43f45c001c3574bfedb6b0a2d0ef3e (diff)
downloadvdr-plugin-softhddevice-09cfab3856fa0104f0375b32a67e6b5fbea1c094.tar.gz
vdr-plugin-softhddevice-09cfab3856fa0104f0375b32a67e6b5fbea1c094.tar.bz2
Add posibility to disable repeat pict warning.
Diffstat (limited to 'softhddev.c')
-rw-r--r--softhddev.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/softhddev.c b/softhddev.c
index 85a9b1a..3a83099 100644
--- a/softhddev.c
+++ b/softhddev.c
@@ -1454,7 +1454,8 @@ const char *CommandLineHelp(void)
" -w workaround\tenable/disable workarounds\n"
"\tno-hw-decoder\t\tdisable hw decoder, use software decoder only\n"
"\tno-mpeg-hw-decoder\tdisable hw decoder for mpeg only\n"
- "\talsa-driver-broken\tdisable broken alsa driver message\n";
+ "\talsa-driver-broken\tdisable broken alsa driver message\n"
+ "\tignore-repeat-pict\tdisable repeat pict message\n";
}
/**
@@ -1504,6 +1505,8 @@ int ProcessArgs(int argc, char *const argv[])
} else if (!strcasecmp("no-mpeg-hw-decoder", optarg)) {
} else if (!strcasecmp("alsa-driver-broken", optarg)) {
AudioAlsaDriverBroken = 1;
+ } else if (!strcasecmp("ignore-repeat-pict", optarg)) {
+ VideoIgnoreRepeatPict = 1;
} else {
fprintf(stderr, _("Workaround '%s' unsupported\n"),
optarg);