From 7032cd12e72bf6c0802232b24147b5f47e91e4c5 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Sun, 12 Jun 2011 12:40:15 +0200 Subject: [PATCH] videoparsers: Fix sink pad template no wonder it was never picked up ... --- gst/videoparsers/gstmpegvideoparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/videoparsers/gstmpegvideoparse.c b/gst/videoparsers/gstmpegvideoparse.c index 24ce3deb68..458f699db4 100644 --- a/gst/videoparsers/gstmpegvideoparse.c +++ b/gst/videoparsers/gstmpegvideoparse.c @@ -44,7 +44,7 @@ static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, GST_STATIC_CAPS ("video/mpeg, " - "mpegversion = (int) 4, " + "mpegversion = (int) [1, 2], " "parsed = (boolean) false, " "systemstream = (boolean) false") );