severity 588260 important thanks Hi!
Please find attached a patch fixing this bug. Patch provided by Torben Hohn who happens to be one of the jackd authors. The patch also fixes a JACK recording problem. I've forwarded it to upstream. I also raised the severity level to important, because having an Y adjustment ist pretty important. Could you talk to the RT to get a freeze exception? HTH -- mail: [email protected] http://adi.thur.de PGP/GPG: key via keyserver
>From 90e6f55d0d3d0239be23a8868ca8a19a05c76f52 Mon Sep 17 00:00:00 2001 From: Adrian Knoth <[email protected]> Date: Fri, 20 Aug 2010 16:23:19 +0200 Subject: [PATCH 2/2] Fix JACK audio capture and Y offset arguments --- src/rmd_parseargs.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rmd_parseargs.c b/src/rmd_parseargs.c index 8121ce9..c7d3399 100644 --- a/src/rmd_parseargs.c +++ b/src/rmd_parseargs.c @@ -112,7 +112,7 @@ boolean rmdParseArgs(int argc, char **argv, ProgArgs *arg_return) { "Offset in x direction.", "N>=0" }, - { "x", 'y', + { "y", 'y', POPT_ARG_INT, &arg_return->y, 0, "Offset in y direction.", "N>=0" }, @@ -191,7 +191,7 @@ boolean rmdParseArgs(int argc, char **argv, ProgArgs *arg_return) { "SOUND_DEVICE" }, { "use-jack", '\0', - POPT_ARG_STRING | RMD_USE_JACK_EXTRA_FLAG, &arg_return->x, RMD_ARG_USE_JACK, + POPT_ARG_STRING | RMD_USE_JACK_EXTRA_FLAG, NULL, RMD_ARG_USE_JACK, "Record audio from the specified list of space-separated jack ports.", "port1 port2... portn" }, -- 1.7.1

