mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
rtpsession: fix comment to refer to buffers instead of groups
One comments in gst_rtp_session_chain_send_rtp_common() is referring to groups in a buffer list, however this concept of "group" comes from GStreamer 0.10 and does not exist anymore in GStreamer 1.0, so update the comment to refer to buffers instead.
This commit is contained in:
parent
e98b0ca8da
commit
114de8cc96
1 changed files with 2 additions and 2 deletions
|
@ -2305,8 +2305,8 @@ gst_rtp_session_chain_send_rtp_common (GstRtpSession * rtpsession,
|
|||
if (is_list) {
|
||||
GstBuffer *buffer = NULL;
|
||||
|
||||
/* All groups in a list have the same timestamp.
|
||||
* So, just take it from the first group. */
|
||||
/* All buffers in a list have the same timestamp.
|
||||
* So, just take it from the first buffer. */
|
||||
buffer = gst_buffer_list_get (GST_BUFFER_LIST_CAST (data), 0);
|
||||
if (buffer)
|
||||
timestamp = GST_BUFFER_PTS (buffer);
|
||||
|
|
Loading…
Reference in a new issue