summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2012-04-24 15:38:44 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-04-24 15:38:44 +0200
commit631e93a642d3f4aacd6ab4ca2c1b5f61314f93f4 (patch)
treedfcc6f83f95a3884c213f601807f9c9ed0d1dcd9
parentba617556d182d4fd107d62e8f16852e85022f6f5 (diff)
gnlcomposition: Use correct enum type
-rw-r--r--gnl/gnlcomposition.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnl/gnlcomposition.c b/gnl/gnlcomposition.c
index d29b2f4..ae21807 100644
--- a/gnl/gnlcomposition.c
+++ b/gnl/gnlcomposition.c
@@ -845,7 +845,7 @@ get_new_seek_event (GnlComposition * comp, gboolean initial,
GST_DEBUG_OBJECT (comp, "initial:%d", initial);
/* remove the seek flag */
if (!(initial))
- flags = priv->segment->flags;
+ flags = (GstSeekFlags) priv->segment->flags;
else
flags = GST_SEEK_FLAG_ACCURATE | GST_SEEK_FLAG_FLUSH;