emotion: Fix missing include resulting in unknown type GstNavigationCommand

At least on the gstreamer1 version in Fedora 19 this include is needed. Glima
reported it as well and I think he also uses Fedora.

modules/emotion/gstreamer1/emotion_gstreamer.c:643:4: error: unknown type name
'GstNavigationCommand'

Even if other distros or gstreamer1 versions do not need this it should be safe
to add it here.
This commit is contained in:
Stefan Schmidt 2014-01-02 13:54:39 +01:00
parent 37c1c4e9f6
commit a440c8da27
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@
#include <glib-object.h>
#include <gst/video/gstvideosink.h>
#include <gst/video/video.h>
#include <gst/video/navigation.h>
#include <gst/audio/audio.h>
#include <gst/tag/tag.h>