mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
ext/shout2/gstshout2.c: Fix build.
Original commit message from CVS: * ext/shout2/gstshout2.c: (gst_shout2send_render): Fix build.
This commit is contained in:
parent
4f6abe59e9
commit
094d0b4794
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-06-29 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* ext/shout2/gstshout2.c: (gst_shout2send_render):
|
||||||
|
Fix build.
|
||||||
|
|
||||||
2005-06-29 Andy Wingo <wingo@pobox.com>
|
2005-06-29 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
* gst/videofilter/gstvideoexample.c: Removed gst_library_load, I
|
* gst/videofilter/gstvideoexample.c: Removed gst_library_load, I
|
||||||
|
|
|
@ -361,10 +361,9 @@ gst_shout2send_render (GstBaseSink * sink, GstBuffer * buf)
|
||||||
|
|
||||||
shout2send = GST_SHOUT2SEND (sink);
|
shout2send = GST_SHOUT2SEND (sink);
|
||||||
|
|
||||||
|
|
||||||
if (shout2send->clock && shout2send->sync) {
|
if (shout2send->clock && shout2send->sync) {
|
||||||
//GST_DEBUG("using GStreamer clock to sync");
|
//GST_DEBUG("using GStreamer clock to sync");
|
||||||
gst_element_wait (GST_ELEMENT (shout2send), GST_BUFFER_TIMESTAMP (buf));
|
//gst_element_wait (GST_ELEMENT (shout2send), GST_BUFFER_TIMESTAMP (buf));
|
||||||
} else {
|
} else {
|
||||||
//GST_DEBUG("using libshout to sync");
|
//GST_DEBUG("using libshout to sync");
|
||||||
shout_sync (shout2send->conn);
|
shout_sync (shout2send->conn);
|
||||||
|
|
Loading…
Reference in a new issue