Skip to content

Commit

Permalink
remove ssrc 0 log line
Browse files Browse the repository at this point in the history
  • Loading branch information
z-dule committed Nov 22, 2024
1 parent cbe6919 commit 82250cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/jsflow/jsflow.c
Original file line number Diff line number Diff line change
Expand Up @@ -1712,7 +1712,9 @@ void pc_set_audio_level(int self,
conf_member_set_audio_level(cm, audio_level);
}
else {
warning("jsflow(%p): no conf member for ssrc: %u\n", jf, ssrc);
if (ssrc != 0) {
warning("jsflow(%p): no conf member for ssrc: %u\n", jf, ssrc);
}
}
}

Expand Down

0 comments on commit 82250cc

Please sign in to comment.