Skip to content

Commit

Permalink
refactor unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Aug 16, 2024
1 parent 2672cc6 commit d2cf2c5
Show file tree
Hide file tree
Showing 5 changed files with 418 additions and 374 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,11 @@ private DummyMediaFormats() {
.ratio(16, 10)
.extensions("gif", "jpg", "png")
.build();
public static final MediaFormat RATIO_16_9 = create("ratio_16_9")
.label("Ratio (16:9)")
.ratio(16, 9)
.extensions("gif", "jpg", "png")
.build();
public static final MediaFormat RATIO_4_3 = create("ratio_4_3")
.label("Ratio (4:3)")
.ratio(4, 3)
Expand Down

This file was deleted.

Loading

0 comments on commit d2cf2c5

Please sign in to comment.