summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl-Anton Ingmarsson <ca.ingmarsson@gmail.com>2009-11-28 23:58:57 +0100
committerCarl-Anton Ingmarsson <ca.ingmarsson@gmail.com>2010-05-01 14:46:11 +0200
commitff7381109ff9f99f714d2b333dcaf906f58fa12c (patch)
treed49ddb2d5300b1aa4c80cb269839ace70b7fdc14
parent2cb7696f86bda1c89f716d1877243ebf6433b914 (diff)
vdpau: make GstVdpVideoSrcPad(Class)? private
-rw-r--r--sys/vdpau/gstvdpvideosrcpad.c20
-rw-r--r--sys/vdpau/gstvdpvideosrcpad.h20
2 files changed, 20 insertions, 20 deletions
diff --git a/sys/vdpau/gstvdpvideosrcpad.c b/sys/vdpau/gstvdpvideosrcpad.c
index 4d01f359a..abf64fac0 100644
--- a/sys/vdpau/gstvdpvideosrcpad.c
+++ b/sys/vdpau/gstvdpvideosrcpad.c
@@ -31,6 +31,26 @@ enum
PROP_DISPLAY
};
+struct _GstVdpVideoSrcPad
+{
+ GstPad pad;
+
+ GstCaps *caps;
+ GstVdpDevice *device;
+
+ gboolean yuv_output;
+ gint width, height;
+ guint32 fourcc;
+
+ /* properties */
+ gchar *display;
+};
+
+struct _GstVdpVideoSrcPadClass
+{
+ GstPadClass pad_class;
+};
+
#define DEBUG_INIT(bla) \
GST_DEBUG_CATEGORY_INIT (gst_vdp_video_src_pad_debug, "vdpvideosrcpad", 0, "GstVdpVideoSrcPad");
diff --git a/sys/vdpau/gstvdpvideosrcpad.h b/sys/vdpau/gstvdpvideosrcpad.h
index de2c42186..4d7c2c2f0 100644
--- a/sys/vdpau/gstvdpvideosrcpad.h
+++ b/sys/vdpau/gstvdpvideosrcpad.h
@@ -38,26 +38,6 @@ G_BEGIN_DECLS
typedef struct _GstVdpVideoSrcPad GstVdpVideoSrcPad;
typedef struct _GstVdpVideoSrcPadClass GstVdpVideoSrcPadClass;
-struct _GstVdpVideoSrcPad
-{
- GstPad pad;
-
- GstCaps *caps;
- GstVdpDevice *device;
-
- gboolean yuv_output;
- gint width, height;
- guint32 fourcc;
-
- /* properties */
- gchar *display;
-};
-
-struct _GstVdpVideoSrcPadClass
-{
- GstPadClass pad_class;
-};
-
GstFlowReturn gst_vdp_video_src_pad_push (GstVdpVideoSrcPad *vdp_pad, GstVdpVideoBuffer *video_buf);
GstFlowReturn gst_vdp_video_src_pad_alloc_buffer (GstVdpVideoSrcPad *vdp_pad, GstVdpVideoBuffer **video_buf);