PlaybackTracks.h revision 83b8808faad1e91690c64d7007348be8d9ebde73
181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent/*
281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**
381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** Copyright 2012, The Android Open Source Project
481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**
581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** Licensed under the Apache License, Version 2.0 (the "License");
681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** you may not use this file except in compliance with the License.
781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** You may obtain a copy of the License at
881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**
981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**     http://www.apache.org/licenses/LICENSE-2.0
1081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**
1181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** Unless required by applicable law or agreed to in writing, software
1281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** distributed under the License is distributed on an "AS IS" BASIS,
1381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** See the License for the specific language governing permissions and
1581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** limitations under the License.
1681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent*/
1781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifndef INCLUDING_FROM_AUDIOFLINGER_H
1981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    #error This header file should only be included from AudioFlinger.h
2081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
2181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// playback track
2381784c37c61b09289654b979567a42bf73cd2b12Eric Laurentclass Track : public TrackBase, public VolumeProvider {
2481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
2581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        Track(  PlaybackThread *thread,
2681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                const sp<Client>& client,
2781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                audio_stream_type_t streamType,
2881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                uint32_t sampleRate,
2981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                audio_format_t format,
3081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                audio_channel_mask_t channelMask,
3181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                size_t frameCount,
3283b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                                void *buffer,
3381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                const sp<IMemory>& sharedBuffer,
3481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                int sessionId,
35462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                                int uid,
3683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                                IAudioFlinger::track_flags_t flags,
3783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                                track_type type);
3881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual             ~Track();
39030033342a6ea17003e6af38a56c7edc6d2ead01Glenn Kasten    virtual status_t    initCheck() const;
4081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
4181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    static  void        appendDumpHeader(String8& result);
42b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            void        dump(char* buffer, size_t size, bool active);
4381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t    start(AudioSystem::sync_event_t event =
4481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    AudioSystem::SYNC_EVENT_NONE,
4581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                             int triggerSession = 0);
4681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual void        stop();
4781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            void        pause();
4881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
4981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            void        flush();
5081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            void        destroy();
5181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            int         name() const { return mName; }
5281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
539f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten    virtual uint32_t    sampleRate() const;
549f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten
5581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            audio_stream_type_t streamType() const {
5681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                return mStreamType;
5781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
58bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            bool        isOffloaded() const { return (mFlags & IAudioFlinger::TRACK_OFFLOAD) != 0; }
59ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent            bool        isDirect() const { return (mFlags & IAudioFlinger::TRACK_DIRECT) != 0; }
60bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            status_t    setParameters(const String8& keyValuePairs);
6181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            status_t    attachAuxEffect(int EffectId);
6281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            void        setAuxBuffer(int EffectId, int32_t *buffer);
6381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            int32_t     *auxBuffer() const { return mAuxBuffer; }
6481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            void        setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
6581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            int16_t     *mainBuffer() const { return mMainBuffer; }
6681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            int         auxEffectId() const { return mAuxEffectId; }
67573d80a8f463f648a515fc0975bf83951b272993Glenn Kasten    virtual status_t    getTimestamp(AudioTimestamp& timestamp);
6859fe010bcc072597852454a2ec53d7b0a2002a3bEric Laurent            void        signal();
6981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
7081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// implement FastMixerState::VolumeProvider interface
71c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten    virtual gain_minifloat_packed_t getVolumeLR();
7281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
7381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t    setSyncEvent(const sp<SyncEvent>& event);
7481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
7581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
7681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // for numerous
7781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    friend class PlaybackThread;
7881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    friend class MixerThread;
7981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    friend class DirectOutputThread;
80bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    friend class OffloadThread;
8181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
8281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        Track(const Track&);
8381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        Track& operator = (const Track&);
8481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
8581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // AudioBufferProvider interface
8681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer,
8781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                   int64_t pts = kInvalidPTS);
8881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // releaseBuffer() not overridden
8981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
906466c9e6e6278c740aed77f695f679be9f5db478Glenn Kasten    // ExtendedAudioBufferProvider interface
9181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual size_t framesReady() const;
926466c9e6e6278c740aed77f695f679be9f5db478Glenn Kasten    virtual size_t framesReleased() const;
9381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
94c9b2e20f7c9a71e07ef398152709c76079decbcdGlenn Kasten    bool isPausing() const { return mState == PAUSING; }
95c9b2e20f7c9a71e07ef398152709c76079decbcdGlenn Kasten    bool isPaused() const { return mState == PAUSED; }
96c9b2e20f7c9a71e07ef398152709c76079decbcdGlenn Kasten    bool isResuming() const { return mState == RESUMING; }
9781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool isReady() const;
9881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void setPaused() { mState = PAUSED; }
9981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void reset();
1007844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George    bool isFlushPending() const { return mFlushHwPending; }
1017844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George    void flushAck();
1028d6c292a0bed3d63b5b7297d09a604af6327c663Krishnankutty Kolathappilly    bool isResumePending();
1038d6c292a0bed3d63b5b7297d09a604af6327c663Krishnankutty Kolathappilly    void resumeAck();
10481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<IMemory> sharedBuffer() const { return mSharedBuffer; }
10681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // framesWritten is cumulative, never reset, and is shared all tracks
10881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // audioHalFrames is derived from output latency
10981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FIXME parameters not needed, could get them from the thread
11081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool presentationComplete(size_t framesWritten, size_t audioHalFrames);
11181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
11281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
11381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void triggerEvents(AudioSystem::sync_event_t type);
1145736c35b841de56ce394b4879389f669b61425e6Glenn Kasten    void invalidate();
1155736c35b841de56ce394b4879389f669b61425e6Glenn Kasten    bool isInvalid() const { return mIsInvalid; }
116d054c32443a493513ab63529b0c8b1aca290278cGlenn Kasten    int fastIndex() const { return mFastIndex; }
11781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
11881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
11981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
12081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FILLED state is used for suppressing volume ramp at begin of playing
12181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    enum {FS_INVALID, FS_FILLING, FS_FILLED, FS_ACTIVE};
12281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mutable uint8_t     mFillingUpStatus;
12381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int8_t              mRetryCount;
1240c72b24f91c68442eb374bd1b338c394105b8262Glenn Kasten
1250c72b24f91c68442eb374bd1b338c394105b8262Glenn Kasten    // see comment at AudioFlinger::PlaybackThread::Track::~Track for why this can't be const
1260c72b24f91c68442eb374bd1b338c394105b8262Glenn Kasten    sp<IMemory>         mSharedBuffer;
1270c72b24f91c68442eb374bd1b338c394105b8262Glenn Kasten
12881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                mResetDone;
12981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    const audio_stream_type_t mStreamType;
13081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int                 mName;      // track name on the normal mixer,
13181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // allocated statically at track creation time,
13281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // and is even allocated (though unused) for fast tracks
13381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // FIXME don't allocate track name for fast tracks
13481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int16_t             *mMainBuffer;
13581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int32_t             *mAuxBuffer;
13681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int                 mAuxEffectId;
13781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                mHasVolumeController;
13881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t              mPresentationCompleteFrames; // number of frames written to the
13981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // audio HAL when this track will be fully rendered
14081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // zero means not monitoring
14181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
14281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // The following fields are only for fast tracks, and should be in a subclass
14381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int                 mFastIndex; // index within FastMixerState::mFastTracks[];
14481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // either mFastIndex == -1 if not isFastTrack()
14581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // or 0 < mFastIndex < FastMixerState::kMaxFast because
14681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // index 0 is reserved for normal mixer's submix;
14781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // index is allocated statically at track creation time
14881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // but the slot is only used if track is active
14981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    FastTrackUnderruns  mObservedUnderruns; // Most recently observed value of
15081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // mFastMixerDumpState.mTracks[mFastIndex].mUnderruns
15181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    volatile float      mCachedVolume;  // combined master volume and stream type volume;
15281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                        // 'volatile' means accessed without lock or
15381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                        // barrier, but is read/written atomically
1545736c35b841de56ce394b4879389f669b61425e6Glenn Kasten    bool                mIsInvalid; // non-resettable latch, set by invalidate()
1559f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten    AudioTrackServerProxy*  mAudioTrackServerProxy;
156bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    bool                mResumeToStopping; // track was paused in stopping state.
1577844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George    bool                mFlushHwPending; // track requests for thread flush
158ced6e74215937182fe2f9f6b0867f7c28ccd02c1Glenn Kasten
159ced6e74215937182fe2f9f6b0867f7c28ccd02c1Glenn Kasten    // for last call to getTimestamp
160ced6e74215937182fe2f9f6b0867f7c28ccd02c1Glenn Kasten    bool                mPreviousValid;
161ced6e74215937182fe2f9f6b0867f7c28ccd02c1Glenn Kasten    uint32_t            mPreviousFramesWritten;
162ced6e74215937182fe2f9f6b0867f7c28ccd02c1Glenn Kasten    AudioTimestamp      mPreviousTimestamp;
16381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};  // end of Track
16481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
16581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentclass TimedTrack : public Track {
16681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent  public:
16781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    static sp<TimedTrack> create(PlaybackThread *thread,
16881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                 const sp<Client>& client,
16981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                 audio_stream_type_t streamType,
17081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                 uint32_t sampleRate,
17181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                 audio_format_t format,
17281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                 audio_channel_mask_t channelMask,
17381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                 size_t frameCount,
17481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                 const sp<IMemory>& sharedBuffer,
175462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                                 int sessionId,
176462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                                 int uid);
17781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual ~TimedTrack();
17881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
17981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    class TimedBuffer {
18081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent      public:
18181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        TimedBuffer();
18281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        TimedBuffer(const sp<IMemory>& buffer, int64_t pts);
18381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const sp<IMemory>& buffer() const { return mBuffer; }
18481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int64_t pts() const { return mPTS; }
18581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        uint32_t position() const { return mPosition; }
18681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        void setPosition(uint32_t pos) { mPosition = pos; }
18781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent      private:
18881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<IMemory> mBuffer;
18981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int64_t     mPTS;
19081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        uint32_t    mPosition;
19181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    };
19281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
19381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Mixer facing methods.
19481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual size_t framesReady() const;
19581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
19681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // AudioBufferProvider interface
19781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer,
19881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                   int64_t pts);
19981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
20081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
20181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Client/App facing methods.
20281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t    allocateTimedBuffer(size_t size,
20381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    sp<IMemory>* buffer);
20481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t    queueTimedBuffer(const sp<IMemory>& buffer,
20581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                 int64_t pts);
20681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t    setMediaTimeTransform(const LinearTransform& xform,
20781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                      TimedAudioTrack::TargetTimeline target);
20881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
20981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent  private:
21081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    TimedTrack(PlaybackThread *thread,
21181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               const sp<Client>& client,
21281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               audio_stream_type_t streamType,
21381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               uint32_t sampleRate,
21481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               audio_format_t format,
21581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               audio_channel_mask_t channelMask,
21681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               size_t frameCount,
21781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               const sp<IMemory>& sharedBuffer,
218462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen               int sessionId,
219462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen               int uid);
22081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
22181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void timedYieldSamples_l(AudioBufferProvider::Buffer* buffer);
22281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void timedYieldSilence_l(uint32_t numFrames,
22381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                             AudioBufferProvider::Buffer* buffer);
22481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void trimTimedBufferQueue_l();
22581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void trimTimedBufferQueueHead_l(const char* logTag);
22681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void updateFramesPendingAfterTrim_l(const TimedBuffer& buf,
22781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                        const char* logTag);
22881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
22981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint64_t            mLocalTimeFreq;
23081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    LinearTransform     mLocalTimeToSampleTransform;
23181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    LinearTransform     mMediaTimeToSampleTransform;
23281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<MemoryDealer>    mTimedMemoryDealer;
23381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
23481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Vector<TimedBuffer> mTimedBufferQueue;
23581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                mQueueHeadInFlight;
23681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                mTrimQueueHeadOnRelease;
23781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t            mFramesPendingInQueue;
23881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
23981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint8_t*            mTimedSilenceBuffer;
24081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t            mTimedSilenceBufferSize;
24181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mutable Mutex       mTimedBufferQueueLock;
24281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                mTimedAudioOutputOnTime;
24381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    CCHelper            mCCHelper;
24481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
24581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex               mMediaTimeTransformLock;
24681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    LinearTransform     mMediaTimeTransform;
24781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                mMediaTimeTransformValid;
24881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    TimedAudioTrack::TargetTimeline mMediaTimeTransformTarget;
24981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};
25081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
25181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
25281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// playback track, used by DuplicatingThread
25381784c37c61b09289654b979567a42bf73cd2b12Eric Laurentclass OutputTrack : public Track {
25481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
25581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
25681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    class Buffer : public AudioBufferProvider::Buffer {
25781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    public:
25881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int16_t *mBuffer;
25981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    };
26081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
26181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        OutputTrack(PlaybackThread *thread,
26281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                DuplicatingThread *sourceThread,
26381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                uint32_t sampleRate,
26481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                audio_format_t format,
26581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                audio_channel_mask_t channelMask,
266462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                                size_t frameCount,
267462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                                int uid);
26881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual             ~OutputTrack();
26981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
27081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t    start(AudioSystem::sync_event_t event =
27181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    AudioSystem::SYNC_EVENT_NONE,
27281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                             int triggerSession = 0);
27381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual void        stop();
27481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            bool        write(int16_t* data, uint32_t frames);
27581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            bool        bufferQueueEmpty() const { return mBufferQueue.size() == 0; }
27681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            bool        isActive() const { return mActive; }
27781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    const wp<ThreadBase>& thread() const { return mThread; }
27881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
27981784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
28081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
28181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t            obtainBuffer(AudioBufferProvider::Buffer* buffer,
28281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                     uint32_t waitTimeMs);
28381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void                clearBufferQueue();
28481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
28581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Maximum number of pending buffers allocated by OutputTrack::write()
28681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    static const uint8_t kMaxOverFlowBuffers = 10;
28781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
28881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Vector < Buffer* >          mBufferQueue;
28981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    AudioBufferProvider::Buffer mOutBuffer;
29081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                        mActive;
29181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
292e3aa659e9cee7df5c12a80d285cc29ab3b2cbb39Glenn Kasten    AudioTrackClientProxy*      mClientProxy;
29381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};  // end of OutputTrack
29483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
29583b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent// playback track, used by PatchPanel
29683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurentclass PatchTrack : public Track, public PatchProxyBufferProvider {
29783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurentpublic:
29883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
29983b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                        PatchTrack(PlaybackThread *playbackThread,
30083b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                                   uint32_t sampleRate,
30183b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                                   audio_channel_mask_t channelMask,
30283b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                                   audio_format_t format,
30383b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                                   size_t frameCount,
30483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                                   void *buffer,
30583b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                                   IAudioFlinger::track_flags_t flags);
30683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    virtual             ~PatchTrack();
30783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
30883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    // AudioBufferProvider interface
30983b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer,
31083b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                                   int64_t pts);
31183b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
31283b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
31383b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    // PatchProxyBufferProvider interface
31483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    virtual status_t    obtainBuffer(Proxy::Buffer* buffer,
31583b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                                     const struct timespec *timeOut = NULL);
31683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    virtual void        releaseBuffer(Proxy::Buffer* buffer);
31783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
31883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent            void setPeerProxy(PatchProxyBufferProvider *proxy) { mPeerProxy = proxy; }
31983b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
32083b8808faad1e91690c64d7007348be8d9ebde73Eric Laurentprivate:
32183b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    sp<ClientProxy>             mProxy;
32283b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    PatchProxyBufferProvider*   mPeerProxy;
32383b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    struct timespec             mPeerTimeout;
32483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent};  // end of PatchTrack
325