mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
gst-libs/gst/rtp/gstrtpbuffer.c: Fix the docs about the seqnum compare function, it returns a difference.
Original commit message from CVS: * gst-libs/gst/rtp/gstrtpbuffer.c: Fix the docs about the seqnum compare function, it returns a difference.
This commit is contained in:
parent
f75494578e
commit
5b8afead80
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-04-25 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst-libs/gst/rtp/gstrtpbuffer.c:
|
||||
Fix the docs about the seqnum compare function, it returns a difference.
|
||||
|
||||
2008-04-24 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* ext/alsa/gstalsadeviceprobe.c:
|
||||
|
|
|
@ -1030,10 +1030,11 @@ gst_rtp_buffer_default_clock_rate (guint8 payload_type)
|
|||
* @seqnum1: a sequence number
|
||||
* @seqnum2: a sequence number
|
||||
*
|
||||
* Compare two sequence numbers, taking care of wraparounds.
|
||||
* Compare two sequence numbers, taking care of wraparounds. This function
|
||||
* returns the difference between @seqnum1 and @seqnum2.
|
||||
*
|
||||
* Returns: -1 if @seqnum1 is before @seqnum2, 0 if they are equal or 1 if
|
||||
* @seqnum1 is bigger than @segnum2.
|
||||
* Returns: a negative value if @seqnum1 is before @seqnum2, 0 if they are equal
|
||||
* or a positive value if @seqnum1 is bigger than @segnum2.
|
||||
*
|
||||
* Since: 0.10.15
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue