gst/monoscope/gstmonoscope.c: make sure we only provide 256x128
authorBenjamin Otte <otte@gnome.org>
Tue, 27 Apr 2004 15:59:57 +0000 (15:59 +0000)
committerBenjamin Otte <otte@gnome.org>
Tue, 27 Apr 2004 15:59:57 +0000 (15:59 +0000)
Original commit message from CVS:
* gst/monoscope/gstmonoscope.c:
make sure we only provide 256x128
* gst/monoscope/monoscope.c: (monoscope_init):
assert size of 256x128

ChangeLog
gst/monoscope/gstmonoscope.c
gst/monoscope/monoscope.c

index fa3e205..1f35ad3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
+
+       * gst/monoscope/gstmonoscope.c:
+         make sure we only provide 256x128
+       * gst/monoscope/monoscope.c: (monoscope_init):
+         assert size of 256x128
+
 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * Makefile.am:
index 4582e5b..d7fe991 100644 (file)
@@ -88,7 +88,20 @@ enum
 static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
     GST_PAD_SRC,
     GST_PAD_ALWAYS,
-    GST_STATIC_CAPS (GST_VIDEO_CAPS_xRGB_HOST_ENDIAN)
+    GST_STATIC_CAPS ("video/x-raw-rgb, "
+        "bpp = (int) 32, "
+        "depth = (int) 24, " "endianness = (int) BIG_ENDIAN, "
+#if G_BYTE_ORDER == G_BIG_ENDIAN
+        "red_mask = (int) " GST_VIDEO_BYTE2_MASK_32 ", "
+        "green_mask = (int) " GST_VIDEO_BYTE3_MASK_32 ", "
+        "blue_mask = (int) " GST_VIDEO_BYTE4_MASK_32 ", "
+#else
+        "red_mask = (int) " GST_VIDEO_BYTE3_MASK_32 ", "
+        "green_mask = (int) " GST_VIDEO_BYTE2_MASK_32 ", "
+        "blue_mask = (int) " GST_VIDEO_BYTE1_MASK_32 ", "
+#endif
+        "width = (int)256, "
+        "height = (int)128, " "framerate = " GST_VIDEO_FPS_RANGE)
     );
 
 static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
index 356237e..c8c32ac 100644 (file)
@@ -45,6 +45,10 @@ struct monoscope_state *
 monoscope_init (guint32 resx, guint32 resy)
 {
   struct monoscope_state *stateptr;
+
+  /* I didn't program monoscope to only do 256*128, but it works that way */
+  g_return_val_if_fail (resx == 256, 0);
+  g_return_val_if_fail (resy == 128, 0);
   stateptr = calloc (1, sizeof (struct monoscope_state));
   if (stateptr == 0)
     return 0;