blob: 44177735e8c356b96d0836c9c6f107d0b980f91f [file] [log] [blame]
ajm@google.com808e0e02011-08-03 21:08:51 +00001syntax = "proto2";
2option optimize_for = LITE_RUNTIME;
3package webrtc.audioproc;
4
Minyue13b96ba2015-10-03 00:39:14 +02005// Contains the format of input/output/reverse audio. An Init message is added
6// when any of the fields are changed.
ajm@google.com808e0e02011-08-03 21:08:51 +00007message Init {
8 optional int32 sample_rate = 1;
andrew@webrtc.orgddbb8a22014-04-22 21:00:04 +00009 optional int32 device_sample_rate = 2 [deprecated=true];
ajm@google.com808e0e02011-08-03 21:08:51 +000010 optional int32 num_input_channels = 3;
11 optional int32 num_output_channels = 4;
12 optional int32 num_reverse_channels = 5;
andrew@webrtc.orga8b97372014-03-10 22:26:12 +000013 optional int32 reverse_sample_rate = 6;
andrew@webrtc.orgddbb8a22014-04-22 21:00:04 +000014 optional int32 output_sample_rate = 7;
peahc7bdf8a2016-04-11 07:05:53 -070015 optional int32 reverse_output_sample_rate = 8;
16 optional int32 num_reverse_output_channels = 9;
ajm@google.com808e0e02011-08-03 21:08:51 +000017}
18
andrew@webrtc.org17e40642014-03-04 20:58:13 +000019// May contain interleaved or deinterleaved data, but don't store both formats.
ajm@google.com808e0e02011-08-03 21:08:51 +000020message ReverseStream {
andrew@webrtc.org17e40642014-03-04 20:58:13 +000021 // int16 interleaved data.
ajm@google.com808e0e02011-08-03 21:08:51 +000022 optional bytes data = 1;
andrew@webrtc.org17e40642014-03-04 20:58:13 +000023
24 // float deinterleaved data, where each repeated element points to a single
25 // channel buffer of data.
26 repeated bytes channel = 2;
ajm@google.com808e0e02011-08-03 21:08:51 +000027}
28
andrew@webrtc.org17e40642014-03-04 20:58:13 +000029// May contain interleaved or deinterleaved data, but don't store both formats.
ajm@google.com808e0e02011-08-03 21:08:51 +000030message Stream {
andrew@webrtc.org17e40642014-03-04 20:58:13 +000031 // int16 interleaved data.
ajm@google.com808e0e02011-08-03 21:08:51 +000032 optional bytes input_data = 1;
33 optional bytes output_data = 2;
andrew@webrtc.org17e40642014-03-04 20:58:13 +000034
ajm@google.com808e0e02011-08-03 21:08:51 +000035 optional int32 delay = 3;
36 optional sint32 drift = 4;
37 optional int32 level = 5;
andrew@webrtc.orgce8e0772014-02-12 15:28:30 +000038 optional bool keypress = 6;
andrew@webrtc.org17e40642014-03-04 20:58:13 +000039
40 // float deinterleaved data, where each repeated element points to a single
41 // channel buffer of data.
42 repeated bytes input_channel = 7;
43 repeated bytes output_channel = 8;
ajm@google.com808e0e02011-08-03 21:08:51 +000044}
45
Minyue13b96ba2015-10-03 00:39:14 +020046// Contains the configurations of various APM component. A Config message is
47// added when any of the fields are changed.
48message Config {
Alejandro Luebsc9b0c262016-05-16 15:32:38 -070049 // Next field number 19.
Minyue13b96ba2015-10-03 00:39:14 +020050 // Acoustic echo canceler.
51 optional bool aec_enabled = 1;
52 optional bool aec_delay_agnostic_enabled = 2;
53 optional bool aec_drift_compensation_enabled = 3;
54 optional bool aec_extended_filter_enabled = 4;
55 optional int32 aec_suppression_level = 5;
56 // Mobile AEC.
57 optional bool aecm_enabled = 6;
58 optional bool aecm_comfort_noise_enabled = 7;
59 optional int32 aecm_routing_mode = 8;
60 // Automatic gain controller.
61 optional bool agc_enabled = 9;
62 optional int32 agc_mode = 10;
63 optional bool agc_limiter_enabled = 11;
64 optional bool noise_robust_agc_enabled = 12;
65 // High pass filter.
66 optional bool hpf_enabled = 13;
67 // Noise suppression.
68 optional bool ns_enabled = 14;
69 optional int32 ns_level = 15;
70 // Transient suppression.
71 optional bool transient_suppression_enabled = 16;
peah7789fe72016-04-15 01:19:44 -070072 // Semicolon-separated string containing experimental feature
73 // descriptions.
74 optional string experiments_description = 17;
Alejandro Luebsc9b0c262016-05-16 15:32:38 -070075 // Intelligibility Enhancer
76 optional bool intelligibility_enhancer_enabled = 18;
Minyue13b96ba2015-10-03 00:39:14 +020077}
78
ajm@google.com808e0e02011-08-03 21:08:51 +000079message Event {
80 enum Type {
81 INIT = 0;
82 REVERSE_STREAM = 1;
83 STREAM = 2;
Minyue13b96ba2015-10-03 00:39:14 +020084 CONFIG = 3;
85 UNKNOWN_EVENT = 4;
ajm@google.com808e0e02011-08-03 21:08:51 +000086 }
87
88 required Type type = 1;
89
90 optional Init init = 2;
91 optional ReverseStream reverse_stream = 3;
92 optional Stream stream = 4;
Minyue13b96ba2015-10-03 00:39:14 +020093 optional Config config = 5;
ajm@google.com808e0e02011-08-03 21:08:51 +000094}