mimdec: Make caps a lot stricter
authorOlivier Crête <olivier.crete@collabora.co.uk>
Mon, 12 Oct 2009 23:56:54 +0000 (19:56 -0400)
committerOlivier Crête <olivier.crete@collabora.co.uk>
Thu, 3 Jun 2010 01:03:53 +0000 (21:03 -0400)
ext/mimic/gstmimdec.c

index 8ce81f4f06307b7b03d5f64bcd54a714c478956b..7d0e2f3a131a1ece54c2cff450ca37ea1a459c72 100644 (file)
@@ -55,11 +55,20 @@ static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
         "bpp = (int) 24, "
         "depth = (int) 24, "
         "endianness = (int) 4321, "
-        "framerate = (fraction) [ 0/1, 30/1 ], "
+        "framerate = (fraction) [1/1, 30/1], "
         "red_mask = (int) 16711680, "
         "green_mask = (int) 65280, "
         "blue_mask = (int) 255, "
-        "height = (int) [16, 4096], " "width = (int) [16, 4096]")
+        "width = (int) 320, "
+        "height = (int) 240"
+        ";video/x-raw-rgb, "
+        "bpp = (int) 24, "
+        "depth = (int) 24, "
+        "endianness = (int) 4321, "
+        "framerate = (fraction) [1/1, 30/1], "
+        "red_mask = (int) 16711680, "
+        "green_mask = (int) 65280, "
+        "blue_mask = (int) 255, " "width = (int) 160, " "height = (int) 120")
     );
 
 static void gst_mim_dec_finalize (GObject * object);