X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gst%2Fgstatomicqueue.h;h=8a131ab21757d191fc4d687fdaad54f251bcc23a;hb=dc5a62f70234f729c0f3443ab725e9f0232cc1fe;hp=b09a722b577c56bc422fb77b9c2fbd6f78afcc19;hpb=92d3246f769c44ba1a5241a3b1febf2881aad022;p=platform%2Fupstream%2Fgstreamer.git diff --git a/gst/gstatomicqueue.h b/gst/gstatomicqueue.h index b09a722..8a131ab 100644 --- a/gst/gstatomicqueue.h +++ b/gst/gstatomicqueue.h @@ -41,28 +41,28 @@ G_BEGIN_DECLS typedef struct _GstAtomicQueue GstAtomicQueue; -GST_EXPORT +GST_API GType gst_atomic_queue_get_type (void); -GST_EXPORT +GST_API GstAtomicQueue * gst_atomic_queue_new (guint initial_size) G_GNUC_MALLOC; -GST_EXPORT +GST_API void gst_atomic_queue_ref (GstAtomicQueue * queue); -GST_EXPORT +GST_API void gst_atomic_queue_unref (GstAtomicQueue * queue); -GST_EXPORT +GST_API void gst_atomic_queue_push (GstAtomicQueue* queue, gpointer data); -GST_EXPORT +GST_API gpointer gst_atomic_queue_pop (GstAtomicQueue* queue); -GST_EXPORT +GST_API gpointer gst_atomic_queue_peek (GstAtomicQueue* queue); -GST_EXPORT +GST_API guint gst_atomic_queue_length (GstAtomicQueue * queue); #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC