You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently AAPXS "opcode" is not included in the packet format (it is assumed as head of the "data" section), but it should be an isolated field, just as Binder AIDL extension() function defines it so. If we do not do so, there will be incompatible interpretation on data field (and dataSize field).
TODOs:
add opcode field in the format description in midi.h
generator needs to take care of it
parser needs to take care of it
AudioPluginNode in PluginPlayer needs to take care of it
The text was updated successfully, but these errors were encountered:
…inPlayer.
Everything is still hacky; we should bring in another wrapping layer around
AAPXSClientInstance. context:
- #170 (comment)
- #171
- #175
- #169 (comment)
The code still does not bring in fairly good RT safety because it looks up
interned URI (because we cannot intern extension URIs that are sent by the
client). We will have to come up with something like LV2 URIDs and/or
reserved extension URI mappings (like well known TCP ports).
As for 0.7.8, this PoC would suffice.
Currently AAPXS "opcode" is not included in the packet format (it is assumed as head of the "data" section), but it should be an isolated field, just as Binder AIDL
extension()
function defines it so. If we do not do so, there will be incompatible interpretation ondata
field (anddataSize
field).TODOs:
opcode
field in the format description inmidi.h
The text was updated successfully, but these errors were encountered: