blob: 628f5af28c641f566dfc755d7afe7e57dbeaccad [file] [log] [blame]
Eric Laurent81784c32012-11-19 14:55:58 -08001/*
2**
3** Copyright 2012, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#ifndef INCLUDING_FROM_AUDIOFLINGER_H
19 #error This header file should only be included from AudioFlinger.h
20#endif
21
22// playback track
23class Track : public TrackBase, public VolumeProvider {
24public:
25 Track( PlaybackThread *thread,
26 const sp<Client>& client,
27 audio_stream_type_t streamType,
28 uint32_t sampleRate,
29 audio_format_t format,
30 audio_channel_mask_t channelMask,
31 size_t frameCount,
32 const sp<IMemory>& sharedBuffer,
33 int sessionId,
34 IAudioFlinger::track_flags_t flags);
35 virtual ~Track();
36
37 static void appendDumpHeader(String8& result);
38 void dump(char* buffer, size_t size);
39 virtual status_t start(AudioSystem::sync_event_t event =
40 AudioSystem::SYNC_EVENT_NONE,
41 int triggerSession = 0);
42 virtual void stop();
43 void pause();
44
45 void flush();
46 void destroy();
Eric Laurent81784c32012-11-19 14:55:58 -080047 int name() const { return mName; }
48
Glenn Kasten9f80dd22012-12-18 15:57:32 -080049 virtual uint32_t sampleRate() const;
50
Eric Laurent81784c32012-11-19 14:55:58 -080051 audio_stream_type_t streamType() const {
52 return mStreamType;
53 }
Eric Laurentbfb1b832013-01-07 09:53:42 -080054 bool isOffloaded() const { return (mFlags & IAudioFlinger::TRACK_OFFLOAD) != 0; }
55 status_t setParameters(const String8& keyValuePairs);
Eric Laurent81784c32012-11-19 14:55:58 -080056 status_t attachAuxEffect(int EffectId);
57 void setAuxBuffer(int EffectId, int32_t *buffer);
58 int32_t *auxBuffer() const { return mAuxBuffer; }
59 void setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
60 int16_t *mainBuffer() const { return mMainBuffer; }
61 int auxEffectId() const { return mAuxEffectId; }
62
63// implement FastMixerState::VolumeProvider interface
64 virtual uint32_t getVolumeLR();
65
66 virtual status_t setSyncEvent(const sp<SyncEvent>& event);
67
68protected:
69 // for numerous
70 friend class PlaybackThread;
71 friend class MixerThread;
72 friend class DirectOutputThread;
Eric Laurentbfb1b832013-01-07 09:53:42 -080073 friend class OffloadThread;
Eric Laurent81784c32012-11-19 14:55:58 -080074
75 Track(const Track&);
76 Track& operator = (const Track&);
77
78 // AudioBufferProvider interface
79 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer,
80 int64_t pts = kInvalidPTS);
81 // releaseBuffer() not overridden
82
83 virtual size_t framesReady() const;
84
Glenn Kastenc9b2e202013-02-26 11:32:32 -080085 bool isPausing() const { return mState == PAUSING; }
86 bool isPaused() const { return mState == PAUSED; }
87 bool isResuming() const { return mState == RESUMING; }
Eric Laurent81784c32012-11-19 14:55:58 -080088 bool isReady() const;
89 void setPaused() { mState = PAUSED; }
90 void reset();
91
92 bool isOutputTrack() const {
93 return (mStreamType == AUDIO_STREAM_CNT);
94 }
95
96 sp<IMemory> sharedBuffer() const { return mSharedBuffer; }
97
98 // framesWritten is cumulative, never reset, and is shared all tracks
99 // audioHalFrames is derived from output latency
100 // FIXME parameters not needed, could get them from the thread
101 bool presentationComplete(size_t framesWritten, size_t audioHalFrames);
102
103public:
104 void triggerEvents(AudioSystem::sync_event_t type);
Glenn Kasten5736c352012-12-04 12:12:34 -0800105 void invalidate();
106 bool isInvalid() const { return mIsInvalid; }
Eric Laurent81784c32012-11-19 14:55:58 -0800107 virtual bool isTimedTrack() const { return false; }
108 bool isFastTrack() const { return (mFlags & IAudioFlinger::TRACK_FAST) != 0; }
Glenn Kastend054c322013-07-12 12:59:20 -0700109 int fastIndex() const { return mFastIndex; }
Eric Laurent81784c32012-11-19 14:55:58 -0800110
111protected:
112
Eric Laurent81784c32012-11-19 14:55:58 -0800113 // FILLED state is used for suppressing volume ramp at begin of playing
114 enum {FS_INVALID, FS_FILLING, FS_FILLED, FS_ACTIVE};
115 mutable uint8_t mFillingUpStatus;
116 int8_t mRetryCount;
117 const sp<IMemory> mSharedBuffer;
118 bool mResetDone;
119 const audio_stream_type_t mStreamType;
120 int mName; // track name on the normal mixer,
121 // allocated statically at track creation time,
122 // and is even allocated (though unused) for fast tracks
123 // FIXME don't allocate track name for fast tracks
124 int16_t *mMainBuffer;
125 int32_t *mAuxBuffer;
126 int mAuxEffectId;
127 bool mHasVolumeController;
128 size_t mPresentationCompleteFrames; // number of frames written to the
129 // audio HAL when this track will be fully rendered
130 // zero means not monitoring
131private:
132 IAudioFlinger::track_flags_t mFlags;
133
134 // The following fields are only for fast tracks, and should be in a subclass
135 int mFastIndex; // index within FastMixerState::mFastTracks[];
136 // either mFastIndex == -1 if not isFastTrack()
137 // or 0 < mFastIndex < FastMixerState::kMaxFast because
138 // index 0 is reserved for normal mixer's submix;
139 // index is allocated statically at track creation time
140 // but the slot is only used if track is active
141 FastTrackUnderruns mObservedUnderruns; // Most recently observed value of
142 // mFastMixerDumpState.mTracks[mFastIndex].mUnderruns
143 uint32_t mUnderrunCount; // Counter of total number of underruns, never reset
144 volatile float mCachedVolume; // combined master volume and stream type volume;
145 // 'volatile' means accessed without lock or
146 // barrier, but is read/written atomically
Glenn Kasten5736c352012-12-04 12:12:34 -0800147 bool mIsInvalid; // non-resettable latch, set by invalidate()
Glenn Kasten9f80dd22012-12-18 15:57:32 -0800148 AudioTrackServerProxy* mAudioTrackServerProxy;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800149 bool mResumeToStopping; // track was paused in stopping state.
Eric Laurent81784c32012-11-19 14:55:58 -0800150}; // end of Track
151
152class TimedTrack : public Track {
153 public:
154 static sp<TimedTrack> create(PlaybackThread *thread,
155 const sp<Client>& client,
156 audio_stream_type_t streamType,
157 uint32_t sampleRate,
158 audio_format_t format,
159 audio_channel_mask_t channelMask,
160 size_t frameCount,
161 const sp<IMemory>& sharedBuffer,
162 int sessionId);
163 virtual ~TimedTrack();
164
165 class TimedBuffer {
166 public:
167 TimedBuffer();
168 TimedBuffer(const sp<IMemory>& buffer, int64_t pts);
169 const sp<IMemory>& buffer() const { return mBuffer; }
170 int64_t pts() const { return mPTS; }
171 uint32_t position() const { return mPosition; }
172 void setPosition(uint32_t pos) { mPosition = pos; }
173 private:
174 sp<IMemory> mBuffer;
175 int64_t mPTS;
176 uint32_t mPosition;
177 };
178
179 // Mixer facing methods.
180 virtual bool isTimedTrack() const { return true; }
181 virtual size_t framesReady() const;
182
183 // AudioBufferProvider interface
184 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer,
185 int64_t pts);
186 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
187
188 // Client/App facing methods.
189 status_t allocateTimedBuffer(size_t size,
190 sp<IMemory>* buffer);
191 status_t queueTimedBuffer(const sp<IMemory>& buffer,
192 int64_t pts);
193 status_t setMediaTimeTransform(const LinearTransform& xform,
194 TimedAudioTrack::TargetTimeline target);
195
196 private:
197 TimedTrack(PlaybackThread *thread,
198 const sp<Client>& client,
199 audio_stream_type_t streamType,
200 uint32_t sampleRate,
201 audio_format_t format,
202 audio_channel_mask_t channelMask,
203 size_t frameCount,
204 const sp<IMemory>& sharedBuffer,
205 int sessionId);
206
207 void timedYieldSamples_l(AudioBufferProvider::Buffer* buffer);
208 void timedYieldSilence_l(uint32_t numFrames,
209 AudioBufferProvider::Buffer* buffer);
210 void trimTimedBufferQueue_l();
211 void trimTimedBufferQueueHead_l(const char* logTag);
212 void updateFramesPendingAfterTrim_l(const TimedBuffer& buf,
213 const char* logTag);
214
215 uint64_t mLocalTimeFreq;
216 LinearTransform mLocalTimeToSampleTransform;
217 LinearTransform mMediaTimeToSampleTransform;
218 sp<MemoryDealer> mTimedMemoryDealer;
219
220 Vector<TimedBuffer> mTimedBufferQueue;
221 bool mQueueHeadInFlight;
222 bool mTrimQueueHeadOnRelease;
223 uint32_t mFramesPendingInQueue;
224
225 uint8_t* mTimedSilenceBuffer;
226 uint32_t mTimedSilenceBufferSize;
227 mutable Mutex mTimedBufferQueueLock;
228 bool mTimedAudioOutputOnTime;
229 CCHelper mCCHelper;
230
231 Mutex mMediaTimeTransformLock;
232 LinearTransform mMediaTimeTransform;
233 bool mMediaTimeTransformValid;
234 TimedAudioTrack::TargetTimeline mMediaTimeTransformTarget;
235};
236
237
238// playback track, used by DuplicatingThread
239class OutputTrack : public Track {
240public:
241
242 class Buffer : public AudioBufferProvider::Buffer {
243 public:
244 int16_t *mBuffer;
245 };
246
247 OutputTrack(PlaybackThread *thread,
248 DuplicatingThread *sourceThread,
249 uint32_t sampleRate,
250 audio_format_t format,
251 audio_channel_mask_t channelMask,
252 size_t frameCount);
253 virtual ~OutputTrack();
254
255 virtual status_t start(AudioSystem::sync_event_t event =
256 AudioSystem::SYNC_EVENT_NONE,
257 int triggerSession = 0);
258 virtual void stop();
259 bool write(int16_t* data, uint32_t frames);
260 bool bufferQueueEmpty() const { return mBufferQueue.size() == 0; }
261 bool isActive() const { return mActive; }
262 const wp<ThreadBase>& thread() const { return mThread; }
263
264private:
265
Eric Laurent81784c32012-11-19 14:55:58 -0800266 status_t obtainBuffer(AudioBufferProvider::Buffer* buffer,
267 uint32_t waitTimeMs);
268 void clearBufferQueue();
269
270 // Maximum number of pending buffers allocated by OutputTrack::write()
271 static const uint8_t kMaxOverFlowBuffers = 10;
272
273 Vector < Buffer* > mBufferQueue;
274 AudioBufferProvider::Buffer mOutBuffer;
275 bool mActive;
276 DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
Glenn Kastene3aa6592012-12-04 12:22:46 -0800277 AudioTrackClientProxy* mClientProxy;
Eric Laurent81784c32012-11-19 14:55:58 -0800278}; // end of OutputTrack