summaryrefslogtreecommitdiffstats
path: root/gst/oldcore
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 /gst/oldcore
parenta6e0bc89cb979d320dde7ca84150254e67fcd51c (diff)
fix up more enums
Original commit message from CVS: fix up more enums
Diffstat (limited to 'gst/oldcore')
-rw-r--r--gst/oldcore/gstaggregator.c6
-rw-r--r--gst/oldcore/gstshaper.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/gst/oldcore/gstaggregator.c b/gst/oldcore/gstaggregator.c
index d8dad7e2..71d8d50a 100644
--- a/gst/oldcore/gstaggregator.c
+++ b/gst/oldcore/gstaggregator.c
@@ -69,9 +69,9 @@ gst_aggregator_sched_get_type (void)
{
static GType aggregator_sched_type = 0;
static GEnumValue aggregator_sched[] = {
- {AGGREGATOR_LOOP, "1", "Loop Based"},
- {AGGREGATOR_LOOP_SELECT, "3", "Loop Based Select"},
- {AGGREGATOR_CHAIN, "4", "Chain Based"},
+ {AGGREGATOR_LOOP, "Loop Based", "loop"},
+ {AGGREGATOR_LOOP_SELECT, "Loop Based Select", "loop-select"},
+ {AGGREGATOR_CHAIN, "Chain Based", "chain"},
{0, NULL, NULL},
};
diff --git a/gst/oldcore/gstshaper.c b/gst/oldcore/gstshaper.c
index 9f8d4780..56f84b8a 100644
--- a/gst/oldcore/gstshaper.c
+++ b/gst/oldcore/gstshaper.c
@@ -77,8 +77,8 @@ gst_shaper_policy_get_type (void)
{
static GType shaper_policy_type = 0;
static GEnumValue shaper_policy[] = {
- {SHAPER_POLICY_TIMESTAMPS, "1", "sync on timestamps"},
- {SHAPER_POLICY_BUFFERSIZE, "2", "sync on buffer size"},
+ {SHAPER_POLICY_TIMESTAMPS, "sync on timestamps", "timestamp"},
+ {SHAPER_POLICY_BUFFERSIZE, "sync on buffer size", "size"},
{0, NULL, NULL},
};