Skip to content

Commit

Permalink
Fix testFFmpegFrameFilterMultipleInputs expecting incorrect number of…
Browse files Browse the repository at this point in the history
… audio channels.
  • Loading branch information
Josh Bultman committed Dec 2, 2024
1 parent e5c7b15 commit 4135b46
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ public void testFFmpegFrameFilterMultipleInputs() {
d++;
assertEquals(4, frame3.audioChannels);
assertEquals(1, frame3.samples.length);
assertTrue(frame3.samples[0] instanceof ByteBuffer);
assertTrue(frame3.samples[0] instanceof ShortBuffer);
assertEquals(frame2.samples.length, frame3.samples.length);
assertEquals(frame2.samples[0].limit(), frame3.samples[0].limit());
assertEquals(2 * frame2.samples[0].limit(), frame3.samples[0].limit());
}
}
}
Expand Down

0 comments on commit 4135b46

Please sign in to comment.