emotion gstreamer1: Use GST_PLAY_FLAG_VIS instead of the corresponding integer

This commit is contained in:
Sebastian Dröge 2014-01-12 19:26:08 +01:00
parent 5798e98571
commit c2f4967699
1 changed files with 1 additions and 1 deletions

View File

@ -1564,7 +1564,7 @@ _emotion_gstreamer_video_pipeline_parse(Emotion_Gstreamer *ev,
g_object_set(G_OBJECT(ev->pipeline), "vis-plugin", vis, NULL);
g_object_get(G_OBJECT(ev->pipeline), "flags", &flags, NULL);
flags |= 0x00000008;
flags |= GST_PLAY_FLAG_VIS;
g_object_set(G_OBJECT(ev->pipeline), "flags", flags, NULL);
}