Apollo 10.0
自动驾驶开放平台
microphone_config.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.drivers.microphone.config;
4
6 UNKNOWN = 0;
7 ASR = 1; // Automatic Speech Recognition
8 RAW = 2;
10}
11
15 RESPEAKER = 1;
16 }
17 optional MicrophoneModel microphone_model = 2;
18 optional int32 chunk = 3;
19 optional float sample_rate = 4;
20 optional float record_seconds = 5;
21 optional int32 sample_width = 6; // in bytes
22 optional string channel_name = 7;
23 optional string frame_id = 8;
24 optional float mic_distance = 9;
25 repeated ChannelType channel_type = 1;
26}