summaryrefslogtreecommitdiffstats
path: root/include/private
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2012-11-12 15:46:10 -0800
committerGlenn Kasten <gkasten@google.com>2012-11-13 08:51:39 -0800
commitb36a7a68af073b1e7fd5cad6aa2c52223fd30efd (patch)
treeffab4964484a5eac7e9ca8f50a40c03cf4cd4e82 /include/private
parent93a7efd45c28becb994f0818ea29c00ec45eea57 (diff)
downloadframeworks_av-b36a7a68af073b1e7fd5cad6aa2c52223fd30efd.zip
frameworks_av-b36a7a68af073b1e7fd5cad6aa2c52223fd30efd.tar.gz
frameworks_av-b36a7a68af073b1e7fd5cad6aa2c52223fd30efd.tar.bz2
Simplify AudioRecord::restoreTrack_l()
Finish removing CBLK_RESTORING and CBLK_RESTORED from control block flags, and remove constant RESTORE_TIMEOUT_MS. Also minor cleanup: - Cache mCblk in local variable cblk and make cblk allocatable in a register. - Use "iMem" for sp<IMemory>. - Add missing error log to AudioRecord; it was already in AudioTrack. This is part of a series to clean up the control block. Change-Id: Ia5f5ab4763c392bc06a45851b167ddaee29e3455
Diffstat (limited to 'include/private')
-rw-r--r--include/private/media/AudioTrackShared.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/private/media/AudioTrackShared.h b/include/private/media/AudioTrackShared.h
index ac5372f..3063448 100644
--- a/include/private/media/AudioTrackShared.h
+++ b/include/private/media/AudioTrackShared.h
@@ -31,17 +31,12 @@ namespace android {
// init time
#define MAX_RUN_TIMEOUT_MS 1000
#define WAIT_PERIOD_MS 10
-// AudioTrack no longer uses this, it is for AudioRecord only:
-#define RESTORE_TIMEOUT_MS 5000 // Maximum waiting time for a track to be restored
#define CBLK_UNDERRUN 0x01 // set: underrun (out) or overrrun (in), clear: no underrun or overrun
#define CBLK_FORCEREADY 0x02 // set: track is considered ready immediately by AudioFlinger,
// clear: track is ready when buffer full
#define CBLK_INVALID 0x04 // track buffer invalidated by AudioFlinger, need to re-create
#define CBLK_DISABLED 0x08 // track disabled by AudioFlinger due to underrun, need to re-start
-// AudioTrack no longer uses these, they are for AudioRecord only:
-#define CBLK_RESTORING 0x10 // track is being restored after invalidation by AudioFlinger
-#define CBLK_RESTORED 0x20 // track has been restored after invalidation by AudioFlinger
// Important: do not add any virtual methods, including ~
struct audio_track_cblk_t