1/* 2 * Copyright 2022 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17syntax = "proto2"; 18package android.bluetooth.leaudio; 19 20option java_outer_classname = "BluetoothLeAudioProtoEnums"; 21option java_multiple_files = true; 22 23 24enum ContextType { 25 CONTEXT_TYPE_INVALID = 0; 26 CONTEXT_TYPE_UNSPECIFIED = 1; 27 CONTEXT_TYPE_COMMUNICATION = 2; 28 CONTEXT_TYPE_MEDIA = 3; 29 CONTEXT_TYPE_INSTRUCTIONAL = 4; 30 CONTEXT_TYPE_ATTENTION_SEEKING = 5; 31 CONTEXT_TYPE_IMMEDIATE_ALERT = 6; 32 CONTEXT_TYPE_MAN_MACHINE = 7; 33 CONTEXT_TYPE_EMERGENCY_ALERT = 8; 34 CONTEXT_TYPE_RINGTONE = 9; 35 CONTEXT_TYPE_TV = 10; 36 CONTEXT_TYPE_LIVE = 11; 37 CONTEXT_TYPE_GAME = 12; 38} 39 40enum ConnectionStatus { 41 CONNECTION_STATUS_UNKNOWN = 0; 42 CONNECTION_STATUS_SUCCESS = 1; 43 CONNECTION_STATUS_FAILED = 2; 44} 45