blob: a841547a2e47021dc9c031e732741fd12e4794ec [file] [log] [blame]
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +00001/*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_VOICE_ENGINE_SHARED_DATA_H
12#define WEBRTC_VOICE_ENGINE_SHARED_DATA_H
13
andrew@webrtc.org6316d172013-03-05 01:12:49 +000014#include "webrtc/modules/audio_device/include/audio_device.h"
15#include "webrtc/modules/audio_processing/include/audio_processing.h"
16#include "webrtc/modules/utility/interface/process_thread.h"
17#include "webrtc/system_wrappers/interface/scoped_ptr.h"
18#include "webrtc/voice_engine/channel_manager.h"
19#include "webrtc/voice_engine/statistics.h"
20#include "webrtc/voice_engine/voice_engine_defines.h"
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000021
22class ProcessThread;
23
24namespace webrtc {
25class CriticalSectionWrapper;
26
27namespace voe {
28
29class TransmitMixer;
30class OutputMixer;
31
32class SharedData
33{
34public:
35 // Public accessors.
pbos@webrtc.org1d46b922013-04-09 10:09:10 +000036 uint32_t instance_id() const { return _instanceId; }
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000037 Statistics& statistics() { return _engineStatistics; }
38 ChannelManager& channel_manager() { return _channelManager; }
39 AudioDeviceModule* audio_device() { return _audioDevicePtr; }
40 void set_audio_device(AudioDeviceModule* audio_device);
andrew@webrtc.org6316d172013-03-05 01:12:49 +000041 AudioProcessing* audio_processing() { return audioproc_.get(); }
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000042 void set_audio_processing(AudioProcessing* audio_processing);
43 TransmitMixer* transmit_mixer() { return _transmitMixerPtr; }
44 OutputMixer* output_mixer() { return _outputMixerPtr; }
45 CriticalSectionWrapper* crit_sec() { return _apiCritPtr; }
46 bool ext_recording() const { return _externalRecording; }
47 void set_ext_recording(bool value) { _externalRecording = value; }
48 bool ext_playout() const { return _externalPlayout; }
49 void set_ext_playout(bool value) { _externalPlayout = value; }
50 ProcessThread* process_thread() { return _moduleProcessThreadPtr; }
51 AudioDeviceModule::AudioLayer audio_device_layer() const {
52 return _audioDeviceLayer;
53 }
54 void set_audio_device_layer(AudioDeviceModule::AudioLayer layer) {
55 _audioDeviceLayer = layer;
56 }
57
pbos@webrtc.org1d46b922013-04-09 10:09:10 +000058 uint16_t NumOfSendingChannels();
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000059
60 // Convenience methods for calling statistics().SetLastError().
pbos@webrtc.org07a1c112013-05-14 08:31:39 +000061 void SetLastError(int32_t error) const;
62 void SetLastError(int32_t error, TraceLevel level) const;
63 void SetLastError(int32_t error, TraceLevel level,
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000064 const char* msg) const;
65
66protected:
pbos@webrtc.org1d46b922013-04-09 10:09:10 +000067 const uint32_t _instanceId;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000068 CriticalSectionWrapper* _apiCritPtr;
69 ChannelManager _channelManager;
70 Statistics _engineStatistics;
71 AudioDeviceModule* _audioDevicePtr;
72 OutputMixer* _outputMixerPtr;
73 TransmitMixer* _transmitMixerPtr;
andrew@webrtc.org6316d172013-03-05 01:12:49 +000074 scoped_ptr<AudioProcessing> audioproc_;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000075 ProcessThread* _moduleProcessThreadPtr;
76
77 bool _externalRecording;
78 bool _externalPlayout;
79
80 AudioDeviceModule::AudioLayer _audioDeviceLayer;
81
82 SharedData();
83 virtual ~SharedData();
84};
85
pbos@webrtc.org5ab7b932013-07-03 15:12:26 +000086} // namespace voe
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000087
pbos@webrtc.org5ab7b932013-07-03 15:12:26 +000088} // namespace webrtc
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000089#endif // WEBRTC_VOICE_ENGINE_SHARED_DATA_H