From 25dd7cc50c91096f2bbd5ee6099e2a8069182743 Mon Sep 17 00:00:00 2001 From: Leif Johnson Date: Sat, 19 Jul 2003 23:25:25 +0000 Subject: [PATCH] + changes for new float caps without slope/intercept + some category changes for plugins Original commit message from CVS: + changes for new float caps without slope/intercept + some category changes for plugins --- ext/jack/gstjack.c | 8 ++++---- ext/jack/gstjack.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ext/jack/gstjack.c b/ext/jack/gstjack.c index 700cf0aead..6e057f6cd4 100644 --- a/ext/jack/gstjack.c +++ b/ext/jack/gstjack.c @@ -26,7 +26,7 @@ #include /* TODO: - + this element is still nonfunctional - work out the src side (caps setting, etc) @@ -39,7 +39,7 @@ */ /* elementfactory information */ -static GstElementDetails gst_jack_bin_details = { +static GstElementDetails gst_jack_bin_details = { "Jack Bin", "Generic/Bin", "GPL", @@ -171,7 +171,7 @@ gst_jack_src_request_pad_factory(void) GstCaps *caps; caps = gst_caps_new("src", "audio/x-raw-float", - GST_AUDIO_FLOAT_MONO_PAD_TEMPLATE_PROPS); + GST_AUDIO_FLOAT_STANDARD_PAD_TEMPLATE_PROPS); template = gst_pad_template_new("%s", GST_PAD_SRC, GST_PAD_REQUEST, caps, NULL); } @@ -188,7 +188,7 @@ gst_jack_sink_request_pad_factory(void) GstCaps *caps; caps = gst_caps_new ("sink", "audio/x-raw-float", - GST_AUDIO_FLOAT_MONO_PAD_TEMPLATE_PROPS); + GST_AUDIO_FLOAT_STANDARD_PAD_TEMPLATE_PROPS); template = gst_pad_template_new("%s", GST_PAD_SINK, GST_PAD_REQUEST, caps, NULL); } diff --git a/ext/jack/gstjack.h b/ext/jack/gstjack.h index 3bf3f2d4ff..216c305292 100644 --- a/ext/jack/gstjack.h +++ b/ext/jack/gstjack.h @@ -1,7 +1,7 @@ /* -*- Mode: C; c-basic-offset: 4 -*- */ /* Copyright (C) 2002 Andy Wingo - + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either @@ -85,12 +85,12 @@ struct _GstJack { /* list of GstJackPads */ GList *pads; - + /* for convenience */ GstPadDirection direction; - + gchar *port_name_prefix; - + GstJackBin *bin; };