Skip to content

Commit

Permalink
Merge pull request #15 from x42/master-rg
Browse files Browse the repository at this point in the history
properly tag sidechain inputs
  • Loading branch information
swh committed Apr 14, 2016
2 parents 73f15de + 9acaf57 commit 1aa77e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/sc2-swh.lv2/plugin.xml
Expand Up @@ -124,7 +124,7 @@
<range min="0" max="+24"/>
</port>

<port label="sidechain" dir="input" type="audio">
<port label="sidechain" dir="input" type="audio" sidechain="true">
<name>Sidechain</name>
</port>

Expand Down
2 changes: 1 addition & 1 deletion plugins/sc3-swh.lv2/plugin.xml
Expand Up @@ -139,7 +139,7 @@

<group label="sidechain" type="MonoGroup" sidechain-of="main_in"/>

<port label="sidechain" dir="input" type="audio" group="sidechain" role="centerChannel">
<port label="sidechain" dir="input" type="audio" group="sidechain" role="centerChannel" sidechain="true">
<name>Sidechain</name>
</port>

Expand Down
2 changes: 2 additions & 0 deletions xslt/turtle.xsl
Expand Up @@ -80,6 +80,8 @@ swh:<xsl:value-of select="$pluglabel"/> a :Plugin ;
:portProperty :toggled ;</xsl:if>
<xsl:if test="contains(@hint, 'causes_artifacts')">
:portProperty :causesArtifacts ;</xsl:if>
<xsl:if test="contains(@sidechain, 'true')">
:portProperty :isSideChain ;</xsl:if>
<xsl:if test="@group">
pg:inGroup swh:<xsl:value-of select="$pluglabel"/>-<xsl:value-of select="@group"/> ;
pg:role pg:<xsl:value-of select="@role"/> ;</xsl:if>
Expand Down

0 comments on commit 1aa77e5

Please sign in to comment.