gst/gstmodule.c: Added gst.BUFFER_OFFSET_NONE for proper (guint64) -1 conversion...
authorEdward Hervey <bilboed@bilboed.com>
Wed, 5 Jul 2006 11:35:12 +0000 (11:35 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 5 Jul 2006 11:35:12 +0000 (11:35 +0000)
Original commit message from CVS:
* gst/gstmodule.c: (init_gst):
Added gst.BUFFER_OFFSET_NONE for proper (guint64) -1 conversion between
python and C.

ChangeLog
gst/gstmodule.c

index 6ca6733..5061a79 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-07-05  Edward Hervey  <edward@fluendo.com>
+
+       * gst/gstmodule.c: (init_gst): 
+       Added gst.BUFFER_OFFSET_NONE for proper (guint64) -1 conversion between
+       python and C.
+
 2006-07-03  Edward Hervey  <edward@fluendo.com>
 
        * gst/gstelement.override:
index 167d28a..d8ae652 100644 (file)
@@ -184,6 +184,7 @@ init_gst (void)
      PyModule_AddIntConstant(m, "NSECOND", GST_NSECOND);
 
      PyModule_AddObject(m, "CLOCK_TIME_NONE", PyLong_FromUnsignedLongLong(GST_CLOCK_TIME_NONE));
+     PyModule_AddObject(m, "BUFFER_OFFSET_NONE", PyLong_FromUnsignedLongLong(GST_BUFFER_OFFSET_NONE));
 
      pygst_exceptions_register_classes (d);