gst_plugins_base/gst/videotestsrc/gstvideotestsrc.h
branchRCL_3
changeset 30 7e817e7e631c
parent 29 567bb019e3e3
--- a/gst_plugins_base/gst/videotestsrc/gstvideotestsrc.h	Tue Aug 31 15:30:33 2010 +0300
+++ b/gst_plugins_base/gst/videotestsrc/gstvideotestsrc.h	Wed Sep 01 12:16:41 2010 +0100
@@ -52,8 +52,6 @@
  * @GST_VIDEO_TEST_SRC_CHECKERS8: Checkers pattern (8px)
  * @GST_VIDEO_TEST_SRC_CIRCULAR: Circular pattern
  * @GST_VIDEO_TEST_SRC_BLINK: Alternate between black and white
- * @GST_VIDEO_TEST_SRC_SMPTE75: SMPTE test pattern (75% color bars)
- * @GST_VIDEO_TEST_SRC_ZONE_PLATE: Zone plate
  *
  * The test pattern to produce.
  */
@@ -70,23 +68,9 @@
   GST_VIDEO_TEST_SRC_CHECKERS4,
   GST_VIDEO_TEST_SRC_CHECKERS8,
   GST_VIDEO_TEST_SRC_CIRCULAR,
-  GST_VIDEO_TEST_SRC_BLINK,
-  GST_VIDEO_TEST_SRC_SMPTE75,
-  GST_VIDEO_TEST_SRC_ZONE_PLATE
+  GST_VIDEO_TEST_SRC_BLINK
 } GstVideoTestSrcPattern;
 
-/**
- * GstVideoTestSrcColorSpec:
- * @GST_VIDEO_TEST_SRC_BT601: ITU-R Rec. BT.601
- * @GST_VIDEO_TEST_SRC_BT709: ITU-R Rec. BT.601
- *
- * The color specification to use.
- */
-typedef enum {
-  GST_VIDEO_TEST_SRC_BT601,
-  GST_VIDEO_TEST_SRC_BT709
-} GstVideoTestSrcColorSpec;
-
 typedef struct _GstVideoTestSrc GstVideoTestSrc;
 typedef struct _GstVideoTestSrcClass GstVideoTestSrcClass;
 
@@ -103,9 +87,6 @@
   /* type of output */
   GstVideoTestSrcPattern pattern_type;
 
-  /* Color spec of output */
-  GstVideoTestSrcColorSpec color_spec;
-
   /* video state */
   char *format_name;
   gint width;
@@ -119,32 +100,13 @@
   gint64 timestamp_offset;              /* base offset */
   GstClockTime running_time;            /* total running time */
   gint64 n_frames;                      /* total frames sent */
-  gboolean peer_alloc;
 
-  /* zoneplate */
-  gint k0;
-  gint kx;
-  gint ky;
-  gint kt;
-  gint kxt;
-  gint kyt;
-  gint kxy;
-  gint kx2;
-  gint ky2;
-  gint kt2;
-  gint xoffset;
-  gint yoffset;
-  
   void (*make_image) (GstVideoTestSrc *v, unsigned char *dest, int w, int h);
 };
 
 struct _GstVideoTestSrcClass {
   GstPushSrcClass parent_class;
 };
-#ifdef __SYMBIAN32__
-IMPORT_C
-#endif
-
 
 GType gst_video_test_src_get_type (void);