Skip to content

Commit

Permalink
[code] remove unecessary htonl as srtp_stream_remove now expect an ss…
Browse files Browse the repository at this point in the history
…rc in host order
  • Loading branch information
Pierre Bodilis committed May 3, 2024
1 parent 05cd9d4 commit 75d2a8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srtp/srtp.c
Original file line number Diff line number Diff line change
Expand Up @@ -3247,7 +3247,7 @@ static srtp_err_status_t stream_update(srtp_t session,
old_index = stream->rtp_rdbx.index;
old_rtcp_rdb = stream->rtcp_rdb;

status = srtp_stream_remove(session, htonl(policy->ssrc.value));
status = srtp_stream_remove(session, policy->ssrc.value);
if (status) {
return status;
}
Expand Down

0 comments on commit 75d2a8c

Please sign in to comment.