mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
gst/gstpadtemplate.c: Revert last change, since it breaks a few plugins, ffmpeg, alaw, and mulaw. Code is correct, b...
Original commit message from CVS: * gst/gstpadtemplate.c: Revert last change, since it breaks a few plugins, ffmpeg, alaw, and mulaw. Code is correct, but shouldn't be enabled until we've released fixed versions of -good and -ffmpeg.
This commit is contained in:
parent
0dfab1544c
commit
7c90130407
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2008-08-28 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/gstpadtemplate.c: Revert last change, since it breaks
|
||||
a few plugins, ffmpeg, alaw, and mulaw. Code is correct,
|
||||
but shouldn't be enabled until we've released fixed versions
|
||||
of -good and -ffmpeg.
|
||||
|
||||
2008-08-28 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/gstobject.c:
|
||||
|
|
|
@ -388,8 +388,13 @@ gst_pad_template_new (const gchar * name_template,
|
|||
"name", name_template, "name-template", name_template,
|
||||
"direction", direction, "presence", presence, "caps", caps, NULL);
|
||||
|
||||
#if 0
|
||||
/* FIXME: enable this after gst-ffmpeg-0.10.6 and
|
||||
* gst-plugins-good-0.10.11 have been released. Previous versions
|
||||
* depend on broken core behavior. */
|
||||
if (caps)
|
||||
gst_caps_unref (caps);
|
||||
#endif
|
||||
|
||||
return new;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue