mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +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
7e0aec2c94
commit
ca2f737659
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);
|
event = g_async_queue_pop (dtmfsrc->event_queue);
|
||||||
|
|
||||||
if (event->event_type == DTMF_EVENT_TYPE_STOP) {
|
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) {
|
} else if (event->event_type == DTMF_EVENT_TYPE_START) {
|
||||||
gst_dtmf_prepare_timestamps (dtmfsrc);
|
gst_dtmf_prepare_timestamps (dtmfsrc);
|
||||||
|
|
||||||
|
@ -756,7 +756,7 @@ gst_dtmf_src_push_next_tone_packet (GstDTMFSrc *dtmfsrc)
|
||||||
|
|
||||||
if (event != NULL) {
|
if (event != NULL) {
|
||||||
if (event->event_type == DTMF_EVENT_TYPE_START) {
|
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) {
|
} else if (event->event_type == DTMF_EVENT_TYPE_STOP) {
|
||||||
gst_dtmf_src_set_stream_lock (dtmfsrc, FALSE);
|
gst_dtmf_src_set_stream_lock (dtmfsrc, FALSE);
|
||||||
g_free (dtmfsrc->last_event);
|
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));
|
"pushing buffer on src pad of size %d", GST_BUFFER_SIZE (buf));
|
||||||
ret = gst_pad_push (dtmfsrc->srcpad, buf);
|
ret = gst_pad_push (dtmfsrc->srcpad, buf);
|
||||||
if (ret != GST_FLOW_OK) {
|
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);
|
gst_buffer_unref(buf);
|
||||||
|
|
Loading…
Reference in a new issue