@@ -108,14 +108,14 @@ impl ChannelMask {
108
108
| Self :: BACK_CENTER . bits ( )
109
109
| Self :: LOW_FREQUENCY . bits ( ) ,
110
110
) ) ,
111
- 8 => {
112
- Some ( Self (
113
- Self :: linear_surround ( ) . bits ( )
114
- | Self :: SIDE_LEFT . bits ( ) | Self :: SIDE_RIGHT . bits ( )
115
- | Self :: BACK_LEFT . bits ( ) | Self :: BACK_RIGHT . bits ( )
116
- | Self :: LOW_FREQUENCY . bits ( ) ,
117
- ) )
118
- } ,
111
+ 8 => Some ( Self (
112
+ Self :: linear_surround ( ) . bits ( )
113
+ | Self :: SIDE_LEFT . bits ( )
114
+ | Self :: SIDE_RIGHT . bits ( )
115
+ | Self :: BACK_LEFT . bits ( )
116
+ | Self :: BACK_RIGHT . bits ( )
117
+ | Self :: LOW_FREQUENCY . bits ( ) ,
118
+ ) ) ,
119
119
_ => None ,
120
120
}
121
121
}
@@ -143,14 +143,14 @@ impl ChannelMask {
143
143
| Self :: BACK_RIGHT . bits ( )
144
144
| Self :: LOW_FREQUENCY . bits ( ) ,
145
145
) ) ,
146
- 7 => {
147
- Some ( Self (
148
- Self :: linear_surround ( ) . bits ( )
149
- | Self :: SIDE_LEFT . bits ( ) | Self :: SIDE_RIGHT . bits ( )
150
- | Self :: BACK_LEFT . bits ( ) | Self :: BACK_RIGHT . bits ( )
151
- | Self :: LOW_FREQUENCY . bits ( ) ,
152
- ) )
153
- } ,
146
+ 7 => Some ( Self (
147
+ Self :: linear_surround ( ) . bits ( )
148
+ | Self :: SIDE_LEFT . bits ( )
149
+ | Self :: SIDE_RIGHT . bits ( )
150
+ | Self :: BACK_LEFT . bits ( )
151
+ | Self :: BACK_RIGHT . bits ( )
152
+ | Self :: LOW_FREQUENCY . bits ( ) ,
153
+ ) ) ,
154
154
_ => None ,
155
155
}
156
156
}
0 commit comments