ext/mpeg2dec/gstmpeg2dec.c (gst_mpeg2dec_sink_event): Signedness fix.
authorAndy Wingo <wingo@pobox.com>
Wed, 20 Jul 2005 17:13:19 +0000 (17:13 +0000)
committerAndy Wingo <wingo@pobox.com>
Wed, 20 Jul 2005 17:13:19 +0000 (17:13 +0000)
Original commit message from CVS:
2005-07-20  Andy Wingo  <wingo@pobox.com>

* ext/mpeg2dec/gstmpeg2dec.c (gst_mpeg2dec_sink_event): Signedness
fix.

ChangeLog
common
ext/mpeg2dec/gstmpeg2dec.c

index 45455a1..a9e6870 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-20  Andy Wingo  <wingo@pobox.com>
+
+       * ext/mpeg2dec/gstmpeg2dec.c (gst_mpeg2dec_sink_event): Signedness
+       fix.
+
 2005-07-20  Edward Hervey  <edward@fluendo.com>
 
        * configure.ac: 
diff --git a/common b/common
index 6f9b691..694de4d 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit 6f9b691adc2a0300598311671dd7c4d9d2035afa
+Subproject commit 694de4dbf4827f372321f0634643a254d7edd986
index acb1736..54a8c37 100644 (file)
@@ -1118,8 +1118,8 @@ gst_mpeg2dec_sink_event (GstPad * pad, GstEvent * event)
   switch (GST_EVENT_TYPE (event)) {
     case GST_EVENT_DISCONTINUOUS:
     {
-      GstClockTime time;
-      GstClockTime end_time;    /* 0.9 just to call
+      gint64 time;
+      gint64 end_time;          /* 0.9 just to call
                                    gst_event_discont_get_value, non
                                    used anywhere else */