Revert "dvdspu: Fix pad templates"

This reverts commit 732828e31c.

It was in fact an issue in core
This commit is contained in:
Edward Hervey 2011-05-30 13:01:54 +02:00
parent ffc9303c9d
commit fc4c49157c

View file

@ -55,18 +55,16 @@ static GstStaticPadTemplate video_sink_factory =
GST_STATIC_PAD_TEMPLATE ("video",
GST_PAD_SINK,
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("video/x-raw-yuv, " "format = (fourcc)I420, "
"width = (int) [ 16, 4096 ], " "height = (int) [ 16, 4096 ],"
"framerate = " GST_VIDEO_FPS_RANGE)
GST_STATIC_CAPS ("video/x-raw-yuv, " "format = (fourcc) { I420 }, "
"width = (int) [ 16, 4096 ], " "height = (int) [ 16, 4096 ]")
/* FIXME: Can support YV12 one day too */
);
static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_SRC,
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("video/x-raw-yuv, " "format = (fourcc)I420, "
"width = (int) [ 16, 4096 ], " "height = (int) [ 16, 4096 ],"
"framerate = " GST_VIDEO_FPS_RANGE)
GST_STATIC_CAPS ("video/x-raw-yuv, " "format = (fourcc) { I420 }, "
"width = (int) [ 16, 4096 ], " "height = (int) [ 16, 4096 ]")
/* FIXME: Can support YV12 one day too */
);