Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Serial-ATA committed Aug 29, 2024
1 parent 03047bb commit 18d2c04
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions lofty/src/properties/channel_mask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,14 @@ impl ChannelMask {
| Self::BACK_CENTER.bits()
| Self::LOW_FREQUENCY.bits(),
)),
8 => {
Some(Self(
Self::linear_surround().bits()
| Self::SIDE_LEFT.bits() | Self::SIDE_RIGHT.bits()
| Self::BACK_LEFT.bits() | Self::BACK_RIGHT.bits()
| Self::LOW_FREQUENCY.bits(),
))
},
8 => Some(Self(
Self::linear_surround().bits()
| Self::SIDE_LEFT.bits()
| Self::SIDE_RIGHT.bits()
| Self::BACK_LEFT.bits()
| Self::BACK_RIGHT.bits()
| Self::LOW_FREQUENCY.bits(),
)),
_ => None,
}
}
Expand Down Expand Up @@ -143,14 +143,14 @@ impl ChannelMask {
| Self::BACK_RIGHT.bits()
| Self::LOW_FREQUENCY.bits(),
)),
7 => {
Some(Self(
Self::linear_surround().bits()
| Self::SIDE_LEFT.bits() | Self::SIDE_RIGHT.bits()
| Self::BACK_LEFT.bits() | Self::BACK_RIGHT.bits()
| Self::LOW_FREQUENCY.bits(),
))
},
7 => Some(Self(
Self::linear_surround().bits()
| Self::SIDE_LEFT.bits()
| Self::SIDE_RIGHT.bits()
| Self::BACK_LEFT.bits()
| Self::BACK_RIGHT.bits()
| Self::LOW_FREQUENCY.bits(),
)),
_ => None,
}
}
Expand Down

0 comments on commit 18d2c04

Please sign in to comment.