mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-27 03:23:16 +00:00
include header correctly; show me the name
Original commit message from CVS: include header correctly; show me the name
This commit is contained in:
parent
6089b2aed2
commit
ef8b2e27ec
2 changed files with 4 additions and 3 deletions
|
@ -5,7 +5,7 @@
|
|||
* Copyright 2005 David Schleef <ds@schleef.org>
|
||||
*/
|
||||
|
||||
#include <gst_private.h> /* for g_warning */
|
||||
#include "gst_private.h" /* for g_warning */
|
||||
#include <glib.h>
|
||||
#if GLIB_CHECK_VERSION (2, 6, 0)
|
||||
#include <glib/gstdio.h>
|
||||
|
|
|
@ -3524,8 +3524,9 @@ gst_pad_send_event (GstPad * pad, GstEvent * event)
|
|||
GST_CAT_DEBUG (GST_CAT_EVENT, "cleared flush flag");
|
||||
break;
|
||||
default:
|
||||
GST_CAT_DEBUG (GST_CAT_EVENT, "have event type %d on pad %s:%s",
|
||||
GST_EVENT_TYPE (event), GST_DEBUG_PAD_NAME (pad));
|
||||
GST_CAT_DEBUG (GST_CAT_EVENT, "have event type %s on pad %s:%s",
|
||||
gst_event_type_get_name (GST_EVENT_TYPE (event)),
|
||||
GST_DEBUG_PAD_NAME (pad));
|
||||
|
||||
if (GST_PAD_IS_FLUSHING (pad))
|
||||
goto flushing;
|
||||
|
|
Loading…
Reference in a new issue