mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
[MOVED FROM GST-P-FARSIGHT] ouch, printing with arguments but without %s.. that made it segfault a few times...
20070822175444-4f0f6-445ea6ce7a9668d04cf999af772a504ec74fb67a.gz
This commit is contained in:
parent
f73fb17b34
commit
01f5b39eb2
1 changed files with 3 additions and 3 deletions
|
@ -741,7 +741,7 @@ gst_dtmf_src_push_next_tone_packet (GstDTMFSrc *dtmfsrc)
|
|||
event = g_async_queue_pop (dtmfsrc->event_queue);
|
||||
|
||||
if (event->event_type == DTMF_EVENT_TYPE_STOP) {
|
||||
GST_WARNING_OBJECT (dtmfsrc, "Received a DTMF stop event when already stopped", GST_BUFFER_SIZE (buf));
|
||||
GST_WARNING_OBJECT (dtmfsrc, "Received a DTMF stop event when already stopped");
|
||||
} else if (event->event_type == DTMF_EVENT_TYPE_START) {
|
||||
gst_dtmf_prepare_timestamps (dtmfsrc);
|
||||
|
||||
|
@ -756,7 +756,7 @@ gst_dtmf_src_push_next_tone_packet (GstDTMFSrc *dtmfsrc)
|
|||
|
||||
if (event != NULL) {
|
||||
if (event->event_type == DTMF_EVENT_TYPE_START) {
|
||||
GST_WARNING_OBJECT (dtmfsrc, "Received two consecutive DTMF start events", GST_BUFFER_SIZE (buf));
|
||||
GST_WARNING_OBJECT (dtmfsrc, "Received two consecutive DTMF start events");
|
||||
} else if (event->event_type == DTMF_EVENT_TYPE_STOP) {
|
||||
gst_dtmf_src_set_stream_lock (dtmfsrc, FALSE);
|
||||
g_free (dtmfsrc->last_event);
|
||||
|
@ -775,7 +775,7 @@ gst_dtmf_src_push_next_tone_packet (GstDTMFSrc *dtmfsrc)
|
|||
"pushing buffer on src pad of size %d", GST_BUFFER_SIZE (buf));
|
||||
ret = gst_pad_push (dtmfsrc->srcpad, buf);
|
||||
if (ret != GST_FLOW_OK) {
|
||||
GST_ERROR_OBJECT (dtmfsrc, "Failed to push buffer on src pad", GST_BUFFER_SIZE (buf));
|
||||
GST_ERROR_OBJECT (dtmfsrc, "Failed to push buffer on src pad");
|
||||
}
|
||||
|
||||
gst_buffer_unref(buf);
|
||||
|
|
Loading…
Reference in a new issue