Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b1f5b0dd authored by Glenn Kasten's avatar Glenn Kasten Committed by Android (Google) Code Review
Browse files

Merge "Fix clang warnings in AudioFlinger"

parents 43bdc1de 01d3acba
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ namespace android {

// ----------------------------------------------------------------------------

class effect_param_cblk_t;
struct effect_param_cblk_t;

// ----------------------------------------------------------------------------

+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ namespace android {

// ----------------------------------------------------------------------------

class audio_track_cblk_t;
struct audio_track_cblk_t;
class AudioRecordClientProxy;

// ----------------------------------------------------------------------------
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ namespace android {

// ----------------------------------------------------------------------------

class audio_track_cblk_t;
struct audio_track_cblk_t;
class AudioTrackClientProxy;
class StaticAudioTrackClientProxy;

+2 −2
Original line number Diff line number Diff line
@@ -60,8 +60,8 @@

namespace android {

class audio_track_cblk_t;
class effect_param_cblk_t;
struct audio_track_cblk_t;
struct effect_param_cblk_t;
class AudioMixer;
class AudioBuffer;
class AudioResampler;
+1 −1
Original line number Diff line number Diff line
@@ -216,7 +216,7 @@ private:
        NBLog::Writer*  mLog;
        int32_t         reserved[1];
        // FIXME allocate dynamically to save some memory when maxNumTracks < MAX_NUM_TRACKS
        track_t         tracks[MAX_NUM_TRACKS]; __attribute__((aligned(32)));
        track_t         tracks[MAX_NUM_TRACKS] __attribute__((aligned(32)));
    };

    // AudioBufferProvider that wraps a track AudioBufferProvider by a call to a downmix effect
Loading