summaryrefslogtreecommitdiffstats
path: root/ext/audiofile
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-03-18 04:41:35 +0000
committerAndy Wingo <wingo@pobox.com>2002-03-18 04:41:35 +0000
commit62c2ffe709c84bed65051e2b40f0322e79db8af8 (patch)
treefac5d59752e0d055a021dfc142d5cedea08b7fc1 /ext/audiofile
parent1e0d80ab837e0db1c78dd415b62d5ba2d876f763 (diff)
downloadgst-plugins-bad-62c2ffe709c84bed65051e2b40f0322e79db8af8.tar.gz
gst-plugins-bad-62c2ffe709c84bed65051e2b40f0322e79db8af8.tar.bz2
gst-plugins-bad-62c2ffe709c84bed65051e2b40f0322e79db8af8.zip
s/gst_element_install_std_props/gst_element_class_install_std_props/ -- it just makes more sense that way added jack ...
Original commit message from CVS: * s/gst_element_install_std_props/gst_element_class_install_std_props/ -- it just makes more sense that way * added jack element, doesn't quite work right yet but i didn't want to lose the work -- it does build, register, and attempt to run though * imposed some restrictions on the naming of request pads to better allow for reverse parsing * added '%s' to reverse parsing * added new bin flag to indicate that it is self-iterating, and some lame code in gst-launch to test it out * fixen on launch-gui * added pkg-config stuff for the editor's libs
Diffstat (limited to 'ext/audiofile')
-rw-r--r--ext/audiofile/gstafsink.c2
-rw-r--r--ext/audiofile/gstafsrc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/audiofile/gstafsink.c b/ext/audiofile/gstafsink.c
index d81c7498..24abae50 100644
--- a/ext/audiofile/gstafsink.c
+++ b/ext/audiofile/gstafsink.c
@@ -148,7 +148,7 @@ gst_afsink_class_init (GstAFSinkClass *klass)
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
- gst_element_install_std_props (
+ gst_element_class_install_std_props (
GST_ELEMENT_CLASS (klass),
"location", ARG_LOCATION, G_PARAM_READWRITE,
NULL);
diff --git a/ext/audiofile/gstafsrc.c b/ext/audiofile/gstafsrc.c
index 4a4e64ef..657372e7 100644
--- a/ext/audiofile/gstafsrc.c
+++ b/ext/audiofile/gstafsrc.c
@@ -147,7 +147,7 @@ gst_afsrc_class_init (GstAFSrcClass *klass)
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
- gst_element_install_std_props (
+ gst_element_class_install_std_props (
GST_ELEMENT_CLASS (klass),
"location", ARG_LOCATION, G_PARAM_READWRITE,
NULL);