mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
opusenc: Fixing "Unused var" compiling error for opus codec
https://bugzilla.gnome.org/show_bug.cgi?id=664815
This commit is contained in:
parent
8ac75d10fd
commit
64c3d73642
2 changed files with 0 additions and 4 deletions
|
@ -118,11 +118,9 @@ gst_opus_dec_class_init (GstOpusDecClass * klass)
|
|||
{
|
||||
GObjectClass *gobject_class;
|
||||
GstAudioDecoderClass *adclass;
|
||||
GstElementClass *gstelement_class;
|
||||
|
||||
gobject_class = (GObjectClass *) klass;
|
||||
adclass = (GstAudioDecoderClass *) klass;
|
||||
gstelement_class = (GstElementClass *) klass;
|
||||
|
||||
gobject_class->set_property = gst_opus_dec_set_property;
|
||||
gobject_class->get_property = gst_opus_dec_get_property;
|
||||
|
|
|
@ -218,11 +218,9 @@ static void
|
|||
gst_opus_enc_class_init (GstOpusEncClass * klass)
|
||||
{
|
||||
GObjectClass *gobject_class;
|
||||
GstElementClass *gstelement_class;
|
||||
GstAudioEncoderClass *base_class;
|
||||
|
||||
gobject_class = (GObjectClass *) klass;
|
||||
gstelement_class = (GstElementClass *) klass;
|
||||
base_class = (GstAudioEncoderClass *) klass;
|
||||
|
||||
gobject_class->set_property = gst_opus_enc_set_property;
|
||||
|
|
Loading…
Reference in a new issue