Merge "g711 channel count limits"

gugelfrei
Ray Essick 5 years ago committed by Gerrit Code Review
commit e17f0c1c1e

@ -73,8 +73,8 @@ public:
addParameter(
DefineParam(mChannelCount, C2_PARAMKEY_CHANNEL_COUNT)
.withDefault(new C2StreamChannelCountInfo::output(0u, 6))
.withFields({C2F(mChannelCount, value).equalTo(1)})
.withDefault(new C2StreamChannelCountInfo::output(0u, 1))
.withFields({C2F(mChannelCount, value).inRange(1, 6)})
.withSetter(Setter<decltype(*mChannelCount)>::StrictValueWithNoDeps)
.build());

Loading…
Cancel
Save