-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
the attached patch will split entered jack ports for recordMyDesktop
when using more than one. This seems to be required, see:
http://kdenlive.org/mantis/view.php?id=1548
regards till
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iEYEARECAAYFAku++68ACgkQzwEyz7QP6nQh3ACgqWCzCp3draLdmkqTm9UyKslz
QBcAoK/S5nSMJthQmQuvJCCuO7Zv8fEb
=bfgr
-----END PGP SIGNATURE-----
Index: src/recmonitor.cpp
===================================================================
--- src/recmonitor.cpp (revision 4377)
+++ src/recmonitor.cpp (working copy)
@@ -501,7 +501,11 @@
m_captureArgs << "-freq" << KdenliveSettings::rmd_freq();
m_captureArgs << "-channels" << QString::number(KdenliveSettings::rmd_audio_channels());
if (KdenliveSettings::rmd_use_jack()) {
- m_captureArgs << "-use-jack" << KdenliveSettings::rmd_jackports();
+ m_captureArgs << "-use-jack";
+ QStringList ports = KdenliveSettings::rmd_jackports().split(" ", QString::SkipEmptyParts);
+ for(int i = 0; i < ports.count(); ++i) {
+ m_captureArgs << ports.at(i);
+ }
if (KdenliveSettings::rmd_jack_buffer() > 0.0)
m_captureArgs << "-ring-buffer-size" << QString::number(KdenliveSettings::rmd_jack_buffer());
} else {
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Kdenlive-devel mailing list
Kdenlive-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kdenlive-devel