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 fce1be3 commit e5c7b15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public void testFFmpegFrameFilterMultipleInputs() {
}
if (frame3.samples != null) {
d++;
assertEquals(2, frame3.audioChannels);
assertEquals(4, frame3.audioChannels);
assertEquals(1, frame3.samples.length);
assertTrue(frame3.samples[0] instanceof ByteBuffer);
assertEquals(frame2.samples.length, frame3.samples.length);
Expand Down

0 comments on commit e5c7b15

Please sign in to comment.