mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 17:18:15 +00:00
ext/gnomevfs/gstgnomevfssrc.c: don't g_return_if_fail if element is PLAYING, fail silently as every other element.
Original commit message from CVS: * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property): don't g_return_if_fail if element is PLAYING, fail silently as every other element. * gst/effectv/gstquark.c: (gst_quarktv_chain): only fix needed for cast lvalue issues in gst-plugins * gst/volenv/gstvolenv.c: (gst_volenv_init): add proxy_getcaps
This commit is contained in:
parent
42827c7be8
commit
7def3f925e
2 changed files with 12 additions and 2 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2004-03-24 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
|
||||
don't g_return_if_fail if element is PLAYING, fail silently as every
|
||||
other element.
|
||||
* gst/effectv/gstquark.c: (gst_quarktv_chain):
|
||||
only fix needed for cast lvalue issues in gst-plugins
|
||||
* gst/volenv/gstvolenv.c: (gst_volenv_init):
|
||||
add proxy_getcaps
|
||||
|
||||
2004-03-24 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* gst/level/gstlevel.c: (gst_level_init):
|
||||
|
|
|
@ -244,8 +244,8 @@ gst_quarktv_chain (GstPad * pad, GstData * _data)
|
|||
|
||||
outbuf = gst_buffer_new ();
|
||||
GST_BUFFER_SIZE (outbuf) = area * sizeof (guint32);
|
||||
dest = (guint32 *) GST_BUFFER_DATA (outbuf) =
|
||||
g_malloc (GST_BUFFER_SIZE (outbuf));
|
||||
GST_BUFFER_DATA (outbuf) = g_malloc (GST_BUFFER_SIZE (outbuf));
|
||||
dest = (guint32 *) GST_BUFFER_DATA (outbuf);
|
||||
GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buf);
|
||||
|
||||
if (filter->planetable[filter->current_plane])
|
||||
|
|
Loading…
Reference in a new issue