summaryrefslogtreecommitdiff
path: root/ges/ges-enums.c
diff options
context:
space:
mode:
authorThibault Saunier <thibault.saunier@collabora.com>2014-02-17 12:34:04 +0100
committerThibault Saunier <thibault.saunier@collabora.com>2014-02-17 12:37:57 +0100
commitf921277ac20e3883d6817fc5e6464a9bdfba419f (patch)
tree8bc1f2efdb21e466dc784025122894289dfe00d5 /ges/ges-enums.c
parent387b234f3b2a4d5cb21995264367c4a0776fb60a (diff)
Rename TIMELINE_MODE_XXX to GES_PIPELINE_MODE_XXX so it corresponds to reality
First, it was not in any namespace, second the name of the enum is GESPipelineFlags.
Diffstat (limited to 'ges/ges-enums.c')
-rw-r--r--ges/ges-enums.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/ges/ges-enums.c b/ges/ges-enums.c
index f258f88d..69fe75c2 100644
--- a/ges/ges-enums.c
+++ b/ges/ges-enums.c
@@ -73,13 +73,16 @@ static void
register_ges_pipeline_flags (GType * id)
{
static const GFlagsValue values[] = {
- {C_ENUM (TIMELINE_MODE_PREVIEW_AUDIO), "TIMELINE_MODE_PREVIEW_AUDIO",
+ {C_ENUM (GES_PIPELINE_MODE_PREVIEW_AUDIO),
+ "GES_PIPELINE_MODE_PREVIEW_AUDIO",
"audio_preview"},
- {C_ENUM (TIMELINE_MODE_PREVIEW_VIDEO), "TIMELINE_MODE_PREVIEW_VIDEO",
+ {C_ENUM (GES_PIPELINE_MODE_PREVIEW_VIDEO),
+ "GES_PIPELINE_MODE_PREVIEW_VIDEO",
"video_preview"},
- {C_ENUM (TIMELINE_MODE_PREVIEW), "TIMELINE_MODE_PREVIEW", "full_preview"},
- {C_ENUM (TIMELINE_MODE_RENDER), "TIMELINE_MODE_RENDER", "render"},
- {C_ENUM (TIMELINE_MODE_SMART_RENDER), "TIMELINE_MODE_SMART_RENDER",
+ {C_ENUM (GES_PIPELINE_MODE_PREVIEW), "GES_PIPELINE_MODE_PREVIEW",
+ "full_preview"},
+ {C_ENUM (GES_PIPELINE_MODE_RENDER), "GES_PIPELINE_MODE_RENDER", "render"},
+ {C_ENUM (GES_PIPELINE_MODE_SMART_RENDER), "GES_PIPELINE_MODE_SMART_RENDER",
"smart_render"},
{0, NULL, NULL}
};