Skip to content

Commit

Permalink
Remove Confusing Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannik Schleicher committed Dec 11, 2024
1 parent c8ef3ab commit ccbb3fc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions openh264/src/decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -343,8 +343,7 @@ pub struct DecodedYUV<'a> {
/// - if block size `1` (like for Y values), you will get `f32x8(012345678)`.
/// - if block size is `2` (for U and V), you will get `f32x8(00112233)`
macro_rules! f32x8_from_slice_with_blocksize {
($buf:expr, $block_size:expr) => {{
// Use 16 Y values
($buf:expr, $block_size:expr) => {{
wide::f32x8::from([
($buf[0] as f32),
($buf[1 / $block_size] as f32),
Expand Down

0 comments on commit ccbb3fc

Please sign in to comment.