Skip to content

Commit

Permalink
fix passing null
Browse files Browse the repository at this point in the history
  • Loading branch information
lastpeony committed Nov 27, 2024
1 parent 044a876 commit 8c0c187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/antmedia/muxer/Muxer.java
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ public String getFormat() {
*/
public void init(IScope scope, String name, int resolution, String subFolder, int videoBitrate, String mainTrackId) {
this.streamId = name;
init(scope, name, resolution, true, subFolder, videoBitrate, null);
init(scope, name, resolution, true, subFolder, videoBitrate, mainTrackId);
}

/**
Expand Down

0 comments on commit 8c0c187

Please sign in to comment.