summaryrefslogtreecommitdiffstats
path: root/plugins/audio_opensles/audio_opensles_device_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/audio_opensles/audio_opensles_device_impl.h')
-rwxr-xr-xplugins/audio_opensles/audio_opensles_device_impl.h26
1 files changed, 15 insertions, 11 deletions
diff --git a/plugins/audio_opensles/audio_opensles_device_impl.h b/plugins/audio_opensles/audio_opensles_device_impl.h
index 8168fe9..6f6ad60 100755
--- a/plugins/audio_opensles/audio_opensles_device_impl.h
+++ b/plugins/audio_opensles/audio_opensles_device_impl.h
@@ -1,17 +1,17 @@
/* Copyright (C) 2012 Doubango Telecom <http://www.doubango.org>
-*
+*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
-*
+*
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
-*
+*
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*/
@@ -24,14 +24,14 @@
class SLAudioDeviceCallbackImpl : public SLAudioDeviceCallback
{
public:
- SLAudioDeviceCallbackImpl();
- virtual ~SLAudioDeviceCallbackImpl();
+ SLAudioDeviceCallbackImpl();
+ virtual ~SLAudioDeviceCallbackImpl();
- virtual int32_t RecordedDataIsAvailable(const void* audioSamples,
+ virtual int32_t RecordedDataIsAvailable(const void* audioSamples,
const uint32_t nSamples,
const uint8_t nBytesPerSample,
const uint8_t nChannels,
- const uint32_t samplesPerSec);
+ const uint32_t samplesPerSec);
virtual int32_t NeedMorePlayData(const uint32_t nSamples,
const uint8_t nBytesPerSample,
@@ -40,12 +40,16 @@ public:
void* audioSamples,
uint32_t& nSamplesOut);
- inline void SetConsumer(const struct audio_consumer_opensles_s* pConsumer){ m_pConsumer = pConsumer; }
- inline void SetProducer(const struct audio_producer_opensles_s* pProducer){ m_pProducer = pProducer; }
+ inline void SetConsumer(const struct audio_consumer_opensles_s* pConsumer) {
+ m_pConsumer = pConsumer;
+ }
+ inline void SetProducer(const struct audio_producer_opensles_s* pProducer) {
+ m_pProducer = pProducer;
+ }
private:
- const struct audio_consumer_opensles_s* m_pConsumer; // mut be const and must not take reference
- const struct audio_producer_opensles_s* m_pProducer; // mut be const and must not take reference
+ const struct audio_consumer_opensles_s* m_pConsumer; // mut be const and must not take reference
+ const struct audio_producer_opensles_s* m_pProducer; // mut be const and must not take reference
};
#endif /* _DOUBANGO_AUDIO_OPENSLES_SLDEVICE_IMPL_H */
OpenPOWER on IntegriCloud