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;
This commit is contained in:
Sebastian Dröge 2015-07-03 14:29:16 +02:00
parent e0204938a8
commit ab77906a37

View file

@ -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);