From 7c901304077e2c427e6f35cf31f33ea5aa8fc43a Mon Sep 17 00:00:00 2001 From: David Schleef Date: Fri, 29 Aug 2008 00:34:58 +0000 Subject: [PATCH] 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. --- ChangeLog | 7 +++++++ gst/gstpadtemplate.c | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8783140105..fb5d771182 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-08-28 David Schleef + + * 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 * gst/gstobject.c: diff --git a/gst/gstpadtemplate.c b/gst/gstpadtemplate.c index b0f00f0599..49acc9000e 100644 --- a/gst/gstpadtemplate.c +++ b/gst/gstpadtemplate.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; }