diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-04-10 17:41:33 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-04-10 17:41:33 +0000 |
commit | 8c43b5fd9b38cf9c55e5c148c985cd1b8731b5b7 (patch) | |
tree | 23a0e369496d10db265ceb353fa404855f5f9ad5 /gst/playondemand | |
parent | 5f5faa2f984a857d10ebe9b6c09f8d6fdbfe55d6 (diff) | |
download | gst-plugins-bad-8c43b5fd9b38cf9c55e5c148c985cd1b8731b5b7.tar.gz gst-plugins-bad-8c43b5fd9b38cf9c55e5c148c985cd1b8731b5b7.tar.bz2 gst-plugins-bad-8c43b5fd9b38cf9c55e5c148c985cd1b8731b5b7.zip |
various Wall fixes
Original commit message from CVS:
various Wall fixes
Diffstat (limited to 'gst/playondemand')
-rw-r--r-- | gst/playondemand/demo-mp3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/playondemand/demo-mp3.c b/gst/playondemand/demo-mp3.c index f2cab728..af5df0a4 100644 --- a/gst/playondemand/demo-mp3.c +++ b/gst/playondemand/demo-mp3.c @@ -42,9 +42,9 @@ int main(int argc, char **argv) gst_bin_add(GST_BIN(pipeline), pod); gst_bin_add(GST_BIN(pipeline), osssink); - gst_element_connect(src, "src", mad, "sink"); - gst_element_connect(pod, "src", osssink, "sink"); - gst_element_connect(mad, "src", pod, "sink"); + gst_element_connect(src, mad); + gst_element_connect(pod, osssink); + gst_element_connect(mad, pod); gst_element_set_state(pipeline, GST_STATE_PLAYING); |