commit | f3d7b0447cba998b74d835b9ab3b52a15904d35e | [log] [tgz] |
---|---|---|
author | Fletcher Woodruff <[email protected]> | Mon Nov 16 11:54:19 2020 -0700 |
committer | Commit Bot <[email protected]> | Tue Nov 17 22:19:06 2020 +0000 |
tree | f37a94bdf510c16c4067d7e47ebb4c17af3a9e23 | |
parent | b9fa13659edc747a1be2c6fbdbf1e98bd9a006f8 [diff] |
CRAS: fix clippy lint in audio_streams Pass SampleFormat by value to sample_bytes() function, since it implements Copy and is small. BUG=None TEST=None Change-Id: I7d87dc1db7dd5342e500b5cedf43400634daab5d Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/adhd/+/2541844 Reviewed-by: Chih-Yang Hsia <[email protected]> Tested-by: Fletcher Woodruff <[email protected]> Commit-Queue: Fletcher Woodruff <[email protected]>
diff --git a/audio_streams/src/audio_streams.rs b/audio_streams/src/audio_streams.rs index 3cb1173..8cdd0cb 100644 --- a/audio_streams/src/audio_streams.rs +++ b/audio_streams/src/audio_streams.rs
@@ -55,7 +55,7 @@ } impl SampleFormat { - pub fn sample_bytes(&self) -> usize { + pub fn sample_bytes(self) -> usize { use SampleFormat::*; match self { U8 => 1,