OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 int GetVersion(char version[1024]) override; | 48 int GetVersion(char version[1024]) override; |
49 | 49 |
50 int LastError() override; | 50 int LastError() override; |
51 | 51 |
52 AudioTransport* audio_transport() override { return this; } | 52 AudioTransport* audio_transport() override { return this; } |
53 | 53 |
54 int AssociateSendChannel(int channel, int accociate_send_channel) override; | 54 int AssociateSendChannel(int channel, int accociate_send_channel) override; |
55 | 55 |
56 // AudioTransport | 56 // AudioTransport |
57 int32_t RecordedDataIsAvailable(const void* audioSamples, size_t nSamples, | 57 int32_t RecordedDataIsAvailable(const void* audioSamples, size_t nSamples, |
58 size_t nBytesPerSample, uint8_t nChannels, | 58 size_t nBytesPerSample, size_t nChannels, |
59 uint32_t samplesPerSec, uint32_t totalDelayMS, | 59 uint32_t samplesPerSec, uint32_t totalDelayMS, |
60 int32_t clockDrift, uint32_t micLevel, | 60 int32_t clockDrift, uint32_t micLevel, |
61 bool keyPressed, | 61 bool keyPressed, |
62 uint32_t& newMicLevel) override; | 62 uint32_t& newMicLevel) override; |
63 int32_t NeedMorePlayData(size_t nSamples, size_t nBytesPerSample, | 63 int32_t NeedMorePlayData(size_t nSamples, size_t nBytesPerSample, |
64 uint8_t nChannels, uint32_t samplesPerSec, | 64 size_t nChannels, uint32_t samplesPerSec, |
65 void* audioSamples, size_t& nSamplesOut, | 65 void* audioSamples, size_t& nSamplesOut, |
66 int64_t* elapsed_time_ms, | 66 int64_t* elapsed_time_ms, |
67 int64_t* ntp_time_ms) override; | 67 int64_t* ntp_time_ms) override; |
68 int OnDataAvailable(const int voe_channels[], int number_of_voe_channels, | 68 int OnDataAvailable(const int voe_channels[], size_t number_of_voe_channels, |
69 const int16_t* audio_data, int sample_rate, | 69 const int16_t* audio_data, int sample_rate, |
70 int number_of_channels, size_t number_of_frames, | 70 size_t number_of_channels, size_t number_of_frames, |
71 int audio_delay_milliseconds, int volume, | 71 int audio_delay_milliseconds, int volume, |
72 bool key_pressed, bool need_audio_processing) override; | 72 bool key_pressed, bool need_audio_processing) override; |
73 void OnData(int voe_channel, const void* audio_data, int bits_per_sample, | 73 void OnData(int voe_channel, const void* audio_data, int bits_per_sample, |
74 int sample_rate, int number_of_channels, | 74 int sample_rate, size_t number_of_channels, |
75 size_t number_of_frames) override; | 75 size_t number_of_frames) override; |
76 void PushCaptureData(int voe_channel, const void* audio_data, | 76 void PushCaptureData(int voe_channel, const void* audio_data, |
77 int bits_per_sample, int sample_rate, | 77 int bits_per_sample, int sample_rate, |
78 int number_of_channels, | 78 size_t number_of_channels, |
79 size_t number_of_frames) override; | 79 size_t number_of_frames) override; |
80 void PullRenderData(int bits_per_sample, int sample_rate, | 80 void PullRenderData(int bits_per_sample, int sample_rate, |
81 int number_of_channels, size_t number_of_frames, | 81 size_t number_of_channels, size_t number_of_frames, |
82 void* audio_data, int64_t* elapsed_time_ms, | 82 void* audio_data, int64_t* elapsed_time_ms, |
83 int64_t* ntp_time_ms) override; | 83 int64_t* ntp_time_ms) override; |
84 | 84 |
85 // AudioDeviceObserver | 85 // AudioDeviceObserver |
86 void OnErrorIsReported(ErrorCode error) override; | 86 void OnErrorIsReported(ErrorCode error) override; |
87 void OnWarningIsReported(WarningCode warning) override; | 87 void OnWarningIsReported(WarningCode warning) override; |
88 | 88 |
89 protected: | 89 protected: |
90 VoEBaseImpl(voe::SharedData* shared); | 90 VoEBaseImpl(voe::SharedData* shared); |
91 ~VoEBaseImpl() override; | 91 ~VoEBaseImpl() override; |
92 | 92 |
93 private: | 93 private: |
94 int32_t StartPlayout(); | 94 int32_t StartPlayout(); |
95 int32_t StopPlayout(); | 95 int32_t StopPlayout(); |
96 int32_t StartSend(); | 96 int32_t StartSend(); |
97 int32_t StopSend(); | 97 int32_t StopSend(); |
98 int32_t TerminateInternal(); | 98 int32_t TerminateInternal(); |
99 | 99 |
100 // Helper function to process the recorded data with AudioProcessing Module, | 100 // Helper function to process the recorded data with AudioProcessing Module, |
101 // demultiplex the data to specific voe channels, encode and send to the | 101 // demultiplex the data to specific voe channels, encode and send to the |
102 // network. When |number_of_VoE_channels| is 0, it will demultiplex the | 102 // network. When |number_of_VoE_channels| is 0, it will demultiplex the |
103 // data to all the existing VoE channels. | 103 // data to all the existing VoE channels. |
104 // It returns new AGC microphone volume or 0 if no volume changes | 104 // It returns new AGC microphone volume or 0 if no volume changes |
105 // should be done. | 105 // should be done. |
106 int ProcessRecordedDataWithAPM( | 106 int ProcessRecordedDataWithAPM( |
107 const int voe_channels[], int number_of_voe_channels, | 107 const int voe_channels[], size_t number_of_voe_channels, |
108 const void* audio_data, uint32_t sample_rate, uint8_t number_of_channels, | 108 const void* audio_data, uint32_t sample_rate, size_t number_of_channels, |
109 size_t number_of_frames, uint32_t audio_delay_milliseconds, | 109 size_t number_of_frames, uint32_t audio_delay_milliseconds, |
110 int32_t clock_drift, uint32_t volume, bool key_pressed); | 110 int32_t clock_drift, uint32_t volume, bool key_pressed); |
111 | 111 |
112 void GetPlayoutData(int sample_rate, int number_of_channels, | 112 void GetPlayoutData(int sample_rate, size_t number_of_channels, |
113 size_t number_of_frames, bool feed_data_to_apm, | 113 size_t number_of_frames, bool feed_data_to_apm, |
114 void* audio_data, int64_t* elapsed_time_ms, | 114 void* audio_data, int64_t* elapsed_time_ms, |
115 int64_t* ntp_time_ms); | 115 int64_t* ntp_time_ms); |
116 | 116 |
117 int32_t AddVoEVersion(char* str) const; | 117 int32_t AddVoEVersion(char* str) const; |
118 | 118 |
119 // Initialize channel by setting Engine Information then initializing | 119 // Initialize channel by setting Engine Information then initializing |
120 // channel. | 120 // channel. |
121 int InitializeChannel(voe::ChannelOwner* channel_owner); | 121 int InitializeChannel(voe::ChannelOwner* channel_owner); |
122 #ifdef WEBRTC_EXTERNAL_TRANSPORT | 122 #ifdef WEBRTC_EXTERNAL_TRANSPORT |
123 int32_t AddExternalTransportBuild(char* str) const; | 123 int32_t AddExternalTransportBuild(char* str) const; |
124 #endif | 124 #endif |
125 VoiceEngineObserver* voiceEngineObserverPtr_; | 125 VoiceEngineObserver* voiceEngineObserverPtr_; |
126 CriticalSectionWrapper& callbackCritSect_; | 126 CriticalSectionWrapper& callbackCritSect_; |
127 | 127 |
128 AudioFrame audioFrame_; | 128 AudioFrame audioFrame_; |
129 voe::SharedData* shared_; | 129 voe::SharedData* shared_; |
130 }; | 130 }; |
131 | 131 |
132 } // namespace webrtc | 132 } // namespace webrtc |
133 | 133 |
134 #endif // WEBRTC_VOICE_ENGINE_VOE_BASE_IMPL_H | 134 #endif // WEBRTC_VOICE_ENGINE_VOE_BASE_IMPL_H |
OLD | NEW |