diff options
| author | Glenn Kasten <gkasten@google.com> | 2012-11-06 15:03:34 -0800 |
|---|---|---|
| committer | Glenn Kasten <gkasten@google.com> | 2012-11-06 17:25:22 -0800 |
| commit | e0b07179a48ee50fda931d2aa1b3c751d167e4d7 (patch) | |
| tree | d495cc851dba53652011108297d100e64a4c4acd /include | |
| parent | 48c6b2628f8a6037309c7957b07129d850187aa3 (diff) | |
| download | frameworks_av-e0b07179a48ee50fda931d2aa1b3c751d167e4d7.zip frameworks_av-e0b07179a48ee50fda931d2aa1b3c751d167e4d7.tar.gz frameworks_av-e0b07179a48ee50fda931d2aa1b3c751d167e4d7.tar.bz2 | |
Remove CBLK_FAST from control block flags
This is part of a series to clean up the control block.
Change-Id: Ic881a3560d9547cb63fcc0cefec87aa3da480e0d
Diffstat (limited to 'include')
| -rw-r--r-- | include/media/IAudioFlinger.h | 2 | ||||
| -rw-r--r-- | include/private/media/AudioTrackShared.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/include/media/IAudioFlinger.h b/include/media/IAudioFlinger.h index 359780e..0aa48c6 100644 --- a/include/media/IAudioFlinger.h +++ b/include/media/IAudioFlinger.h @@ -62,7 +62,7 @@ public: audio_format_t format, audio_channel_mask_t channelMask, int frameCount, - track_flags_t flags, + track_flags_t *flags, const sp<IMemory>& sharedBuffer, audio_io_handle_t output, pid_t tid, // -1 means unused, otherwise must be valid non-0 diff --git a/include/private/media/AudioTrackShared.h b/include/private/media/AudioTrackShared.h index 6a86a00..141078f 100644 --- a/include/private/media/AudioTrackShared.h +++ b/include/private/media/AudioTrackShared.h @@ -41,7 +41,6 @@ namespace android { #define CBLK_DISABLED 0x10 // track disabled by AudioFlinger due to underrun, need to re-start #define CBLK_RESTORING 0x20 // track is being restored after invalidation by AudioFlinger #define CBLK_RESTORED 0x40 // track has been restored after invalidation by AudioFlinger -#define CBLK_FAST 0x80 // AudioFlinger successfully created a fast track // Important: do not add any virtual methods, including ~ struct audio_track_cblk_t |
