Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
- Corrected files
  • Loading branch information
borconi authored Jul 4, 2019
1 parent 57853a5 commit 1f9d8aa
Show file tree
Hide file tree
Showing 97 changed files with 354 additions and 321 deletions.
10 changes: 5 additions & 5 deletions AVChannelData.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

import "AVStreamTypeEnum.proto";
import "AudioTypeEnum.proto";
import "AudioConfigData.proto";
import "VideoConfigData.proto";

package uk.co.borconi.emil.aagateway.proto.data;
package gb.xxy.trial.proto.data;

message AVChannel
{
enums.AVStreamType.Enum stream_type = 1;
enums.AudioType.Enum audio_type = 2;
required enums.AVStreamType.Enum stream_type = 1;
optional enums.AudioType.Enum audio_type = 2;
repeated AudioConfig audio_configs = 3;
repeated VideoConfig video_configs = 4;
bool available_while_in_call = 5;
optional bool available_while_in_call = 5;
}
4 changes: 2 additions & 2 deletions AVChannelMessageIdsEnum.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.ids;
package gb.xxy.trial.proto.ids;

message AVChannelMessage
{
Expand Down
6 changes: 3 additions & 3 deletions AVChannelSetupRequestMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.messages;
package gb.xxy.trial.proto.messages;

message AVChannelSetupRequest
{
uint32 config_index = 1;
required uint32 config_index = 1;
}
2 changes: 1 addition & 1 deletion AVChannelSetupResponseMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ syntax="proto2";

import "AVChannelSetupStatusEnum.proto";

package uk.co.borconi.emil.aagateway.proto.messages;
package gb.xxy.trial.proto.messages;

message AVChannelSetupResponse
{
Expand Down
4 changes: 2 additions & 2 deletions AVChannelSetupStatusEnum.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.enums;
package gb.xxy.trial.proto.enums;

message AVChannelSetupStatus
{
Expand Down
8 changes: 4 additions & 4 deletions AVChannelStartIndicationMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.messages;
package gb.xxy.trial.proto.messages;

message AVChannelStartIndication
{
int32 session = 1;
uint32 config = 2;
required int32 session = 1;
required uint32 config = 2;
}
4 changes: 2 additions & 2 deletions AVChannelStopIndicationMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.messages;
package gb.xxy.trial.proto.messages;

message AVChannelStopIndication
{
Expand Down
10 changes: 5 additions & 5 deletions AVInputChannelData.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

import "AVStreamTypeEnum.proto";
import "AudioConfigData.proto";

package uk.co.borconi.emil.aagateway.proto.data;
package gb.xxy.trial.proto.data;

message AVInputChannel
{
enums.AVStreamType.Enum stream_type = 1;
AudioConfig audio_config = 2;
bool available_while_in_call = 3;
required enums.AVStreamType.Enum stream_type = 1;
required AudioConfig audio_config = 2;
optional bool available_while_in_call = 3;
}
12 changes: 6 additions & 6 deletions AVInputOpenRequestMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.messages;
package gb.xxy.trial.proto.messages;

message AVInputOpenRequest
{
bool open = 1;
bool anc = 2;
bool ec = 3;
int32 max_unacked = 4;
required bool open = 1;
required bool anc = 2;
required bool ec = 3;
required int32 max_unacked = 4;
}
2 changes: 1 addition & 1 deletion AVInputOpenResponseMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.messages;
package gb.xxy.trial.proto.messages;

message AVInputOpenResponse
{
Expand Down
2 changes: 1 addition & 1 deletion AVMediaAckIndicationMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.messages;
package gb.xxy.trial.proto.messages;

message AVMediaAckIndication
{
Expand Down
4 changes: 2 additions & 2 deletions AVStreamTypeEnum.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.enums;
package gb.xxy.trial.proto.enums;

message AVStreamType
{
Expand Down
8 changes: 4 additions & 4 deletions AbsoluteInputEventData.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.data;
package gb.xxy.trial.proto.data;

message AbsoluteInputEvent
{
uint32 scan_code = 1;
int32 value = 2;
required uint32 scan_code = 1;
required int32 value = 2;
}
4 changes: 2 additions & 2 deletions AbsoluteInputEventsData.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

import "AbsoluteInputEventData.proto";

package uk.co.borconi.emil.aagateway.proto.data;
package gb.xxy.trial.proto.data;

message AbsoluteInputEvents
{
Expand Down
10 changes: 5 additions & 5 deletions AccelData.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.data;
package gb.xxy.trial.proto.data;

message Accel
{
int32 acceleration_x = 1;
int32 acceleration_y = 2;
int32 acceleration_z = 3;
required int32 acceleration_x = 1;
required int32 acceleration_y = 2;
required int32 acceleration_z = 3;
}
10 changes: 5 additions & 5 deletions AudioConfigData.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.data;
package gb.xxy.trial.proto.data;

message AudioConfig
{
uint32 sample_rate = 1;
uint32 bit_depth = 2;
uint32 channel_count = 3;
required uint32 sample_rate = 1;
required uint32 bit_depth = 2;
required uint32 channel_count = 3;
}
6 changes: 3 additions & 3 deletions AudioFocusRequestMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

import "AudioFocusTypeEnum.proto";

package uk.co.borconi.emil.aagateway.proto.messages;
package gb.xxy.trial.proto.messages;

message AudioFocusRequest
{
enums.AudioFocusType.Enum audio_focus_type = 1;
required enums.AudioFocusType.Enum audio_focus_type = 1;
}
6 changes: 3 additions & 3 deletions AudioFocusResponseMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

import "AudioFocusStateEnum.proto";

package uk.co.borconi.emil.aagateway.proto.messages;
package gb.xxy.trial.proto.messages;

message AudioFocusResponse
{
enums.AudioFocusState.Enum audio_focus_state = 1;
required enums.AudioFocusState.Enum audio_focus_state = 1;
}
4 changes: 2 additions & 2 deletions AudioFocusStateEnum.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.enums;
package gb.xxy.trial.proto.enums;

message AudioFocusState
{
Expand Down
4 changes: 2 additions & 2 deletions AudioFocusTypeEnum.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.enums;
package gb.xxy.trial.proto.enums;

message AudioFocusType
{
Expand Down
4 changes: 2 additions & 2 deletions AudioTypeEnum.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.enums;
package gb.xxy.trial.proto.enums;

message AudioType
{
Expand Down
2 changes: 1 addition & 1 deletion AuthCompleteIndicationMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ syntax="proto2";

import "StatusEnum.proto";

package uk.co.borconi.emil.aagateway.proto.messages;
package gb.xxy.trial.proto.messages;

message AuthCompleteIndication
{
Expand Down
4 changes: 2 additions & 2 deletions BindingRequestMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.messages;
package gb.xxy.trial.proto.messages;

message BindingRequest
{
Expand Down
2 changes: 1 addition & 1 deletion BindingResponseMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ syntax="proto2";

import "StatusEnum.proto";

package uk.co.borconi.emil.aagateway.proto.messages;
package gb.xxy.trial.proto.messages;

message BindingResponse
{
Expand Down
6 changes: 3 additions & 3 deletions BluetoothChannelData.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

import "BluetoothPairingMethodEnum.proto";

package uk.co.borconi.emil.aagateway.proto.data;
package gb.xxy.trial.proto.data;

message BluetoothChannel
{
string adapter_address = 1;
required string adapter_address = 1;
repeated enums.BluetoothPairingMethod.Enum supported_pairing_methods = 2;
}
4 changes: 2 additions & 2 deletions BluetoothChannelMessageIdsEnum.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.ids;
package gb.xxy.trial.proto.ids;

message BluetoothChannelMessage
{
Expand Down
4 changes: 2 additions & 2 deletions BluetoothPairingMethodEnum.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/

syntax="proto3";
syntax="proto2";

package uk.co.borconi.emil.aagateway.proto.enums;
package gb.xxy.trial.proto.enums;

message BluetoothPairingMethod
{
Expand Down
Loading

0 comments on commit 1f9d8aa

Please sign in to comment.