summaryrefslogtreecommitdiffstats
path: root/ext/shout2
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-11-22 18:11:58 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-11-22 18:11:58 +0000
commit842a43f80230c65d024a5859c6b67dc601e7de64 (patch)
treea012246390f7c9192d05f2d1c4889e6e604a4bc3 /ext/shout2
parenta6e0bc89cb979d320dde7ca84150254e67fcd51c (diff)
fix up more enums
Original commit message from CVS: fix up more enums
Diffstat (limited to 'ext/shout2')
-rw-r--r--ext/shout2/gstshout2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/shout2/gstshout2.c b/ext/shout2/gstshout2.c
index d488b9ac..e87da679 100644
--- a/ext/shout2/gstshout2.c
+++ b/ext/shout2/gstshout2.c
@@ -96,10 +96,10 @@ gst_shout2send_protocol_get_type (void)
{
static GType shout2send_protocol_type = 0;
static GEnumValue shout2send_protocol[] = {
- {SHOUT2SEND_PROTOCOL_XAUDIOCAST, "1",
- "Xaudiocast Protocol (icecast 1.3.x)"},
- {SHOUT2SEND_PROTOCOL_ICY, "2", "Icy Protocol (ShoutCast)"},
- {SHOUT2SEND_PROTOCOL_HTTP, "3", "Http Protocol (icecast 2.x)"},
+ {SHOUT2SEND_PROTOCOL_XAUDIOCAST,
+ "Xaudiocast Protocol (icecast 1.3.x)", "xaudiocast"},
+ {SHOUT2SEND_PROTOCOL_ICY, "Icy Protocol (ShoutCast)", "icy"},
+ {SHOUT2SEND_PROTOCOL_HTTP, "Http Protocol (icecast 2.x)", "http"},
{0, NULL, NULL},
};