mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
tests/examples/helloworld/helloworld.c: Fix copy'n'paste bug in hello world example (#556900).
Original commit message from CVS: Patch by: Dig Ge <dig.ge.cn at gmail com> * tests/examples/helloworld/helloworld.c: (main): Fix copy'n'paste bug in hello world example (#556900).
This commit is contained in:
parent
4561f3bf47
commit
8686083e85
3 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2008-10-19 Tim-Philipp Müller <tim.muller at collabora co uk>
|
||||
|
||||
Patch by: Dig Ge <dig.ge.cn at gmail com>
|
||||
|
||||
* tests/examples/helloworld/helloworld.c: (main):
|
||||
Fix copy'n'paste bug in hello world example (#556900).
|
||||
|
||||
2008-10-17 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* libs/gst/base/gstbasesink.c: (gst_base_sink_pad_activate_pull),
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 46eefd2f8474ee748864c59635be87b5a29317d1
|
||||
Subproject commit 2802bb17517a6cfbbb1be6da61ec19151be0750b
|
|
@ -75,7 +75,7 @@ main (int argc, char *argv[])
|
|||
return -1;
|
||||
}
|
||||
resample = gst_element_factory_make ("audioresample", "audioresample");
|
||||
if (!conv) {
|
||||
if (!resample) {
|
||||
g_print ("could not create \"audioresample\" element!");
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue