/usr/include/bse/bsebusmodule.idl is in libbse-dev 0.7.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | // Licensed GNU LGPL v2.1 or later: http://www.gnu.org/licenses/lgpl.html
include "bsecore.idl";
namespace Bse { interface Effect; }; // FIXME: bad workaround
namespace Bse {
interface BusModule : Effect {
Info authors = "Tim Janik";
Info license = _("GNU Lesser General Public License");
Info blurb = _("Synthesis module used internally by BseBus");
IStream audio_in1 = Stream (_("Audio In1"), _("First audio input"));
IStream audio_in2 = Stream (_("Audio In2"), _("Second audio input"));
OStream audio_out1 = Stream (_("Audio Out1"), _("First audio output"));
OStream audio_out2 = Stream (_("Audio Out2"), _("Second audio output"));
group _("Volume") {
// Real volume1 = DBVolume (_("Left"), _("Volume adjustment of left channel"), 0, -96, +24, STANDARD);
// Real volume2 = DBVolume (_("Right"), _("Volume adjustment of right channel"), 0, -96, +24, STANDARD);
Real volume1 = SfiReal ("", "", 1, 0, 1000, 10, STANDARD); /* volume factor */
Real volume2 = SfiReal ("", "", 1, 0, 1000, 10, STANDARD); /* volume factor */
};
};
};
|