summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--gst/videocrop/gstvideocrop.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index dc3240ad..b58e948f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-03-29 David Schleef <ds@schleef.org>
+
+ * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
+ aren't in the caps.
+ * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
+ * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
+
2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
* gst-libs/gst/riff/riff-media.c:
diff --git a/gst/videocrop/gstvideocrop.c b/gst/videocrop/gstvideocrop.c
index 5e4c0b38..1e0cdd9f 100644
--- a/gst/videocrop/gstvideocrop.c
+++ b/gst/videocrop/gstvideocrop.c
@@ -420,7 +420,7 @@ gst_video_crop_change_state (GstElement * element)
static gboolean
plugin_init (GstPlugin * plugin)
{
- return gst_element_register (plugin, "videocrop", GST_RANK_PRIMARY,
+ return gst_element_register (plugin, "videocrop", GST_RANK_NONE,
GST_TYPE_VIDEO_CROP);
}