X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gst%2Fgstatomicqueue.h;h=8a131ab21757d191fc4d687fdaad54f251bcc23a;hb=dac5966da6a0f53d0443dfa1ac239289028c415d;hp=b09a722b577c56bc422fb77b9c2fbd6f78afcc19;hpb=39664da1f07bda3032ea867fc695450b689b9d8f;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