summaryrefslogtreecommitdiffstats
path: root/gst/videocrop
diff options
context:
space:
mode:
authorJoshua N. Pritikin <vishnu@pobox.com>2003-07-22 08:03:54 +0000
committerJoshua N. Pritikin <vishnu@pobox.com>2003-07-22 08:03:54 +0000
commit65a2c594cd952912ede1a4d95626ea7422742085 (patch)
treea747e4aa650428b5354c6c27357b5eab191a6a35 /gst/videocrop
parentaefe18b64d798a06b3e45f5f82347ec777387299 (diff)
A "video/raw" wasn't converted to the new "video/x-raw-yuv". Fixed.
Original commit message from CVS: A "video/raw" wasn't converted to the new "video/x-raw-yuv". Fixed.
Diffstat (limited to 'gst/videocrop')
-rw-r--r--gst/videocrop/gstvideocrop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/videocrop/gstvideocrop.c b/gst/videocrop/gstvideocrop.c
index 6f10391b..d2f2c67d 100644
--- a/gst/videocrop/gstvideocrop.c
+++ b/gst/videocrop/gstvideocrop.c
@@ -356,7 +356,7 @@ gst_video_crop_chain (GstPad *pad, GstBuffer *buffer)
if (gst_pad_try_set_caps (video_crop->srcpad,
GST_CAPS_NEW (
"video_crop_caps",
- "video/raw",
+ "video/x-raw-yuv",
"format", GST_PROPS_FOURCC (GST_STR_FOURCC ("I420")),
"width", GST_PROPS_INT (new_width),
"height", GST_PROPS_INT (new_height),