From d821d8b783933e8fdded4ab5e52caea33e145e53 Mon Sep 17 00:00:00 2001 From: Thijs Vermeir Date: Tue, 22 Jan 2008 15:37:49 +0000 Subject: [PATCH] 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. --- ChangeLog | 8 ++++++++ common | 2 +- gst-libs/gst/rtp/gstrtpbuffer.c | 6 +++--- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 940ed4e01d..334605f41b 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 0efbab89d3..662f544d56 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 23266851ad..7284adddf8 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 */