Skip to content

Commit

Permalink
upipe_srt_sender: Set out of order flag to 0 as per the IETF document
Browse files Browse the repository at this point in the history
"In the case of live streaming, it is set to 0 allowing out of order delivery
      of a packet.  However, in this use case the Order Flag has to be
      ignored by the receiver. "
  • Loading branch information
kierank committed Nov 29, 2023
1 parent f3b4bac commit 498c45c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/upipe-srt/upipe_srt_sender.c
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ static inline void upipe_srt_sender_input(struct upipe *upipe, struct uref *uref
srt_set_data_packet_message_number(buf, seqnum);
srt_set_data_packet_seq(buf, seqnum);
srt_set_data_packet_position(buf, SRT_DATA_POSITION_ONLY);
srt_set_data_packet_order(buf, true);
srt_set_data_packet_order(buf, false);
srt_set_data_packet_retransmit(buf, false);

#ifdef UPIPE_HAVE_GCRYPT_H
Expand Down

0 comments on commit 498c45c

Please sign in to comment.