PlaybackTracks.h revision 8d6c292a0bed3d63b5b7297d09a604af6327c663
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,
3281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                const sp<IMemory>& sharedBuffer,
3381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                int sessionId,
34462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                                int uid,
3581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                IAudioFlinger::track_flags_t flags);
3681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual             ~Track();
37030033342a6ea17003e6af38a56c7edc6d2ead01Glenn Kasten    virtual status_t    initCheck() const;
3881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
3981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    static  void        appendDumpHeader(String8& result);
40b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            void        dump(char* buffer, size_t size, bool active);
4181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t    start(AudioSystem::sync_event_t event =
4281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    AudioSystem::SYNC_EVENT_NONE,
4381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                             int triggerSession = 0);
4481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual void        stop();
4581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            void        pause();
4681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
4781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            void        flush();
4881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            void        destroy();
4981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            int         name() const { return mName; }
5081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
519f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten    virtual uint32_t    sampleRate() const;
529f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten
5381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            audio_stream_type_t streamType() const {
5481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                return mStreamType;
5581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
56bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            bool        isOffloaded() const { return (mFlags & IAudioFlinger::TRACK_OFFLOAD) != 0; }
57bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            status_t    setParameters(const String8& keyValuePairs);
5881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            status_t    attachAuxEffect(int EffectId);
5981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            void        setAuxBuffer(int EffectId, int32_t *buffer);
6081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            int32_t     *auxBuffer() const { return mAuxBuffer; }
6181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            void        setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
6281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            int16_t     *mainBuffer() const { return mMainBuffer; }
6381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            int         auxEffectId() const { return mAuxEffectId; }
64573d80a8f463f648a515fc0975bf83951b272993Glenn Kasten    virtual status_t    getTimestamp(AudioTimestamp& timestamp);
6559fe010bcc072597852454a2ec53d7b0a2002a3bEric Laurent            void        signal();
6681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
6781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// implement FastMixerState::VolumeProvider interface
6881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual uint32_t    getVolumeLR();
6981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
7081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t    setSyncEvent(const sp<SyncEvent>& event);
7181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
7281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
7381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // for numerous
7481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    friend class PlaybackThread;
7581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    friend class MixerThread;
7681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    friend class DirectOutputThread;
77bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    friend class OffloadThread;
7881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
7981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        Track(const Track&);
8081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        Track& operator = (const Track&);
8181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
8281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // AudioBufferProvider interface
8381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer,
8481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                   int64_t pts = kInvalidPTS);
8581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // releaseBuffer() not overridden
8681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
876466c9e6e6278c740aed77f695f679be9f5db478Glenn Kasten    // ExtendedAudioBufferProvider interface
8881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual size_t framesReady() const;
896466c9e6e6278c740aed77f695f679be9f5db478Glenn Kasten    virtual size_t framesReleased() const;
9081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
91c9b2e20f7c9a71e07ef398152709c76079decbcdGlenn Kasten    bool isPausing() const { return mState == PAUSING; }
92c9b2e20f7c9a71e07ef398152709c76079decbcdGlenn Kasten    bool isPaused() const { return mState == PAUSED; }
93c9b2e20f7c9a71e07ef398152709c76079decbcdGlenn Kasten    bool isResuming() const { return mState == RESUMING; }
9481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool isReady() const;
9581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void setPaused() { mState = PAUSED; }
9681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void reset();
977844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George    bool isFlushPending() const { return mFlushHwPending; }
987844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George    void flushAck();
998d6c292a0bed3d63b5b7297d09a604af6327c663Krishnankutty Kolathappilly    bool isResumePending();
1008d6c292a0bed3d63b5b7297d09a604af6327c663Krishnankutty Kolathappilly    void resumeAck();
10181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool isOutputTrack() const {
10381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return (mStreamType == AUDIO_STREAM_CNT);
10481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
10581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<IMemory> sharedBuffer() const { return mSharedBuffer; }
10781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // framesWritten is cumulative, never reset, and is shared all tracks
10981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // audioHalFrames is derived from output latency
11081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FIXME parameters not needed, could get them from the thread
11181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool presentationComplete(size_t framesWritten, size_t audioHalFrames);
11281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
11381784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
11481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void triggerEvents(AudioSystem::sync_event_t type);
1155736c35b841de56ce394b4879389f669b61425e6Glenn Kasten    void invalidate();
1165736c35b841de56ce394b4879389f669b61425e6Glenn Kasten    bool isInvalid() const { return mIsInvalid; }
11781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual bool isTimedTrack() const { return false; }
11881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool isFastTrack() const { return (mFlags & IAudioFlinger::TRACK_FAST) != 0; }
119d054c32443a493513ab63529b0c8b1aca290278cGlenn Kasten    int fastIndex() const { return mFastIndex; }
12081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
12181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
12281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
12381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FILLED state is used for suppressing volume ramp at begin of playing
12481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    enum {FS_INVALID, FS_FILLING, FS_FILLED, FS_ACTIVE};
12581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mutable uint8_t     mFillingUpStatus;
12681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int8_t              mRetryCount;
1270c72b24f91c68442eb374bd1b338c394105b8262Glenn Kasten
1280c72b24f91c68442eb374bd1b338c394105b8262Glenn Kasten    // see comment at AudioFlinger::PlaybackThread::Track::~Track for why this can't be const
1290c72b24f91c68442eb374bd1b338c394105b8262Glenn Kasten    sp<IMemory>         mSharedBuffer;
1300c72b24f91c68442eb374bd1b338c394105b8262Glenn Kasten
13181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                mResetDone;
13281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    const audio_stream_type_t mStreamType;
13381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int                 mName;      // track name on the normal mixer,
13481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // allocated statically at track creation time,
13581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // and is even allocated (though unused) for fast tracks
13681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // FIXME don't allocate track name for fast tracks
13781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int16_t             *mMainBuffer;
13881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int32_t             *mAuxBuffer;
13981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int                 mAuxEffectId;
14081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                mHasVolumeController;
14181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t              mPresentationCompleteFrames; // number of frames written to the
14281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // audio HAL when this track will be fully rendered
14381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // zero means not monitoring
14481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
14581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    IAudioFlinger::track_flags_t mFlags;
14681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
14781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // The following fields are only for fast tracks, and should be in a subclass
14881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int                 mFastIndex; // index within FastMixerState::mFastTracks[];
14981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // either mFastIndex == -1 if not isFastTrack()
15081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // or 0 < mFastIndex < FastMixerState::kMaxFast because
15181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // index 0 is reserved for normal mixer's submix;
15281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // index is allocated statically at track creation time
15381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // but the slot is only used if track is active
15481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    FastTrackUnderruns  mObservedUnderruns; // Most recently observed value of
15581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // mFastMixerDumpState.mTracks[mFastIndex].mUnderruns
15681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    volatile float      mCachedVolume;  // combined master volume and stream type volume;
15781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                        // 'volatile' means accessed without lock or
15881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                        // barrier, but is read/written atomically
1595736c35b841de56ce394b4879389f669b61425e6Glenn Kasten    bool                mIsInvalid; // non-resettable latch, set by invalidate()
1609f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten    AudioTrackServerProxy*  mAudioTrackServerProxy;
161bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    bool                mResumeToStopping; // track was paused in stopping state.
1627844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George    bool                mFlushHwPending; // track requests for thread flush
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 bool isTimedTrack() const { return true; }
19581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual size_t framesReady() const;
19681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
19781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // AudioBufferProvider interface
19881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer,
19981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                   int64_t pts);
20081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
20181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
20281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Client/App facing methods.
20381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t    allocateTimedBuffer(size_t size,
20481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    sp<IMemory>* buffer);
20581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t    queueTimedBuffer(const sp<IMemory>& buffer,
20681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                 int64_t pts);
20781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t    setMediaTimeTransform(const LinearTransform& xform,
20881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                      TimedAudioTrack::TargetTimeline target);
20981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
21081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent  private:
21181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    TimedTrack(PlaybackThread *thread,
21281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               const sp<Client>& client,
21381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               audio_stream_type_t streamType,
21481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               uint32_t sampleRate,
21581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               audio_format_t format,
21681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               audio_channel_mask_t channelMask,
21781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               size_t frameCount,
21881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent               const sp<IMemory>& sharedBuffer,
219462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen               int sessionId,
220462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen               int uid);
22181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
22281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void timedYieldSamples_l(AudioBufferProvider::Buffer* buffer);
22381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void timedYieldSilence_l(uint32_t numFrames,
22481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                             AudioBufferProvider::Buffer* buffer);
22581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void trimTimedBufferQueue_l();
22681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void trimTimedBufferQueueHead_l(const char* logTag);
22781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void updateFramesPendingAfterTrim_l(const TimedBuffer& buf,
22881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                        const char* logTag);
22981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
23081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint64_t            mLocalTimeFreq;
23181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    LinearTransform     mLocalTimeToSampleTransform;
23281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    LinearTransform     mMediaTimeToSampleTransform;
23381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<MemoryDealer>    mTimedMemoryDealer;
23481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
23581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Vector<TimedBuffer> mTimedBufferQueue;
23681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                mQueueHeadInFlight;
23781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                mTrimQueueHeadOnRelease;
23881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t            mFramesPendingInQueue;
23981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
24081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint8_t*            mTimedSilenceBuffer;
24181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t            mTimedSilenceBufferSize;
24281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mutable Mutex       mTimedBufferQueueLock;
24381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                mTimedAudioOutputOnTime;
24481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    CCHelper            mCCHelper;
24581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
24681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex               mMediaTimeTransformLock;
24781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    LinearTransform     mMediaTimeTransform;
24881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                mMediaTimeTransformValid;
24981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    TimedAudioTrack::TargetTimeline mMediaTimeTransformTarget;
25081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};
25181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
25281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
25381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// playback track, used by DuplicatingThread
25481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentclass OutputTrack : public Track {
25581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
25681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
25781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    class Buffer : public AudioBufferProvider::Buffer {
25881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    public:
25981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int16_t *mBuffer;
26081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    };
26181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
26281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        OutputTrack(PlaybackThread *thread,
26381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                DuplicatingThread *sourceThread,
26481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                uint32_t sampleRate,
26581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                audio_format_t format,
26681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                audio_channel_mask_t channelMask,
267462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                                size_t frameCount,
268462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                                int uid);
26981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual             ~OutputTrack();
27081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
27181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t    start(AudioSystem::sync_event_t event =
27281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    AudioSystem::SYNC_EVENT_NONE,
27381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                             int triggerSession = 0);
27481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual void        stop();
27581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            bool        write(int16_t* data, uint32_t frames);
27681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            bool        bufferQueueEmpty() const { return mBufferQueue.size() == 0; }
27781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            bool        isActive() const { return mActive; }
27881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    const wp<ThreadBase>& thread() const { return mThread; }
27981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
28081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
28181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
28281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t            obtainBuffer(AudioBufferProvider::Buffer* buffer,
28381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                     uint32_t waitTimeMs);
28481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void                clearBufferQueue();
28581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
28681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Maximum number of pending buffers allocated by OutputTrack::write()
28781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    static const uint8_t kMaxOverFlowBuffers = 10;
28881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
28981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Vector < Buffer* >          mBufferQueue;
29081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    AudioBufferProvider::Buffer mOutBuffer;
29181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                        mActive;
29281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
293e3aa659e9cee7df5c12a80d285cc29ab3b2cbb39Glenn Kasten    AudioTrackClientProxy*      mClientProxy;
29481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};  // end of OutputTrack
295