mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 20:42:30 +00:00
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:
parent
e0204938a8
commit
ab77906a37
1 changed files with 0 additions and 2 deletions
|
@ -1000,11 +1000,9 @@ gst_rtp_h261_pay_init (GstRtpH261Pay * pay)
|
||||||
static void
|
static void
|
||||||
gst_rtp_h261_pay_class_init (GstRtpH261PayClass * klass)
|
gst_rtp_h261_pay_class_init (GstRtpH261PayClass * klass)
|
||||||
{
|
{
|
||||||
GObjectClass *gobject_class;
|
|
||||||
GstElementClass *element_class;
|
GstElementClass *element_class;
|
||||||
GstRTPBasePayloadClass *gstrtpbasepayload_class;
|
GstRTPBasePayloadClass *gstrtpbasepayload_class;
|
||||||
|
|
||||||
gobject_class = G_OBJECT_CLASS (klass);
|
|
||||||
element_class = GST_ELEMENT_CLASS (klass);
|
element_class = GST_ELEMENT_CLASS (klass);
|
||||||
gstrtpbasepayload_class = GST_RTP_BASE_PAYLOAD_CLASS (klass);
|
gstrtpbasepayload_class = GST_RTP_BASE_PAYLOAD_CLASS (klass);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue