diff options
author | Andy Wingo <wingo@pobox.com> | 2002-03-18 04:41:35 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2002-03-18 04:41:35 +0000 |
commit | 62c2ffe709c84bed65051e2b40f0322e79db8af8 (patch) | |
tree | fac5d59752e0d055a021dfc142d5cedea08b7fc1 /gst | |
parent | 1e0d80ab837e0db1c78dd415b62d5ba2d876f763 (diff) | |
download | gst-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 'gst')
-rw-r--r-- | gst/mpeg1sys/gstmpeg1systemencode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/mpeg1sys/gstmpeg1systemencode.c b/gst/mpeg1sys/gstmpeg1systemencode.c index d8927d0f..c863da9e 100644 --- a/gst/mpeg1sys/gstmpeg1systemencode.c +++ b/gst/mpeg1sys/gstmpeg1systemencode.c @@ -60,7 +60,7 @@ GST_PADTEMPLATE_FACTORY (src_factory, ) ) GST_PADTEMPLATE_FACTORY (video_sink_factory, - "video_%02d", + "video_%d", GST_PAD_SINK, GST_PAD_REQUEST, GST_CAPS_NEW ( @@ -72,7 +72,7 @@ GST_PADTEMPLATE_FACTORY (video_sink_factory, ) GST_PADTEMPLATE_FACTORY (audio_sink_factory, - "audio_%02d", + "audio_%d", GST_PAD_SINK, GST_PAD_REQUEST, GST_CAPS_NEW ( |