From: Thijs Vermeir Date: Tue, 22 Jan 2008 15:37:49 +0000 (+0000) Subject: gst-libs/gst/rtp/gstrtpbuffer.c: Fix typos and wrong extension check. Fixes #511274. X-Git-Tag: 1.19.3~511^2~10727 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d821d8b783933e8fdded4ab5e52caea33e145e53;p=platform%2Fupstream%2Fgstreamer.git gst-libs/gst/rtp/gstrtpbuffer.c: Fix typos and wrong extension check. Fixes #511274. Original commit message from CVS: Patch by: Thijs Vermeir * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_get_extension_data): Fix typos and wrong extension check. Fixes #511274. --- diff --git a/ChangeLog b/ChangeLog index 940ed4e..334605f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-01-22 Wim Taymans + + Patch by: Thijs Vermeir + + * gst-libs/gst/rtp/gstrtpbuffer.c: + (gst_rtp_buffer_get_extension_data): + Fix typos and wrong extension check. Fixes #511274. + 2008-01-18 Jan Schmidt * po/sk.po: diff --git a/common b/common index 0efbab8..662f544 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 0efbab89d333b5d07cc7da1a501c38edf5bb4f72 +Subproject commit 662f544d56a6d6ef20b8ea5f56e975f9e139bc78 diff --git a/gst-libs/gst/rtp/gstrtpbuffer.c b/gst-libs/gst/rtp/gstrtpbuffer.c index 2326685..7284add 100644 --- a/gst-libs/gst/rtp/gstrtpbuffer.c +++ b/gst-libs/gst/rtp/gstrtpbuffer.c @@ -592,11 +592,11 @@ gst_rtp_buffer_set_extension (GstBuffer * buffer, gboolean extension) * @data: location for data * @wordlen: location for length of @data in 32 bits words * - * Get the extension data. @bits will contain the extrnsion 16 bits of custom + * Get the extension data. @bits will contain the extension 16 bits of custom * data. @data will point to the data in the extension and @wordlen will contain * the length of @data in 32 bits words. * - * If @buffer did not contain an extenstion, this function will return %FALSE + * If @buffer did not contain an extension, this function will return %FALSE * with @bits, @data and @wordlen unchanged. * * Returns: TRUE if @buffer had the extension bit set. @@ -613,7 +613,7 @@ gst_rtp_buffer_get_extension_data (GstBuffer * buffer, guint16 * bits, g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE); g_return_val_if_fail (GST_BUFFER_DATA (buffer) != NULL, FALSE); - if (GST_RTP_HEADER_EXTENSION (buffer)) + if (!GST_RTP_HEADER_EXTENSION (buffer)) return FALSE; /* move to the extension */