Skip to content

Commit

Permalink
fix(mmserver): never use a 0 audio stream_seq
Browse files Browse the repository at this point in the history
It's forbidden by the protocol.
  • Loading branch information
colinmarc committed Oct 21, 2024
1 parent f6f6db3 commit 632bcb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mm-server/src/compositor/audio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ impl EncodePipeline {
server_close_tx: close_tx,

compositor,
stream_seq: 0,
stream_seq: 1,

encoder: None,
done_tx,
Expand Down

0 comments on commit 632bcb1

Please sign in to comment.