diff options
author | David Schleef <ds@schleef.org> | 2004-03-30 06:51:32 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2004-03-30 06:51:32 +0000 |
commit | ba36f77123a92d7806cd59c0eb88c9faac62bf36 (patch) | |
tree | ed1dce80e33e1e504323a1630e071d7f18b07c30 | |
parent | c1225244a71f2cbb5bc7b6ffa527fa21e2494efc (diff) | |
download | gst-plugins-bad-ba36f77123a92d7806cd59c0eb88c9faac62bf36.tar.gz gst-plugins-bad-ba36f77123a92d7806cd59c0eb88c9faac62bf36.tar.bz2 gst-plugins-bad-ba36f77123a92d7806cd59c0eb88c9faac62bf36.zip |
ext/alsa/gstalsa.c: Don't fixate fields that aren't in the caps.
Original commit message from CVS:
* 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.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | gst/videocrop/gstvideocrop.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -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); } |