summaryrefslogtreecommitdiff
path: root/gst-libs/gst/video/video-event.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst-libs/gst/video/video-event.h')
-rw-r--r--gst-libs/gst/video/video-event.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/gst-libs/gst/video/video-event.h b/gst-libs/gst/video/video-event.h
index 2b6fd1f73..1fe4e504c 100644
--- a/gst-libs/gst/video/video-event.h
+++ b/gst-libs/gst/video/video-event.h
@@ -21,27 +21,28 @@
#define __GST_VIDEO_EVENT_H__
#include <gst/gst.h>
+#include <gst/video/video-prelude.h>
G_BEGIN_DECLS
/* video still frame event creation and parsing */
-GST_EXPORT
+GST_VIDEO_API
GstEvent * gst_video_event_new_still_frame (gboolean in_still);
-GST_EXPORT
+GST_VIDEO_API
gboolean gst_video_event_parse_still_frame (GstEvent * event, gboolean * in_still);
/* video force key unit event creation and parsing */
-GST_EXPORT
+GST_VIDEO_API
GstEvent * gst_video_event_new_downstream_force_key_unit (GstClockTime timestamp,
GstClockTime stream_time,
GstClockTime running_time,
gboolean all_headers,
guint count);
-GST_EXPORT
+GST_VIDEO_API
gboolean gst_video_event_parse_downstream_force_key_unit (GstEvent * event,
GstClockTime * timestamp,
GstClockTime * stream_time,
@@ -49,18 +50,18 @@ gboolean gst_video_event_parse_downstream_force_key_unit (GstEvent * event,
gboolean * all_headers,
guint * count);
-GST_EXPORT
+GST_VIDEO_API
GstEvent * gst_video_event_new_upstream_force_key_unit (GstClockTime running_time,
gboolean all_headers,
guint count);
-GST_EXPORT
+GST_VIDEO_API
gboolean gst_video_event_parse_upstream_force_key_unit (GstEvent * event,
GstClockTime * running_time,
gboolean * all_headers,
guint * count);
-GST_EXPORT
+GST_VIDEO_API
gboolean gst_video_event_is_force_key_unit(GstEvent *event);
G_END_DECLS