summaryrefslogtreecommitdiff
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
commit6a7a00b097f28db3e4a4883220322b06a5de6343 (patch)
tree05860e49b591fcd4089f7a9ade9c9e8d1fa1a9e4
parent657fe15164dbb7fa6c9fc96fda4102d92984ca4d (diff)
downloadgstreamer-plugins-bad-6a7a00b097f28db3e4a4883220322b06a5de6343.tar.gz
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.
-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 6f10391be..d2f2c67d8 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),