mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
check/gst/gstevents.c: Should fix build on 64-bit arch's
Original commit message from CVS: * check/gst/gstevents.c: (GST_START_TEST), (event_probe), (test_event), (timediff), (gstevents_suite): Should fix build on 64-bit arch's
This commit is contained in:
parent
aa0fb69d49
commit
ef66449d83
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-08-18 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
|
||||
* check/gst/gstevents.c: (GST_START_TEST), (event_probe),
|
||||
(test_event), (timediff), (gstevents_suite):
|
||||
Should fix build on 64-bit arch's
|
||||
|
||||
2005-08-18 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
Make sure that when a pipeline goes to PLAYING, that data has
|
||||
|
|
|
@ -191,7 +191,7 @@ GTimeVal got_event_time;
|
|||
static gboolean
|
||||
event_probe (GstPad * pad, GstMiniObject ** data, gpointer user_data)
|
||||
{
|
||||
gboolean before_q = (gboolean) user_data;
|
||||
gboolean before_q = (gboolean) GPOINTER_TO_INT (user_data);
|
||||
|
||||
fail_unless (GST_IS_EVENT (data));
|
||||
|
||||
|
|
|
@ -191,7 +191,7 @@ GTimeVal got_event_time;
|
|||
static gboolean
|
||||
event_probe (GstPad * pad, GstMiniObject ** data, gpointer user_data)
|
||||
{
|
||||
gboolean before_q = (gboolean) user_data;
|
||||
gboolean before_q = (gboolean) GPOINTER_TO_INT (user_data);
|
||||
|
||||
fail_unless (GST_IS_EVENT (data));
|
||||
|
||||
|
|
Loading…
Reference in a new issue