@@ -108,14 +108,14 @@ impl ChannelMask {
108108 | Self :: BACK_CENTER . bits ( )
109109 | Self :: LOW_FREQUENCY . bits ( ) ,
110110 ) ) ,
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+ ) ) ,
119119 _ => None ,
120120 }
121121 }
@@ -143,14 +143,14 @@ impl ChannelMask {
143143 | Self :: BACK_RIGHT . bits ( )
144144 | Self :: LOW_FREQUENCY . bits ( ) ,
145145 ) ) ,
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+ ) ) ,
154154 _ => None ,
155155 }
156156 }
0 commit comments