Displaying 9 results from an estimated 9 matches for "qvvx".
Did you mean:
lvvx
2003 Mar 09
0
ogg123 --end 1:59 patch.ogg
...':')
+ time = 60 * time + strtod(s + 1, &s);
+
+ return time;
+}
int parse_cmdline_options (int argc, char **argv,
ogg123_options_t *ogg123_opts,
@@ -63,7 +75,7 @@
audio_device_t *current;
int ret;
- while (-1 != (ret = getopt_long(argc, argv, "b:c::d:f:hl:k:o:p:qvVx:y:z@:",
+ while (-1 != (ret = getopt_long(argc, argv, "b:c::d:f:hl:k:K:o:p:qvVx:y:z@:",
long_options, &option_index))) {
switch (ret) {
@@ -137,7 +149,11 @@
break;
case 'k':
- ogg123_opts->seekpos = atof(optarg);
+ ogg123_opts->seekpos = s...
2016 Jul 18
0
[PATCH] format: Remove unimplemented virt-format -c, -d and -q options.
...changed, 1 insertion(+), 1 deletion(-)
diff --git a/format/format.c b/format/format.c
index 5026aff..2dbaa4d 100644
--- a/format/format.c
+++ b/format/format.c
@@ -104,7 +104,7 @@ main (int argc, char *argv[])
enum { HELP_OPTION = CHAR_MAX + 1 };
- static const char *options = "a:c:d:qvVx";
+ static const char *options = "a:vVx";
static const struct option long_options[] = {
{ "add", 1, 0, 'a' },
{ "filesystem", 1, 0, 0 },
--
2.7.4
2016 Jul 22
1
[PATCH] static const char *str -> static const char str
...files changed, 29 insertions(+), 29 deletions(-)
diff --git a/align/scan.c b/align/scan.c
index e7327ea..9575eda 100644
--- a/align/scan.c
+++ b/align/scan.c
@@ -107,7 +107,7 @@ main (int argc, char *argv[])
enum { HELP_OPTION = CHAR_MAX + 1 };
- static const char *options = "a:c:d:P:qvVx";
+ static const char options[] = "a:c:d:P:qvVx";
static const struct option long_options[] = {
{ "add", 1, 0, 'a' },
{ "connect", 1, 0, 'c' },
diff --git a/builder/index-validate.c b/builder/index-validate.c
index 6a87d7a..967c2d3 10...
2004 Jun 15
3
Repeat patch for ogg123
...t", required_argument, 0, '@'},
{"audio-buffer", required_argument, 0, 0},
+ {"repeat", required_argument, 0, 'r'},
{0, 0, 0, 0}
};
@@ -75,7 +76,7 @@
audio_device_t *current;
int ret;
- while (-1 != (ret = getopt_long(argc, argv, "b:c::d:f:hl:k:K:o:p:qvVx:y:z@:",
+ while (-1 != (ret = getopt_long(argc, argv, "b:c::d:f:hl:k:K:o:p:qr:vVx:y:z@:",
long_options, &option_index))) {
switch (ret) {
@@ -187,6 +188,10 @@
ogg123_opts->verbosity = 0;
break;
+ case 'r':
+ ogg123_opts->repeat = atoi(optarg);
+ break;
+
case &...
2012 Jan 17
2
[PATCH v2] New tool: virt-format
This is the same as the previous patch, but the partition type is now
chosen automatically from mbr or gpt, unless the user expresses a
preference.
https://gb.redhat.com/archives/libguestfs/2012-January/msg00136.html
Rich.
2002 Oct 05
2
ogg123 remote interface
...o_argument, 0, 'R'},
{"list", required_argument, 0, '@'},
{"audio-buffer", required_argument, 0, 0},
{0, 0, 0, 0}
@@ -63,7 +64,7 @@
audio_device_t *current;
int ret;
- while (-1 != (ret = getopt_long(argc, argv, "b:c::d:f:hl:k:o:p:qvVx:y:z@:",
+ while (-1 != (ret = getopt_long(argc, argv, "b:c::d:f:hl:k:o:p:qRvVx:y:z@:",
long_options, &option_index))) {
switch (ret) {
@@ -171,6 +172,11 @@
ogg123_opts->verbosity = 0;
break;
+
+ case 'R':
+ ogg123_opts->remote = 1;
+ bre...
2020 Feb 13
0
[PATCH v3 1/1] tools: add '--blocksize' option for C-based tools
...ify libvirt URI for -d option\n"
" -d|--domain guest Add disks from libvirt guest\n"
" --format[=raw|..] Force disk format for -a option\n"
@@ -116,6 +118,7 @@ main (int argc, char *argv[])
static const char options[] = "a:c:d:P:qvVx";
static const struct option long_options[] = {
{ "add", 1, 0, 'a' },
+ { "blocksize", 2, 0, 0 },
{ "connect", 1, 0, 'c' },
{ "domain", 1, 0, 'd' },
{ "format", 2, 0, 0 },
@@ -131,6 +134,8 @@ ma...
2012 Jan 17
2
[PATCH] New tool: virt-format
Rather than me explaining over again what it does, I've included the
man page below.
Rich.
----------------------------------------------------------------------
virt-format(1) Virtualization Support virt-format(1)
NAME
virt-format - Erase and make a blank disk
SYNOPSIS
virt-format [--options] -a disk.img [-a disk.img ...]
DESCRIPTION
2020 Feb 13
2
[PATCH v3 0/1] tools: add '--blocksize' option for C-based tools
From: Nikolay Ivanets <stenavin@gmail.com>
This patch depends on changes in 'common' sub-module posted here:
https://www.redhat.com/archives/libguestfs/2020-February/msg00150.html
v3 fixes issue found during code review:
- options now appear in alphabetical order
v2:
Almost the same as v1 except '--blocksize' option description is moved
into a common submodule (similar to