mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
rtph265pay: Only mark the last fragment of an AU
Commit e721071dca
removed the check for
the end of fragmentation. As a result, all fragments of an AU's last
NALU were marked.
This commit is contained in:
parent
798f320ba7
commit
06b2bbd8c7
1 changed files with 1 additions and 1 deletions
|
@ -1068,7 +1068,7 @@ gst_rtp_h265_pay_payload_nal (GstRTPBasePayload * basepayload,
|
|||
|
||||
/* If it's the last fragment and the end of this au, mark the end of
|
||||
* slice */
|
||||
gst_rtp_buffer_set_marker (&rtp, marker);
|
||||
gst_rtp_buffer_set_marker (&rtp, end && marker);
|
||||
|
||||
/* FU Header */
|
||||
payload[2] = (start << 7) | (end << 6) | (nalType & 0x3f);
|
||||
|
|
Loading…
Reference in a new issue