diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/rtp/gstrtpilbcdepay.h | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2007-04-27 Wim Taymans <wim@fluendo.com> + + * gst/rtp/gstrtpilbcdepay.h: + Fix mode property when specified as an arg. + 2007-04-26 Edward Hervey <edward@fluendo.com> * docs/plugins/gst-plugins-good-plugins-docs.sgml: diff --git a/gst/rtp/gstrtpilbcdepay.h b/gst/rtp/gstrtpilbcdepay.h index 6955bbbb..a9b30bd9 100644 --- a/gst/rtp/gstrtpilbcdepay.h +++ b/gst/rtp/gstrtpilbcdepay.h @@ -40,8 +40,8 @@ typedef struct _GstRTPiLBCDepayClass GstRTPiLBCDepayClass; (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_ILBC_DEPAY)) typedef enum { - GST_ILBC_MODE_20, - GST_ILBC_MODE_30 + GST_ILBC_MODE_20 = 20, + GST_ILBC_MODE_30 = 30 } GstiLBCMode; struct _GstRTPiLBCDepay |