-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
part of #32 - default, minimum, maximum have namespace with pp: prefix. - introduced pp:type and pp:enumeration.
- Loading branch information
1 parent
58271bf
commit 28b6363
Showing
5 changed files
with
32 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
java/samples/aapbarebonepluginsample/src/main/res/xml/aap_metadata.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 8 additions & 7 deletions
15
native/androidaudioplugin/core/include/aap/port-properties.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
|
||
#define AAP_PORT_BASE "org.androidaudioplugin.port" | ||
#define AAP_PORT_DEFAULT AAP_PORT_BASE ":default" | ||
#define AAP_PORT_MAXIMUM AAP_PORT_BASE ":maximum" | ||
#define AAP_PORT_MINIMUM AAP_PORT_BASE ":minimum" | ||
#define AAP_PORT_OPTIONAL AAP_PORT_BASE ":optional" | ||
#define AAP_PORT_ENUMERATION AAP_PORT_BASE ":enumeration" | ||
#define AAP_PORT_PRIMITIVE_TYPE AAP_PORT_BASE ":primitive-type" | ||
#define AAP_PORT_URL "urn:org.androidaudioplugin.port" | ||
#define AAP_PORT_BASE AAP_PORT_URL "#" | ||
#define AAP_PORT_DEFAULT AAP_PORT_BASE "default" | ||
#define AAP_PORT_MAXIMUM AAP_PORT_BASE "maximum" | ||
#define AAP_PORT_MINIMUM AAP_PORT_BASE "minimum" | ||
#define AAP_PORT_OPTIONAL AAP_PORT_BASE "optional" | ||
#define AAP_PORT_ENUMERATION AAP_PORT_BASE "enumeration" | ||
#define AAP_PORT_TYPE AAP_PORT_BASE "type" | ||
|