Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-07-03 15:29:16 +0300
committerSebastian Dröge <sebastian@centricular.com>2015-07-03 15:29:16 +0300
commitab77906a37e3442937d6870398a6de65c33db2b9 (patch)
treea4f35f57eaa63fad8dd57d36e46a9f7517a6e814
parente0204938a800bfdd52802018a688706ba0b96ced (diff)
rtph261pay: Fix compiler warning
gstrtph261pay.c: In function 'gst_rtp_h261_pay_class_init': gstrtph261pay.c:1003:17: error: variable 'gobject_class' set but not used [-Werror=unused-but-set-variable] GObjectClass *gobject_class;
-rw-r--r--gst/rtp/gstrtph261pay.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gst/rtp/gstrtph261pay.c b/gst/rtp/gstrtph261pay.c
index 34861a1a0..a1c384178 100644
--- a/gst/rtp/gstrtph261pay.c
+++ b/gst/rtp/gstrtph261pay.c
@@ -1000,11 +1000,9 @@ gst_rtp_h261_pay_init (GstRtpH261Pay * pay)
static void
gst_rtp_h261_pay_class_init (GstRtpH261PayClass * klass)
{
- GObjectClass *gobject_class;
GstElementClass *element_class;
GstRTPBasePayloadClass *gstrtpbasepayload_class;
- gobject_class = G_OBJECT_CLASS (klass);
element_class = GST_ELEMENT_CLASS (klass);
gstrtpbasepayload_class = GST_RTP_BASE_PAYLOAD_CLASS (klass);