diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-04-27 15:30:39 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-04-27 15:30:39 +0000 |
commit | 7fe2138eeae2250cdc772fdbbbd0ae2e5a2451f0 (patch) | |
tree | 601a62212775b5061241d788bf0155ff15f444ad | |
parent | a9a843b340ce3e18888cd860baee163dfda498dd (diff) |
gst/rtp/gstrtpilbcdepay.h: Fix mode property when specified as an arg.
Original commit message from CVS:
* gst/rtp/gstrtpilbcdepay.h:
Fix mode property when specified as an arg.
-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 |