From e186b51e0a9834b287d7a509e960eaf1b688db75 Mon Sep 17 00:00:00 2001 From: Glenn Kasten Date: Thu, 14 Feb 2013 23:57:02 +0000 Subject: Revert "Temporary additional logging to investigate bug" This reverts commit 639482c24c911b125398b31883ba6d55faebe28b Change-Id: I11f2829072ab11e18b0663024f27bf31192f1d39 --- services/audioflinger/AudioMixer.h | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) (limited to 'services/audioflinger/AudioMixer.h') diff --git a/services/audioflinger/AudioMixer.h b/services/audioflinger/AudioMixer.h index f0ccd8e..fd21fda 100644 --- a/services/audioflinger/AudioMixer.h +++ b/services/audioflinger/AudioMixer.h @@ -28,7 +28,6 @@ #include #include -#include namespace android { @@ -77,7 +76,6 @@ public: MAIN_BUFFER = 0x4002, AUX_BUFFER = 0x4003, DOWNMIX_TYPE = 0X4004, - FAST_INDEX = 0x4005, // for debugging only // for target RESAMPLE SAMPLE_RATE = 0x4100, // Configure sample rate conversion on this track name; // parameter 'value' is the new sample rate in Hz. @@ -108,7 +106,6 @@ public: // Enable or disable an allocated track by name void enable(int name); void disable(int name); - bool enabled(int name); void setParameter(int name, int target, int param, void *value); @@ -203,10 +200,7 @@ private: int32_t sessionId; - int32_t fastIndex; - int32_t magic; - static const int kMagic = 0x54637281; - //int32_t padding[1]; + int32_t padding[2]; // 16-byte boundary @@ -216,12 +210,6 @@ private: void adjustVolumeRamp(bool aux); size_t getUnreleasedFrames() const { return resampler != NULL ? resampler->getUnreleasedFrames() : 0; }; - void checkMagic() { - if (magic != kMagic) { - ALOGE("magic=%#x fastIndex=%d", magic, fastIndex); - } - } - }; // pad to 32-bytes to fill cache line @@ -232,8 +220,7 @@ private: void (*hook)(state_t* state, int64_t pts); // one of process__*, never NULL int32_t *outputTemp; int32_t *resampleTemp; - NBLog::Writer* mLog; - int32_t reserved[1]; + int32_t reserved[2]; // FIXME allocate dynamically to save some memory when maxNumTracks < MAX_NUM_TRACKS track_t tracks[MAX_NUM_TRACKS]; __attribute__((aligned(32))); }; @@ -260,11 +247,6 @@ private: const uint32_t mSampleRate; - NBLog::Writer* mLog; - NBLog::Writer mDummyLog; -public: - void setLog(NBLog::Writer* log); -private: state_t mState __attribute__((aligned(32))); // effect descriptor for the downmixer used by the mixer -- cgit v1.1