AudioFlinger.h revision 59bd0da8373af0e5159b799495fda51e03120ea4
165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian/* //device/include/server/AudioFlinger/AudioFlinger.h
265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian**
365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian** Copyright 2007, The Android Open Source Project
465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian**
565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian** Licensed under the Apache License, Version 2.0 (the "License");
665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian** you may not use this file except in compliance with the License.
765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian** You may obtain a copy of the License at
865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian**
965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian**     http://www.apache.org/licenses/LICENSE-2.0
1065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian**
1165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian** Unless required by applicable law or agreed to in writing, software
1265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian** distributed under the License is distributed on an "AS IS" BASIS,
1365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian** See the License for the specific language governing permissions and
1565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian** limitations under the License.
1665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian*/
1765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
1865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#ifndef ANDROID_AUDIO_FLINGER_H
1965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#define ANDROID_AUDIO_FLINGER_H
2065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
2165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <stdint.h>
2265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <sys/types.h>
2365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <limits.h>
2465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
2565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <media/IAudioFlinger.h>
2665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <media/IAudioFlingerClient.h>
2765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <media/IAudioTrack.h>
2865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <media/IAudioRecord.h>
2965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <media/AudioTrack.h>
3065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
3165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <utils/Atomic.h>
3265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <utils/Errors.h>
3365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <utils/threads.h>
3465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <utils/SortedVector.h>
35799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin#include <utils/TypeHelpers.h>
3665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include <utils/Vector.h>
3765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
385462fc9a38fa8c9dff434cd53fa5fb1782ae3042Mathias Agopian#include <binder/BinderService.h>
395462fc9a38fa8c9dff434cd53fa5fb1782ae3042Mathias Agopian#include <binder/MemoryDealer.h>
405462fc9a38fa8c9dff434cd53fa5fb1782ae3042Mathias Agopian
4164760240f931714858a59c1579f07264d7182ba2Dima Zavin#include <system/audio.h>
427394a4f358fa9908a9f0a7c954b65c399f4268e6Dima Zavin#include <hardware/audio.h>
4365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
4465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#include "AudioBufferProvider.h"
4565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
46feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent#include <powermanager/IPowerManager.h>
47feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent
4865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopiannamespace android {
4965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
5065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopianclass audio_track_cblk_t;
5165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopianclass effect_param_cblk_t;
5265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopianclass AudioMixer;
5365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopianclass AudioBuffer;
5465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopianclass AudioResampler;
5565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
5665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian// ----------------------------------------------------------------------------
5765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
5865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#define LIKELY( exp )       (__builtin_expect( (exp) != 0, true  ))
5965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#define UNLIKELY( exp )     (__builtin_expect( (exp) != 0, false ))
6065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
6165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
6265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian// ----------------------------------------------------------------------------
6365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
6465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopianstatic const nsecs_t kStandbyTimeInNsecs = seconds(3);
6565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
665462fc9a38fa8c9dff434cd53fa5fb1782ae3042Mathias Agopianclass AudioFlinger :
675462fc9a38fa8c9dff434cd53fa5fb1782ae3042Mathias Agopian    public BinderService<AudioFlinger>,
685462fc9a38fa8c9dff434cd53fa5fb1782ae3042Mathias Agopian    public BnAudioFlinger
6965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian{
705462fc9a38fa8c9dff434cd53fa5fb1782ae3042Mathias Agopian    friend class BinderService<AudioFlinger>;
7165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopianpublic:
725462fc9a38fa8c9dff434cd53fa5fb1782ae3042Mathias Agopian    static char const* getServiceName() { return "media.audio_flinger"; }
7365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
7465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     status_t    dump(int fd, const Vector<String16>& args);
7565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
7665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // IAudioFlinger interface
7765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual sp<IAudioTrack> createTrack(
7865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                pid_t pid,
7965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                int streamType,
8065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                uint32_t sampleRate,
810d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                uint32_t format,
820d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                uint32_t channelMask,
8365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                int frameCount,
8465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                uint32_t flags,
8565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                const sp<IMemory>& sharedBuffer,
8665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                int output,
8765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                int *sessionId,
8865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                status_t *status);
8965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
9065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     uint32_t    sampleRate(int output) const;
9165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     int         channelCount(int output) const;
920d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi    virtual     uint32_t    format(int output) const;
9365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     size_t      frameCount(int output) const;
9465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     uint32_t    latency(int output) const;
9565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
9665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     status_t    setMasterVolume(float value);
9765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     status_t    setMasterMute(bool muted);
9865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
9965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     float       masterVolume() const;
10065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     bool        masterMute() const;
10165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
10265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     status_t    setStreamVolume(int stream, float value, int output);
10365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     status_t    setStreamMute(int stream, bool muted);
10465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
10565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     float       streamVolume(int stream, int output) const;
10665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     bool        streamMute(int stream) const;
10765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
10865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     status_t    setMode(int mode);
10965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
11065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     status_t    setMicMute(bool state);
11165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     bool        getMicMute() const;
11265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
11365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     status_t    setParameters(int ioHandle, const String8& keyValuePairs);
11465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     String8     getParameters(int ioHandle, const String8& keys);
11565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
11665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     void        registerClient(const sp<IAudioFlingerClient>& client);
11765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
11865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     size_t      getInputBufferSize(uint32_t sampleRate, int format, int channelCount);
11965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     unsigned int  getInputFramesLost(int ioHandle);
12065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
12165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual int openOutput(uint32_t *pDevices,
12265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                    uint32_t *pSamplingRate,
12365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                    uint32_t *pFormat,
12465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                    uint32_t *pChannels,
12565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                    uint32_t *pLatencyMs,
12665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                    uint32_t flags);
12765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
12865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual int openDuplicateOutput(int output1, int output2);
12965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
13065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual status_t closeOutput(int output);
13165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
13265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual status_t suspendOutput(int output);
13365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
13465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual status_t restoreOutput(int output);
13565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
13665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual int openInput(uint32_t *pDevices,
13765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                            uint32_t *pSamplingRate,
13865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                            uint32_t *pFormat,
13965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                            uint32_t *pChannels,
14065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                            uint32_t acoustics);
14165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
14265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual status_t closeInput(int input);
14365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
14465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual status_t setStreamOutput(uint32_t stream, int output);
14565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
14665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual status_t setVoiceVolume(float volume);
14765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
14865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames, int output);
14965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
15065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual int newAudioSessionId();
15165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
15265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual status_t queryNumberEffects(uint32_t *numEffects);
15365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
15465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual status_t queryEffect(uint32_t index, effect_descriptor_t *descriptor);
15565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
15665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual status_t getEffectDescriptor(effect_uuid_t *pUuid, effect_descriptor_t *descriptor);
15765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
15865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual sp<IEffect> createEffect(pid_t pid,
15965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        effect_descriptor_t *pDesc,
16065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        const sp<IEffectClient>& effectClient,
16165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        int32_t priority,
1627c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        int io,
16365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        int sessionId,
16465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        status_t *status,
16565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        int *id,
16665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        int *enabled);
16765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
16859255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent    virtual status_t moveEffects(int sessionId, int srcOutput, int dstOutput);
16965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
17065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    enum hardware_call_state {
17165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_IDLE = 0,
17265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_INIT,
17365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_OUTPUT_OPEN,
17465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_OUTPUT_CLOSE,
17565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_INPUT_OPEN,
17665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_INPUT_CLOSE,
17765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_STANDBY,
17865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_SET_MASTER_VOLUME,
17965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_GET_ROUTING,
18065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_SET_ROUTING,
18165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_GET_MODE,
18265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_SET_MODE,
18365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_GET_MIC_MUTE,
18465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_HW_SET_MIC_MUTE,
18565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_SET_VOICE_VOLUME,
18665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AUDIO_SET_PARAMETER,
18765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
18865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
18965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // record interface
19065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual sp<IAudioRecord> openRecord(
19165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                pid_t pid,
19265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                int input,
19365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                uint32_t sampleRate,
1940d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                uint32_t format,
1950d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                uint32_t channelMask,
19665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                int frameCount,
19765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                uint32_t flags,
19865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                int *sessionId,
19965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                status_t *status);
20065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
20165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual     status_t    onTransact(
20265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                uint32_t code,
20365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                const Parcel& data,
20465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                Parcel* reply,
20565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                uint32_t flags);
20665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
20765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                uint32_t    getMode() { return mMode; }
20865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
20959bd0da8373af0e5159b799495fda51e03120ea4Eric Laurent                bool        btNrec() { return mBtNrec; }
21059bd0da8373af0e5159b799495fda51e03120ea4Eric Laurent
21165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopianprivate:
21265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                            AudioFlinger();
21365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    virtual                 ~AudioFlinger();
21465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
2155a61d2f277af3098fc10b2881babca16391362daDima Zavin    status_t                initCheck() const;
2165a61d2f277af3098fc10b2881babca16391362daDima Zavin    virtual     void        onFirstRef();
217799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin    audio_hw_device_t*      findSuitableHwDev_l(uint32_t devices);
21865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
21965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // Internal dump utilites.
22065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    status_t dumpPermissionDenial(int fd, const Vector<String16>& args);
22165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    status_t dumpClients(int fd, const Vector<String16>& args);
22265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    status_t dumpInternals(int fd, const Vector<String16>& args);
22365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
22465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // --- Client ---
22565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class Client : public RefBase {
22665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
22765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                            Client(const sp<AudioFlinger>& audioFlinger, pid_t pid);
22865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual             ~Client();
22965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        const sp<MemoryDealer>&     heap() const;
23065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        pid_t               pid() const { return mPid; }
23165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        sp<AudioFlinger>    audioFlinger() { return mAudioFlinger; }
23265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
23365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    private:
23465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                            Client(const Client&);
23565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                            Client& operator = (const Client&);
23665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        sp<AudioFlinger>    mAudioFlinger;
23765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        sp<MemoryDealer>    mMemoryDealer;
23865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        pid_t               mPid;
23965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
24065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
24165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // --- Notification Client ---
24265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class NotificationClient : public IBinder::DeathRecipient {
24365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
24465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                            NotificationClient(const sp<AudioFlinger>& audioFlinger,
24565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                                const sp<IAudioFlingerClient>& client,
24665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                                pid_t pid);
24765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual             ~NotificationClient();
24865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
24965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                sp<IAudioFlingerClient>    client() { return mClient; }
25065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
25165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                // IBinder::DeathRecipient
25265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                virtual     void        binderDied(const wp<IBinder>& who);
25365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
25465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    private:
25565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                            NotificationClient(const NotificationClient&);
25665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                            NotificationClient& operator = (const NotificationClient&);
25765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
25865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        sp<AudioFlinger>        mAudioFlinger;
25965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        pid_t                   mPid;
26065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        sp<IAudioFlingerClient> mClient;
26165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
26265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
26365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class TrackHandle;
26465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class RecordHandle;
26565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class RecordThread;
26665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class PlaybackThread;
26765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class MixerThread;
26865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class DirectOutputThread;
26965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class DuplicatingThread;
27065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class Track;
27165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class RecordTrack;
27265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class EffectModule;
27365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class EffectHandle;
27465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class EffectChain;
275799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin    struct AudioStreamOut;
276799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin    struct AudioStreamIn;
27765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
27865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class ThreadBase : public Thread {
27965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
2807c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        ThreadBase (const sp<AudioFlinger>& audioFlinger, int id, uint32_t device);
28165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual             ~ThreadBase();
28265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
2837c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent
2847c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        enum type {
2857c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent            MIXER,              // Thread class is MixerThread
2867c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent            DIRECT,             // Thread class is DirectOutputThread
2877c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent            DUPLICATING,        // Thread class is DuplicatingThread
2887c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent            RECORD              // Thread class is RecordThread
2897c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        };
2907c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent
29165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t dumpBase(int fd, const Vector<String16>& args);
2921d2bff0e588afe183a1baaae731519b4e957bbdbEric Laurent        status_t dumpEffectChains(int fd, const Vector<String16>& args);
29365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
294feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent        void clearPowerManager();
295feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent
29665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // base for record and playback
29765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        class TrackBase : public AudioBufferProvider, public RefBase {
29865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
29965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        public:
30065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            enum track_state {
30165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                IDLE,
30265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                TERMINATED,
30365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                STOPPED,
30465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                RESUMING,
30565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                ACTIVE,
30665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                PAUSING,
30765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                PAUSED
30865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            };
30965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
31065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            enum track_flags {
31165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                STEPSERVER_FAILED = 0x01, //  StepServer could not acquire cblk->lock mutex
31265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                SYSTEM_FLAGS_MASK = 0x0000ffffUL,
31365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                // The upper 16 bits are used for track-specific flags.
31465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            };
31565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
31665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                TrackBase(const wp<ThreadBase>& thread,
31765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        const sp<Client>& client,
31865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        uint32_t sampleRate,
3190d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                        uint32_t format,
3200d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                        uint32_t channelMask,
32165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        int frameCount,
32265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        uint32_t flags,
32365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        const sp<IMemory>& sharedBuffer,
32465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        int sessionId);
32565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                ~TrackBase();
32665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
32765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            virtual status_t    start() = 0;
32865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            virtual void        stop() = 0;
32965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    sp<IMemory> getCblk() const;
33065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    audio_track_cblk_t* cblk() const { return mCblk; }
33165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    int         sessionId() { return mSessionId; }
33265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
33365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        protected:
33465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class ThreadBase;
33565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class RecordHandle;
33665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class PlaybackThread;
33765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class RecordThread;
33865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class MixerThread;
33965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class DirectOutputThread;
34065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
34165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                TrackBase(const TrackBase&);
34265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                TrackBase& operator = (const TrackBase&);
34365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
34465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer) = 0;
34565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
34665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
3470d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi            uint32_t format() const {
34865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                return mFormat;
34965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            }
35065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
35165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int channelCount() const ;
35265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
3530d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi            uint32_t channelMask() const;
3540d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi
35565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int sampleRate() const;
35665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
35765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            void* getBuffer(uint32_t offset, uint32_t frames) const;
35865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
35965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            bool isStopped() const {
36065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                return mState == STOPPED;
36165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            }
36265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
36365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            bool isTerminated() const {
36465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                return mState == TERMINATED;
36565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            }
36665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
36765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            bool step();
36865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            void reset();
36965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
37065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            wp<ThreadBase>      mThread;
37165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            sp<Client>          mClient;
37265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            sp<IMemory>         mCblkMemory;
37365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            audio_track_cblk_t* mCblk;
37465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            void*               mBuffer;
37565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            void*               mBufferEnd;
37665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            uint32_t            mFrameCount;
37765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            // we don't really need a lock for these
37865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int                 mState;
37965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int                 mClientTid;
3800d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi            uint32_t            mFormat;
38165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            uint32_t            mFlags;
38265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int                 mSessionId;
3830d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi            uint8_t             mChannelCount;
3840d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi            uint32_t            mChannelMask;
38565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        };
38665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
38765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        class ConfigEvent {
38865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        public:
38965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            ConfigEvent() : mEvent(0), mParam(0) {}
39065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
39165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int mEvent;
39265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int mParam;
39365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        };
39465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
395feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent        class PMDeathRecipient : public IBinder::DeathRecipient {
396feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent        public:
397feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent                        PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {}
398feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent            virtual     ~PMDeathRecipient() {}
399feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent
400feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent            // IBinder::DeathRecipient
401feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent            virtual     void        binderDied(const wp<IBinder>& who);
402feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent
403feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent        private:
404feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent                        PMDeathRecipient(const PMDeathRecipient&);
405feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent                        PMDeathRecipient& operator = (const PMDeathRecipient&);
406feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent
407feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent            wp<ThreadBase> mThread;
408feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent        };
409feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent
4107c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        virtual     status_t    initCheck() const = 0;
4117c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    int         type() const { return mType; }
41265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    uint32_t    sampleRate() const;
41365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    int         channelCount() const;
4140d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                    uint32_t    format() const;
41565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    size_t      frameCount() const;
41665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        wakeUp()    { mWaitWorkCV.broadcast(); }
41765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        exit();
41865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     bool        checkForNewParameters_l() = 0;
41965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     status_t    setParameters(const String8& keyValuePairs);
42065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     String8     getParameters(const String8& keys) = 0;
42165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     void        audioConfigChanged_l(int event, int param = 0) = 0;
42265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        sendConfigEvent(int event, int param = 0);
42365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        sendConfigEvent_l(int event, int param = 0);
42465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        processConfigEvents();
42565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    int         id() const { return mId;}
42665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    bool        standby() { return mStandby; }
4277c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    uint32_t    device() { return mDevice; }
4287c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        virtual     audio_stream_t* stream() = 0;
4297c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent
4307c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    sp<EffectHandle> createEffect_l(
4317c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                                        const sp<AudioFlinger::Client>& client,
4327c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                                        const sp<IEffectClient>& effectClient,
4337c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                                        int32_t priority,
4347c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                                        int sessionId,
4357c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                                        effect_descriptor_t *desc,
4367c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                                        int *enabled,
4377c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                                        status_t *status);
4387c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    void disconnectEffect(const sp< EffectModule>& effect,
4397c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                                          const wp<EffectHandle>& handle);
4407c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent
4417c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // return values for hasAudioSession (bit field)
4427c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    enum effect_state {
4437c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        EFFECT_SESSION = 0x1,   // the audio session corresponds to at least one
4447c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                                                // effect
4457c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        TRACK_SESSION = 0x2     // the audio session corresponds to at least one
4467c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                                                // track
4477c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    };
4487c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent
4497c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // get effect chain corresponding to session Id.
4507c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    sp<EffectChain> getEffectChain(int sessionId);
4517c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // same as getEffectChain() but must be called with ThreadBase mutex locked
4527c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    sp<EffectChain> getEffectChain_l(int sessionId);
4537c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // add an effect chain to the chain list (mEffectChains)
4547c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        virtual     status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
4557c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // remove an effect chain from the chain list (mEffectChains)
4567c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        virtual     size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
4577c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // lock mall effect chains Mutexes. Must be called before releasing the
4587c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // ThreadBase mutex before processing the mixer and effects. This guarantees the
4597c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // integrity of the chains during the process.
4607c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    void lockEffectChains_l(Vector<sp <EffectChain> >& effectChains);
4617c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // unlock effect chains after process
4627c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    void unlockEffectChains(Vector<sp <EffectChain> >& effectChains);
4637c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // set audio mode to all effect chains
4647c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    void setMode(uint32_t mode);
4657c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // get effect module with corresponding ID on specified audio session
4667c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
4677c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // add and effect module. Also creates the effect chain is none exists for
4687c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // the effects audio session
4697c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    status_t addEffect_l(const sp< EffectModule>& effect);
4707c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // remove and effect module. Also removes the effect chain is this was the last
4717c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // effect
4727c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    void removeEffect_l(const sp< EffectModule>& effect);
4737c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // detach all tracks connected to an auxiliary effect
4747c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        virtual     void detachAuxEffect_l(int effectId) {}
4757c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // returns either EFFECT_SESSION if effects on this audio session exist in one
4767c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // chain, or TRACK_SESSION if tracks on this audio session exist, or both
4777c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    virtual uint32_t hasAudioSession(int sessionId) = 0;
4787c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // the value returned by default implementation is not important as the
4797c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    // strategy is only meaningful for PlaybackThread which implements this method
4807c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    virtual uint32_t getStrategyForSession_l(int sessionId) { return 0; }
48165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
48259255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    // suspend or restore effect according to the type of effect passed. a NULL
48359255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    // type pointer means suspend all effects in the session
48459255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    void setEffectSuspended(const effect_uuid_t *type,
48559255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                                            bool suspend,
48659255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                                            int sessionId = AUDIO_SESSION_OUTPUT_MIX);
48759255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    // check if some effects must be suspended/restored when an effect is enabled
48859255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    // or disabled
48959255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        virtual     void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
49059255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                                                     bool enabled,
49159255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                                                     int sessionId = AUDIO_SESSION_OUTPUT_MIX);
49259255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent
49365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        mutable     Mutex                   mLock;
49465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
49565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    protected:
49665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
49759255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    // entry describing an effect being suspended in mSuspendedSessions keyed vector
49859255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    class SuspendedSessionDesc : public RefBase {
49959255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    public:
50059255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                        SuspendedSessionDesc() : mRefCount(0) {}
50159255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent
50259255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                        int mRefCount;          // number of active suspend requests
50359255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                        effect_uuid_t mType;    // effect type UUID
50459255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    };
50559255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent
506feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent                    void        acquireWakeLock();
507feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent                    void        acquireWakeLock_l();
508feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent                    void        releaseWakeLock();
509feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent                    void        releaseWakeLock_l();
51059255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    void setEffectSuspended_l(const effect_uuid_t *type,
51159255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                                              bool suspend,
51259255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                                              int sessionId = AUDIO_SESSION_OUTPUT_MIX);
51359255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    // updated mSuspendedSessions when an effect suspended or restored
51459255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    void        updateSuspendedSessions_l(const effect_uuid_t *type,
51559255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                                                          bool suspend,
51659255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                                                          int sessionId);
51759255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    // check if some effects must be suspended when an effect chain is added
51859255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
51959255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    // updated mSuspendedSessions when an effect chain is removed
52059255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    void updateSuspendedSessionsOnRemoveEffectChain_l(const sp<EffectChain>& chain);
521feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent
52265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class Track;
52365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class TrackBase;
52465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class PlaybackThread;
52565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class MixerThread;
52665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class DirectOutputThread;
52765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class DuplicatingThread;
52865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class RecordThread;
52965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class RecordTrack;
53065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
5317c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    int                     mType;
53265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    Condition               mWaitWorkCV;
53365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    sp<AudioFlinger>        mAudioFlinger;
53465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    uint32_t                mSampleRate;
53565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    size_t                  mFrameCount;
5360d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                    uint32_t                mChannelMask;
53765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    uint16_t                mChannelCount;
53865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    uint16_t                mFrameSize;
5390d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                    uint32_t                mFormat;
54065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    Condition               mParamCond;
54165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    Vector<String8>         mNewParameters;
54265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    status_t                mParamStatus;
54365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    Vector<ConfigEvent *>   mConfigEvents;
54465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    bool                    mStandby;
54565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    int                     mId;
54665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    bool                    mExiting;
5477c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    Vector< sp<EffectChain> > mEffectChains;
5487c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    uint32_t                mDevice;    // output device for PlaybackThread
5497c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                                                        // input + output devices for RecordThread
550feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent                    static const int        kNameLength = 32;
551feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent                    char                    mName[kNameLength];
552feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent                    sp<IPowerManager>       mPowerManager;
553feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent                    sp<IBinder>             mWakeLockToken;
554feb0db689c17dced50afaee54c659f1676e2d505Eric Laurent                    sp<PMDeathRecipient>    mDeathRecipient;
55559255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    // list of suspended effects per session and per type. The first vector is
55659255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    // keyed by session ID, the second by type UUID timeLow field
55759255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                    KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > >  mSuspendedSessions;
55865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
55965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
56065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // --- PlaybackThread ---
56165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class PlaybackThread : public ThreadBase {
56265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
56365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
56465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        enum mixer_state {
56565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            MIXER_IDLE,
56665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            MIXER_TRACKS_ENABLED,
56765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            MIXER_TRACKS_READY
56865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        };
56965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
57065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // playback track
57165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        class Track : public TrackBase {
57265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        public:
57365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                Track(  const wp<ThreadBase>& thread,
57465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        const sp<Client>& client,
57565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        int streamType,
57665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        uint32_t sampleRate,
5770d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                        uint32_t format,
5780d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                        uint32_t channelMask,
57965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        int frameCount,
58065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        const sp<IMemory>& sharedBuffer,
58165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        int sessionId);
58265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                ~Track();
58365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
58465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        dump(char* buffer, size_t size);
58565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            virtual status_t    start();
58665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            virtual void        stop();
58765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        pause();
58865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
58965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        flush();
59065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        destroy();
59165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        mute(bool);
59265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        setVolume(float left, float right);
59365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    int name() const {
59465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        return mName;
59565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    }
59665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
59765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    int type() const {
59865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        return mStreamType;
59965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    }
60065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    status_t    attachAuxEffect(int EffectId);
60165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        setAuxBuffer(int EffectId, int32_t *buffer);
60265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    int32_t     *auxBuffer() { return mAuxBuffer; }
60365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
60465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    int16_t     *mainBuffer() { return mMainBuffer; }
60565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    int         auxEffectId() { return mAuxEffectId; }
60665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
60765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
60865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        protected:
60965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class ThreadBase;
61065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class AudioFlinger;
61165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class TrackHandle;
61265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class PlaybackThread;
61365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class MixerThread;
61465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class DirectOutputThread;
61565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
61665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                Track(const Track&);
61765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                Track& operator = (const Track&);
61865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
61965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer);
62065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            bool isMuted() { return mMute; }
62165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            bool isPausing() const {
62265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                return mState == PAUSING;
62365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            }
62465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            bool isPaused() const {
62565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                return mState == PAUSED;
62665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            }
62765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            bool isReady() const;
62865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            void setPaused() { mState = PAUSED; }
62965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            void reset();
63065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
63165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            bool isOutputTrack() const {
632fce7a473248381cc83a01855f92581077d3c9ee2Dima Zavin                return (mStreamType == AUDIO_STREAM_CNT);
63365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            }
63465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
63565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            // we don't really need a lock for these
63665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            float               mVolume[2];
63765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            volatile bool       mMute;
63865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            // FILLED state is used for suppressing volume ramp at begin of playing
63965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            enum {FS_FILLING, FS_FILLED, FS_ACTIVE};
64065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            mutable uint8_t     mFillingUpStatus;
64165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int8_t              mRetryCount;
64265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            sp<IMemory>         mSharedBuffer;
64365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            bool                mResetDone;
64465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int                 mStreamType;
64565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int                 mName;
64665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int16_t             *mMainBuffer;
64765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int32_t             *mAuxBuffer;
64865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            int                 mAuxEffectId;
6498f45bd725549436eeacd12ee69349e2332ed8da5Eric Laurent            bool                mHasVolumeController;
65065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        };  // end of Track
65165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
65265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
65365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // playback track
65465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        class OutputTrack : public Track {
65565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        public:
65665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
65765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            class Buffer: public AudioBufferProvider::Buffer {
65865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            public:
65965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                int16_t *mBuffer;
66065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            };
66165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
66265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                OutputTrack(  const wp<ThreadBase>& thread,
66365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        DuplicatingThread *sourceThread,
66465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        uint32_t sampleRate,
6650d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                        uint32_t format,
6660d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                        uint32_t channelMask,
66765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        int frameCount);
66865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                ~OutputTrack();
66965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
67065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            virtual status_t    start();
67165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            virtual void        stop();
67265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    bool        write(int16_t* data, uint32_t frames);
67365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    bool        bufferQueueEmpty() { return (mBufferQueue.size() == 0) ? true : false; }
67465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    bool        isActive() { return mActive; }
67565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            wp<ThreadBase>&     thread()  { return mThread; }
67665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
67765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        private:
67865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
67965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            status_t            obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs);
68065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            void                clearBufferQueue();
68165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
68265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            // Maximum number of pending buffers allocated by OutputTrack::write()
68365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            static const uint8_t kMaxOverFlowBuffers = 10;
68465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
68565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            Vector < Buffer* >          mBufferQueue;
68665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            AudioBufferProvider::Buffer mOutBuffer;
68765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            bool                        mActive;
68865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            DuplicatingThread*          mSourceThread;
68965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        };  // end of OutputTrack
69065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
691799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin        PlaybackThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, int id, uint32_t device);
69265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual             ~PlaybackThread();
69365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
69465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     status_t    dump(int fd, const Vector<String16>& args);
69565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
69665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // Thread virtuals
69765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     status_t    readyToRun();
69865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     void        onFirstRef();
69965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
7007c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        virtual     status_t    initCheck() const { return (mOutput == 0) ? NO_INIT : NO_ERROR; }
7017c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent
70265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     uint32_t    latency() const;
70365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
70465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     status_t    setMasterVolume(float value);
70565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     status_t    setMasterMute(bool muted);
70665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
70765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     float       masterVolume() const;
70865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     bool        masterMute() const;
70965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
71065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     status_t    setStreamVolume(int stream, float value);
71165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     status_t    setStreamMute(int stream, bool muted);
71265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
71365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     float       streamVolume(int stream) const;
71465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     bool        streamMute(int stream) const;
71565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
71665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    sp<Track>   createTrack_l(
71765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                    const sp<AudioFlinger::Client>& client,
71865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                    int streamType,
71965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                    uint32_t sampleRate,
7200d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                    uint32_t format,
7210d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                    uint32_t channelMask,
72265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                    int frameCount,
72365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                    const sp<IMemory>& sharedBuffer,
72465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                    int sessionId,
72565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                    status_t *status);
72665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
727799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin                    AudioStreamOut* getOutput() { return mOutput; }
7287c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    virtual audio_stream_t* stream() { return &mOutput->stream->common; }
72965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
73065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        suspend() { mSuspended++; }
73165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        restore() { if (mSuspended) mSuspended--; }
73265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    bool        isSuspended() { return (mSuspended != 0); }
73365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     String8     getParameters(const String8& keys);
73465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     void        audioConfigChanged_l(int event, int param = 0);
73565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     status_t    getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames);
73665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    int16_t     *mixBuffer() { return mMixBuffer; };
73765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
7387c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        virtual     void detachAuxEffect_l(int effectId);
739de070137f11d346fba77605bd76a44c040a618fcEric Laurent                    status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
740de070137f11d346fba77605bd76a44c040a618fcEric Laurent                            int EffectId);
741de070137f11d346fba77605bd76a44c040a618fcEric Laurent                    status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
742de070137f11d346fba77605bd76a44c040a618fcEric Laurent                            int EffectId);
74365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
7447c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
7457c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
7467c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    virtual uint32_t hasAudioSession(int sessionId);
7477c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                    virtual uint32_t getStrategyForSession_l(int sessionId);
748de070137f11d346fba77605bd76a44c040a618fcEric Laurent
74965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        struct  stream_type_t {
75065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            stream_type_t()
75165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                :   volume(1.0f),
75265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    mute(false)
75365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            {
75465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            }
75565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            float       volume;
75665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            bool        mute;
75765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        };
75865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
75965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    protected:
76065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int16_t*                        mMixBuffer;
76165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int                             mSuspended;
76265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int                             mBytesWritten;
76365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        bool                            mMasterMute;
76465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        SortedVector< wp<Track> >       mActiveTracks;
76565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
76665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual int             getTrackName_l() = 0;
76765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual void            deleteTrackName_l(int name) = 0;
76865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual uint32_t        activeSleepTimeUs() = 0;
76965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual uint32_t        idleSleepTimeUs() = 0;
77025cbe0ecd6df8be7e40537c5d85c82f105038479Eric Laurent        virtual uint32_t        suspendSleepTimeUs() = 0;
77165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
77265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    private:
77365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
77465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class AudioFlinger;
77565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class OutputTrack;
77665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class Track;
77765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class TrackBase;
77865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class MixerThread;
77965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class DirectOutputThread;
78065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        friend class DuplicatingThread;
78165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
78265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        PlaybackThread(const Client&);
78365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        PlaybackThread& operator = (const PlaybackThread&);
78465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
78565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t    addTrack_l(const sp<Track>& track);
78665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void        destroyTrack_l(const sp<Track>& track);
787b469b9490b3cd9e0f0466d9b9ab228f6c793b82eEric Laurent        void        removeTrack_l(const sp<Track>& track);
78865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
78965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void        readOutputParameters();
79065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
79165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual status_t    dumpInternals(int fd, const Vector<String16>& args);
79265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t    dumpTracks(int fd, const Vector<String16>& args);
79365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
79465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        SortedVector< sp<Track> >       mTracks;
79565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // mStreamTypes[] uses 1 additionnal stream type internally for the OutputTrack used by DuplicatingThread
796fce7a473248381cc83a01855f92581077d3c9ee2Dima Zavin        stream_type_t                   mStreamTypes[AUDIO_STREAM_CNT + 1];
797799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin        AudioStreamOut*                 mOutput;
79865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        float                           mMasterVolume;
79965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        nsecs_t                         mLastWriteTime;
80065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int                             mNumWrites;
80165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int                             mNumDelayedWrites;
80265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        bool                            mInWrite;
80365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
80465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
80565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class MixerThread : public PlaybackThread {
80665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
807de070137f11d346fba77605bd76a44c040a618fcEric Laurent        MixerThread (const sp<AudioFlinger>& audioFlinger,
808799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin                     AudioStreamOut* output,
809de070137f11d346fba77605bd76a44c040a618fcEric Laurent                     int id,
810de070137f11d346fba77605bd76a44c040a618fcEric Laurent                     uint32_t device);
81165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual             ~MixerThread();
81265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
81365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // Thread virtuals
81465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     bool        threadLoop();
81565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
81665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        invalidateTracks(int streamType);
81765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     bool        checkForNewParameters_l();
81865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     status_t    dumpInternals(int fd, const Vector<String16>& args);
81965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
82065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    protected:
821de070137f11d346fba77605bd76a44c040a618fcEric Laurent                    uint32_t    prepareTracks_l(const SortedVector< wp<Track> >& activeTracks,
822de070137f11d346fba77605bd76a44c040a618fcEric Laurent                                                Vector< sp<Track> > *tracksToRemove);
82365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     int         getTrackName_l();
82465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     void        deleteTrackName_l(int name);
82565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     uint32_t    activeSleepTimeUs();
82665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     uint32_t    idleSleepTimeUs();
82725cbe0ecd6df8be7e40537c5d85c82f105038479Eric Laurent        virtual     uint32_t    suspendSleepTimeUs();
82865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
82965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        AudioMixer*                     mAudioMixer;
83065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
83165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
83265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class DirectOutputThread : public PlaybackThread {
83365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
83465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
835799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin        DirectOutputThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, int id, uint32_t device);
83665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        ~DirectOutputThread();
83765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
83865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // Thread virtuals
83965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     bool        threadLoop();
84065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
84165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     bool        checkForNewParameters_l();
84265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
84365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    protected:
84465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     int         getTrackName_l();
84565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     void        deleteTrackName_l(int name);
84665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     uint32_t    activeSleepTimeUs();
84765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     uint32_t    idleSleepTimeUs();
84825cbe0ecd6df8be7e40537c5d85c82f105038479Eric Laurent        virtual     uint32_t    suspendSleepTimeUs();
84965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
85065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    private:
85165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void applyVolume(uint16_t leftVol, uint16_t rightVol, bool ramp);
85265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
85365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        float mLeftVolFloat;
85465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        float mRightVolFloat;
85565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        uint16_t mLeftVolShort;
85665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        uint16_t mRightVolShort;
85765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
85865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
85965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class DuplicatingThread : public MixerThread {
86065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
86165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        DuplicatingThread (const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread, int id);
86265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        ~DuplicatingThread();
86365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
86465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // Thread virtuals
86565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     bool        threadLoop();
86665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        addOutputTrack(MixerThread* thread);
86765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        removeOutputTrack(MixerThread* thread);
86865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    uint32_t    waitTimeMs() { return mWaitTimeMs; }
86965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    protected:
87065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual     uint32_t    activeSleepTimeUs();
87165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
87265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    private:
87365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    bool        outputsReady(SortedVector< sp<OutputTrack> > &outputTracks);
87465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        updateWaitTime();
87565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
87665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        SortedVector < sp<OutputTrack> >  mOutputTracks;
87765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    uint32_t    mWaitTimeMs;
87865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
87965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
88065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian              PlaybackThread *checkPlaybackThread_l(int output) const;
88165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian              MixerThread *checkMixerThread_l(int output) const;
88265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian              RecordThread *checkRecordThread_l(int input) const;
88365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian              float streamVolumeInternal(int stream) const { return mStreamTypes[stream].volume; }
88465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian              void audioConfigChanged_l(int event, int ioHandle, void *param2);
88565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
8867c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent              uint32_t nextUniqueId();
88759255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent              status_t moveEffectChain_l(int sessionId,
888de070137f11d346fba77605bd76a44c040a618fcEric Laurent                                     AudioFlinger::PlaybackThread *srcThread,
88939e94f8f723d445447fdee0822291e664b631f60Eric Laurent                                     AudioFlinger::PlaybackThread *dstThread,
89039e94f8f723d445447fdee0822291e664b631f60Eric Laurent                                     bool reRegister);
8917c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent              PlaybackThread *primaryPlaybackThread_l();
8927c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent              uint32_t primaryOutputDevice_l();
89365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
89465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    friend class AudioBuffer;
89565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
89665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class TrackHandle : public android::BnAudioTrack {
89765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
89865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                            TrackHandle(const sp<PlaybackThread::Track>& track);
89965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual             ~TrackHandle();
90065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual status_t    start();
90165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual void        stop();
90265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual void        flush();
90365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual void        mute(bool);
90465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual void        pause();
90565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual void        setVolume(float left, float right);
90665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual sp<IMemory> getCblk() const;
90765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual status_t    attachAuxEffect(int effectId);
90865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual status_t onTransact(
90965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
91065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    private:
91165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        sp<PlaybackThread::Track> mTrack;
91265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
91365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
91465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    friend class Client;
91565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    friend class PlaybackThread::Track;
91665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
91765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
91865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                void        removeClient_l(pid_t pid);
91965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                void        removeNotificationClient(pid_t pid);
92065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
92165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
92265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // record thread
92365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class RecordThread : public ThreadBase, public AudioBufferProvider
92465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    {
92565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
92665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
92765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // record track
92865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        class RecordTrack : public TrackBase {
92965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        public:
93065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                RecordTrack(const wp<ThreadBase>& thread,
93165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        const sp<Client>& client,
93265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        uint32_t sampleRate,
9330d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                        uint32_t format,
9340d255b2d9061ba31f13ada3fc0f7e51916407176Jean-Michel Trivi                                        uint32_t channelMask,
93565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        int frameCount,
93665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        uint32_t flags,
93765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        int sessionId);
93865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                ~RecordTrack();
93965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
94065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            virtual status_t    start();
94165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            virtual void        stop();
94265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
94365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    bool        overflow() { bool tmp = mOverflow; mOverflow = false; return tmp; }
94465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    bool        setOverflow() { bool tmp = mOverflow; mOverflow = true; return tmp; }
94565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
94665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                    void        dump(char* buffer, size_t size);
94759255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent
94865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        private:
94965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class AudioFlinger;
95065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            friend class RecordThread;
95165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
95265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                RecordTrack(const RecordTrack&);
95365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                RecordTrack& operator = (const RecordTrack&);
95465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
95565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer);
95665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
95765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            bool                mOverflow;
95865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        };
95965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
96065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
96165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                RecordThread(const sp<AudioFlinger>& audioFlinger,
962799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin                        AudioStreamIn *input,
96365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        uint32_t sampleRate,
96465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        uint32_t channels,
9657c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        int id,
9667c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        uint32_t device);
96765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                ~RecordThread();
96865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
96965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual bool        threadLoop();
97065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual status_t    readyToRun() { return NO_ERROR; }
97165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual void        onFirstRef();
97265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
9737c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        virtual status_t    initCheck() const { return (mInput == 0) ? NO_INIT : NO_ERROR; }
9747c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                sp<AudioFlinger::RecordThread::RecordTrack>  createRecordTrack_l(
9757c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        const sp<AudioFlinger::Client>& client,
9767c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        uint32_t sampleRate,
9777c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        int format,
9787c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        int channelMask,
9797c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        int frameCount,
9807c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        uint32_t flags,
9817c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        int sessionId,
9827c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                        status_t *status);
9837c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent
98465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                status_t    start(RecordTrack* recordTrack);
98565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                void        stop(RecordTrack* recordTrack);
98665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                status_t    dump(int fd, const Vector<String16>& args);
987799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin                AudioStreamIn* getInput() { return mInput; }
9887c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                virtual audio_stream_t* stream() { return &mInput->stream->common; }
9897c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent
99065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual status_t    getNextBuffer(AudioBufferProvider::Buffer* buffer);
99165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual void        releaseBuffer(AudioBufferProvider::Buffer* buffer);
99265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual bool        checkForNewParameters_l();
99365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual String8     getParameters(const String8& keys);
99465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual void        audioConfigChanged_l(int event, int param = 0);
99565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                void        readInputParameters();
99665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual unsigned int  getInputFramesLost();
99765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
9987c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
9997c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
10007c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        virtual uint32_t hasAudioSession(int sessionId);
100159bd0da8373af0e5159b799495fda51e03120ea4Eric Laurent                RecordTrack* track();
10027c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent
100365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    private:
100465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                RecordThread();
1005799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin                AudioStreamIn                       *mInput;
10067c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent                RecordTrack*                        mTrack;
100765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                sp<RecordTrack>                     mActiveTrack;
100865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                Condition                           mStartStopCond;
100965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                AudioResampler                      *mResampler;
101065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                int32_t                             *mRsmpOutBuffer;
101165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                int16_t                             *mRsmpInBuffer;
101265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                size_t                              mRsmpInIndex;
101365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                size_t                              mInputBytes;
101465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                int                                 mReqChannelCount;
101565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                uint32_t                            mReqSampleRate;
101665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                ssize_t                             mBytesRead;
101765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
101865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
101965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class RecordHandle : public android::BnAudioRecord {
102065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
102165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        RecordHandle(const sp<RecordThread::RecordTrack>& recordTrack);
102265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual             ~RecordHandle();
102365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual status_t    start();
102465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual void        stop();
102565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual sp<IMemory> getCblk() const;
102665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual status_t onTransact(
102765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
102865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    private:
102965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        sp<RecordThread::RecordTrack> mRecordTrack;
103065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
103165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
103265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    //--- Audio Effect Management
103365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
103465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // EffectModule and EffectChain classes both have their own mutex to protect
103565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // state changes or resource modifications. Always respect the following order
103665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // if multiple mutexes must be acquired to avoid cross deadlock:
103765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // AudioFlinger -> ThreadBase -> EffectChain -> EffectModule
103865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
103965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // The EffectModule class is a wrapper object controlling the effect engine implementation
104065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // in the effect library. It prevents concurrent calls to process() and command() functions
104165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // from different client threads. It keeps a list of EffectHandle objects corresponding
104265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // to all client applications using this effect and notifies applications of effect state,
104365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // control or parameter changes. It manages the activation state machine to send appropriate
104465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // reset, enable, disable commands to effect engine and provide volume
104565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // ramping when effects are activated/deactivated.
104665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // When controlling an auxiliary effect, the EffectModule also provides an input buffer used by
104765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // the attached track(s) to accumulate their auxiliary channel.
104865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class EffectModule: public RefBase {
104965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
105065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        EffectModule(const wp<ThreadBase>& wThread,
105165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        const wp<AudioFlinger::EffectChain>& chain,
105265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        effect_descriptor_t *desc,
105365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        int id,
105465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                        int sessionId);
105565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        ~EffectModule();
105665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
105765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        enum effect_state {
105865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            IDLE,
105965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            RESTART,
106065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            STARTING,
106165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            ACTIVE,
106265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            STOPPING,
1063ec437d8d3db79459d7b19e1734e6fe309bd621e8Eric Laurent            STOPPED,
1064ec437d8d3db79459d7b19e1734e6fe309bd621e8Eric Laurent            DESTROYED
106565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        };
106665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
106765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int         id() { return mId; }
106865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void process();
106965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void updateState();
107025f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent        status_t command(uint32_t cmdCode,
107125f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent                         uint32_t cmdSize,
107225f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent                         void *pCmdData,
107325f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent                         uint32_t *replySize,
107425f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent                         void *pReplyData);
107565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
107665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void reset_l();
107765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t configure();
107865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t init();
107965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        uint32_t state() {
108065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            return mState;
108165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        }
108265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        uint32_t status() {
108365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            return mStatus;
108465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        }
1085de070137f11d346fba77605bd76a44c040a618fcEric Laurent        int sessionId() {
1086de070137f11d346fba77605bd76a44c040a618fcEric Laurent            return mSessionId;
1087de070137f11d346fba77605bd76a44c040a618fcEric Laurent        }
108865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t    setEnabled(bool enabled);
108965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        bool isEnabled();
10908f45bd725549436eeacd12ee69349e2332ed8da5Eric Laurent        bool isProcessEnabled();
109165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
109265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void        setInBuffer(int16_t *buffer) { mConfig.inputCfg.buffer.s16 = buffer; }
109365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int16_t     *inBuffer() { return mConfig.inputCfg.buffer.s16; }
109465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void        setOutBuffer(int16_t *buffer) { mConfig.outputCfg.buffer.s16 = buffer; }
109565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int16_t     *outBuffer() { return mConfig.outputCfg.buffer.s16; }
1096de070137f11d346fba77605bd76a44c040a618fcEric Laurent        void        setChain(const wp<EffectChain>& chain) { mChain = chain; }
1097de070137f11d346fba77605bd76a44c040a618fcEric Laurent        void        setThread(const wp<ThreadBase>& thread) { mThread = thread; }
109859255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        wp<ThreadBase>& thread() { return mThread; }
109965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
110065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t addHandle(sp<EffectHandle>& handle);
110165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void disconnect(const wp<EffectHandle>& handle);
110265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        size_t removeHandle (const wp<EffectHandle>& handle);
110365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
110465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        effect_descriptor_t& desc() { return mDescriptor; }
110565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        wp<EffectChain>&     chain() { return mChain; }
110665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
110765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t         setDevice(uint32_t device);
110865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t         setVolume(uint32_t *left, uint32_t *right, bool controller);
110965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t         setMode(uint32_t mode);
1110ec437d8d3db79459d7b19e1734e6fe309bd621e8Eric Laurent        status_t         stop();
111159255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        void             setSuspended(bool suspended);
111259255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        bool             suspended();
111359255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent
111459255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        sp<EffectHandle> controlHandle();
111565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
111665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t         dump(int fd, const Vector<String16>& args);
111765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
111865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    protected:
111965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
112065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // Maximum time allocated to effect engines to complete the turn off sequence
112165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        static const uint32_t MAX_DISABLE_TIME_MS = 10000;
112265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
112365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        EffectModule(const EffectModule&);
112465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        EffectModule& operator = (const EffectModule&);
112565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
112665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t start_l();
112765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t stop_l();
112865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
112965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        Mutex               mLock;      // mutex for process, commands and handles list protection
113065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        wp<ThreadBase>      mThread;    // parent thread
113165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        wp<EffectChain>     mChain;     // parent effect chain
113265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int                 mId;        // this instance unique ID
113365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int                 mSessionId; // audio session ID
113465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
113565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        effect_config_t     mConfig;    // input and output audio configuration
1136e1315cf0b63b4c14a77046519e6b01f6f60d74b0Eric Laurent        effect_handle_t  mEffectInterface; // Effect module C API
113765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t mStatus;               // initialization status
113865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        uint32_t mState;                // current activation state (effect_state)
113965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        Vector< wp<EffectHandle> > mHandles;    // list of client handles
114065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        uint32_t mMaxDisableWaitCnt;    // maximum grace period before forcing an effect off after
114165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                                        // sending disable command.
114265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        uint32_t mDisableWaitCnt;       // current process() calls count during disable period.
114359255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        bool     mSuspended;            // effect is suspended: temporarily disabled by framework
114465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
114565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
114665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // The EffectHandle class implements the IEffect interface. It provides resources
114765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // to receive parameter updates, keeps track of effect control
114865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // ownership and state and has a pointer to the EffectModule object it is controlling.
114965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // There is one EffectHandle object for each application controlling (or using)
115065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // an effect module.
115165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // The EffectHandle is obtained by calling AudioFlinger::createEffect().
115265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class EffectHandle: public android::BnEffect {
115365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
115465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
115565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        EffectHandle(const sp<EffectModule>& effect,
115665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                const sp<AudioFlinger::Client>& client,
115765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                const sp<IEffectClient>& effectClient,
115865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                int32_t priority);
115965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual ~EffectHandle();
116065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
116165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // IEffect
116265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual status_t enable();
116365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual status_t disable();
116425f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent        virtual status_t command(uint32_t cmdCode,
116525f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent                                 uint32_t cmdSize,
116625f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent                                 void *pCmdData,
116725f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent                                 uint32_t *replySize,
116825f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent                                 void *pReplyData);
116965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual void disconnect();
117065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual sp<IMemory> getCblk() const;
117165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        virtual status_t onTransact(uint32_t code, const Parcel& data,
117265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                Parcel* reply, uint32_t flags);
117365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
117465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
117565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // Give or take control of effect module
117659255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // - hasControl: true if control is given, false if removed
117759255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // - signal: true client app should be signaled of change, false otherwise
117859255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // - enabled: state of the effect when control is passed
117959255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        void setControl(bool hasControl, bool signal, bool enabled);
118025f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent        void commandExecuted(uint32_t cmdCode,
118125f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent                             uint32_t cmdSize,
118225f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent                             void *pCmdData,
118325f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent                             uint32_t replySize,
118425f4395b932fa9859a6e91ba77c5d20d009da64aEric Laurent                             void *pReplyData);
118565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void setEnabled(bool enabled);
118659255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        bool enabled() { return mEnabled; }
118765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
118865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        // Getters
118965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int id() { return mEffect->id(); }
119065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int priority() { return mPriority; }
119165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        bool hasControl() { return mHasControl; }
119265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        sp<EffectModule> effect() { return mEffect; }
119365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
119465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void dump(char* buffer, size_t size);
119565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
119665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    protected:
119765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
119865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        EffectHandle(const EffectHandle&);
119965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        EffectHandle& operator =(const EffectHandle&);
120065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
120165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        sp<EffectModule> mEffect;           // pointer to controlled EffectModule
120265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        sp<IEffectClient> mEffectClient;    // callback interface for client notifications
120365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        sp<Client>          mClient;        // client for shared memory allocation
120465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        sp<IMemory>         mCblkMemory;    // shared memory for control block
120565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        effect_param_cblk_t* mCblk;         // control block for deferred parameter setting via shared memory
120665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        uint8_t*            mBuffer;        // pointer to parameter area in shared memory
120765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int mPriority;                      // client application priority to control the effect
120865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        bool mHasControl;                   // true if this handle is controlling the effect
120959255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        bool mEnabled;                      // cached enable state: needed when the effect is
121059255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                                            // restored after being suspended
121165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
121265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
121365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // the EffectChain class represents a group of effects associated to one audio session.
121465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // There can be any number of EffectChain objects per output mixer thread (PlaybackThread).
121565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // The EffecChain with session ID 0 contains global effects applied to the output mix.
121665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // Effects in this chain can be insert or auxiliary. Effects in other chains (attached to tracks)
121765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // are insert only. The EffectChain maintains an ordered list of effect module, the order corresponding
121865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // in the effect process order. When attached to a track (session ID != 0), it also provide it's own
121965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    // input buffer used by the track as accumulation buffer.
122065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    class EffectChain: public RefBase {
122165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    public:
122265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        EffectChain(const wp<ThreadBase>& wThread, int sessionId);
122365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        ~EffectChain();
122465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
122559255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // special key used for an entry in mSuspendedEffects keyed vector
122659255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // corresponding to a suspend all request.
122759255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        static const int        kKeyForSuspendAll = 0;
122859255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent
122965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void process_l();
123065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
123165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void lock() {
123265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            mLock.lock();
123365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        }
123465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void unlock() {
123565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            mLock.unlock();
123665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        }
123765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
1238de070137f11d346fba77605bd76a44c040a618fcEric Laurent        status_t addEffect_l(const sp<EffectModule>& handle);
1239cab112421da6e8eac19ffddbbe3d76067cffee78Eric Laurent        size_t removeEffect_l(const sp<EffectModule>& handle);
124065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
12417c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        int sessionId() { return mSessionId; }
12427c7f10bd4fda9a084e5e7f0eb3a040dfcbf01745Eric Laurent        void setSessionId(int sessionId) { mSessionId = sessionId; }
1243de070137f11d346fba77605bd76a44c040a618fcEric Laurent
1244cab112421da6e8eac19ffddbbe3d76067cffee78Eric Laurent        sp<EffectModule> getEffectFromDesc_l(effect_descriptor_t *descriptor);
1245cab112421da6e8eac19ffddbbe3d76067cffee78Eric Laurent        sp<EffectModule> getEffectFromId_l(int id);
124659255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        sp<EffectModule> getEffectFromType_l(const effect_uuid_t *type);
1247cab112421da6e8eac19ffddbbe3d76067cffee78Eric Laurent        bool setVolume_l(uint32_t *left, uint32_t *right);
1248cab112421da6e8eac19ffddbbe3d76067cffee78Eric Laurent        void setDevice_l(uint32_t device);
1249cab112421da6e8eac19ffddbbe3d76067cffee78Eric Laurent        void setMode_l(uint32_t mode);
125065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
125165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void setInBuffer(int16_t *buffer, bool ownsBuffer = false) {
125265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            mInBuffer = buffer;
125365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            mOwnInBuffer = ownsBuffer;
125465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        }
125565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int16_t *inBuffer() {
125665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            return mInBuffer;
125765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        }
125865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        void setOutBuffer(int16_t *buffer) {
125965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            mOutBuffer = buffer;
126065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        }
126165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int16_t *outBuffer() {
126265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian            return mOutBuffer;
126365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        }
126465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
1265b469b9490b3cd9e0f0466d9b9ab228f6c793b82eEric Laurent        void incTrackCnt() { android_atomic_inc(&mTrackCnt); }
1266b469b9490b3cd9e0f0466d9b9ab228f6c793b82eEric Laurent        void decTrackCnt() { android_atomic_dec(&mTrackCnt); }
1267b469b9490b3cd9e0f0466d9b9ab228f6c793b82eEric Laurent        int32_t trackCnt() { return mTrackCnt;}
1268b469b9490b3cd9e0f0466d9b9ab228f6c793b82eEric Laurent
1269b469b9490b3cd9e0f0466d9b9ab228f6c793b82eEric Laurent        void incActiveTrackCnt() { android_atomic_inc(&mActiveTrackCnt); }
1270b469b9490b3cd9e0f0466d9b9ab228f6c793b82eEric Laurent        void decActiveTrackCnt() { android_atomic_dec(&mActiveTrackCnt); }
1271b469b9490b3cd9e0f0466d9b9ab228f6c793b82eEric Laurent        int32_t activeTrackCnt() { return mActiveTrackCnt;}
127265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
1273de070137f11d346fba77605bd76a44c040a618fcEric Laurent        uint32_t strategy() { return mStrategy; }
1274de070137f11d346fba77605bd76a44c040a618fcEric Laurent        void setStrategy(uint32_t strategy)
1275de070137f11d346fba77605bd76a44c040a618fcEric Laurent                 { mStrategy = strategy; }
1276de070137f11d346fba77605bd76a44c040a618fcEric Laurent
127759255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // suspend effect of the given type
127859255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        void setEffectSuspended_l(const effect_uuid_t *type,
127959255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                                  bool suspend);
128059255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // suspend all eligible effects
128159255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        void setEffectSuspendedAll_l(bool suspend);
128259255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // check if effects should be suspend or restored when a given effect is enable or disabled
128359255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        virtual void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
128459255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent                                              bool enabled);
128559255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent
128665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        status_t dump(int fd, const Vector<String16>& args);
128765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
128865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    protected:
128965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
129065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        EffectChain(const EffectChain&);
129165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        EffectChain& operator =(const EffectChain&);
129265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
129359255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        class SuspendedEffectDesc : public RefBase {
129459255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        public:
129559255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent            SuspendedEffectDesc() : mRefCount(0) {}
129659255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent
129759255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent            int mRefCount;
129859255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent            effect_uuid_t mType;
129959255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent            wp<EffectModule> mEffect;
130059255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        };
130159255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent
130259255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // get a list of effect modules to suspend when an effect of the type
130359255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // passed is enabled.
130459255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        Vector< sp<EffectModule> > getSuspendEligibleEffects();
130559255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // get an effect module if it is currently enable
130659255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        sp<EffectModule> getEffectIfEnabled(const effect_uuid_t *type);
130759255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent
130865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        wp<ThreadBase> mThread;     // parent mixer thread
130965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        Mutex mLock;                // mutex protecting effect list
131065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        Vector<sp<EffectModule> > mEffects; // list of effect modules
131165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int mSessionId;             // audio session ID
131265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int16_t *mInBuffer;         // chain input buffer
131365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        int16_t *mOutBuffer;        // chain output buffer
1314b469b9490b3cd9e0f0466d9b9ab228f6c793b82eEric Laurent        volatile int32_t mActiveTrackCnt;  // number of active tracks connected
1315b469b9490b3cd9e0f0466d9b9ab228f6c793b82eEric Laurent        volatile int32_t mTrackCnt;        // number of tracks connected
131665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian        bool mOwnInBuffer;          // true if the chain owns its input buffer
1317cab112421da6e8eac19ffddbbe3d76067cffee78Eric Laurent        int mVolumeCtrlIdx;         // index of insert effect having control over volume
1318cab112421da6e8eac19ffddbbe3d76067cffee78Eric Laurent        uint32_t mLeftVolume;       // previous volume on left channel
1319cab112421da6e8eac19ffddbbe3d76067cffee78Eric Laurent        uint32_t mRightVolume;      // previous volume on right channel
1320f997cabca292d70d078ae828e21c28e6df62995fEric Laurent        uint32_t mNewLeftVolume;       // new volume on left channel
1321f997cabca292d70d078ae828e21c28e6df62995fEric Laurent        uint32_t mNewRightVolume;      // new volume on right channel
1322de070137f11d346fba77605bd76a44c040a618fcEric Laurent        uint32_t mStrategy; // strategy for this effect chain
132359255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // mSuspendedEffects lists all effect currently suspended in the chain
132459255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // use effect type UUID timelow field as key. There is no real risk of identical
132559255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        // timeLow fields among effect type UUIDs.
132659255e4fc7d8ff52874b85b1988dc0785140cf81Eric Laurent        KeyedVector< int, sp<SuspendedEffectDesc> > mSuspendedEffects;
132765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    };
132865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
1329799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin    struct AudioStreamOut {
1330799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin        audio_hw_device_t   *hwDev;
1331799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin        audio_stream_out_t  *stream;
1332799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin
1333799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin        AudioStreamOut(audio_hw_device_t *dev, audio_stream_out_t *out) :
1334799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin            hwDev(dev), stream(out) {}
1335799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin    };
1336799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin
1337799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin    struct AudioStreamIn {
1338799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin        audio_hw_device_t   *hwDev;
1339799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin        audio_stream_in_t   *stream;
1340799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin
1341799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin        AudioStreamIn(audio_hw_device_t *dev, audio_stream_in_t *in) :
1342799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin            hwDev(dev), stream(in) {}
1343799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin    };
1344799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin
134565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    friend class RecordThread;
134665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    friend class PlaybackThread;
134765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
134865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    mutable     Mutex                               mLock;
134965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
135065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                DefaultKeyedVector< pid_t, wp<Client> >     mClients;
135165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
135265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                mutable     Mutex                   mHardwareLock;
1353799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin                audio_hw_device_t*                  mPrimaryHardwareDev;
1354799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin                Vector<audio_hw_device_t*>          mAudioHwDevs;
135565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian    mutable     int                                 mHardwareStatus;
135665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
135765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
135865ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                DefaultKeyedVector< int, sp<PlaybackThread> >  mPlaybackThreads;
1359fce7a473248381cc83a01855f92581077d3c9ee2Dima Zavin                PlaybackThread::stream_type_t       mStreamTypes[AUDIO_STREAM_CNT];
136065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                float                               mMasterVolume;
136165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                bool                                mMasterMute;
136265ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
136365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                DefaultKeyedVector< int, sp<RecordThread> >    mRecordThreads;
136465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
136565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                DefaultKeyedVector< pid_t, sp<NotificationClient> >    mNotificationClients;
136665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian                volatile int32_t                    mNextUniqueId;
136759bd0da8373af0e5159b799495fda51e03120ea4Eric Laurent                uint32_t                            mMode;
136859bd0da8373af0e5159b799495fda51e03120ea4Eric Laurent                bool                                mBtNrec;
136965ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
137065ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian};
137165ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
1372799a70e7028a4d714436c3a744a775acfbd31aaeDima Zavin
137365ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian// ----------------------------------------------------------------------------
137465ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
137565ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian}; // namespace android
137665ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian
137765ab47156e1c7dfcd8cc4266253a5ff30219e7f0Mathias Agopian#endif // ANDROID_AUDIO_FLINGER_H
1378