commit | d26dc50abbad068cd1a673f204fa538c1c61bdb2 | [log] [tgz] |
---|---|---|
author | Steven Moreland <smoreland@google.com> | Tue Nov 29 14:07:27 2016 -0800 |
committer | Steven Moreland <smoreland@google.com> | Tue Nov 29 14:22:10 2016 -0800 |
tree | c006b438bb938bedb0235a25e848f437cae2ee2a | |
parent | f81ef54bdc010ee35d7926a45fe039059193a346 [diff] [blame] |
Always specify underlying enum type. Bug: 33197891 Test: compiles Change-Id: I3d4822ea9a665708302d3bd1460425fddf1dcda9
diff --git a/audio/effect/2.0/IDownmixEffect.hal b/audio/effect/2.0/IDownmixEffect.hal index 817e14c..06409a3 100644 --- a/audio/effect/2.0/IDownmixEffect.hal +++ b/audio/effect/2.0/IDownmixEffect.hal
@@ -20,7 +20,7 @@ import IEffect; interface IDownmixEffect extends IEffect { - enum Type { + enum Type : int32_t { STRIP, // throw away the extra channels FOLD // mix the extra channels with FL/FR };