audio_common.proto 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /******************************************************************************
  2. * Copyright 2020 The Apollo Authors. All Rights Reserved.
  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. syntax = "proto2";
  17. package apollo.audio;
  18. enum MovingResult {
  19. UNKNOWN = 0;
  20. APPROACHING = 1;
  21. DEPARTING = 2;
  22. STATIONARY = 3;
  23. }
  24. enum AudioType {
  25. UNKNOWN_TYPE = 0;
  26. POLICE = 1;
  27. AMBULANCE = 2;
  28. FIRETRUCK = 3;
  29. }
  30. enum AudioDirection {
  31. UNKNOWN_DIRECTION = 0;
  32. FRONT = 1;
  33. LEFT = 2;
  34. BACK = 3;
  35. RIGHT = 4;
  36. }