summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorMichael Dominic K <michaldominik@gmail.com>2006-06-04 13:11:24 +0000
committerMichael Dominic K <michaldominik@gmail.com>2006-06-04 13:11:24 +0000
commit6566359e351f6b2fe374f50b060450f35b1d9110 (patch)
treeb4fb8a80ea360d1e286496049e84d6c83bec4369 /ChangeLog
parent51f65dd9e0e5b733942e4f81b1ea9fbbd6bd9528 (diff)
2006-06-04 Michael Dominic K. <michaldominik@gmail.com>
* sample/DecodeBinTranscoder.cs: Fixing ambigious cast. * gstreamer-sharp/glue/clock.c: * gstreamer-sharp/Clock.custom: Changing the gint64 to guint64 and long to ulong respectively. The clocktime (GstClockTime) is measured in nanoseconds as unsigned long inside GStreamer. This is introducing a small schizophrenia since some functions (such as queries, seeks) take signed long (-1 to mark infinity or error). This is the expected Gst behaviour. Just sticking silently to long (instead of ulong) will bork us sooner or later, especially for custom-build low level routines/elements. Comments welcome. git-svn-id: svn://anonsvn.mono-project.com/source/branches/abock/gstreamer-sharp@61438 e3ebcda4-bce8-0310-ba0a-eca2169e7518
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog27
1 files changed, 19 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 02b947a..d7f0316 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,21 +1,32 @@
+2006-06-04 Michael Dominic K. <michaldominik@gmail.com>
+
+ * sample/DecodeBinTranscoder.cs: Fixing ambigious cast.
+
+ * gstreamer-sharp/glue/clock.c:
+ * gstreamer-sharp/Clock.custom: Changing the gint64 to guint64 and
+ long to ulong respectively. The clocktime (GstClockTime) is measured
+ in nanoseconds as unsigned long inside GStreamer.
+ This is introducing a small schizophrenia since some functions (such
+ as queries, seeks) take signed long (-1 to mark infinity or error).
+ This is the expected Gst behaviour.
+ Just sticking silently to long (instead of ulong) will bork us sooner
+ or later, especially for custom-build low level routines/elements.
+ Comments welcome.
+
2006-05-31 Michael Dominic K. <michaldominik@gmail.com>
* tests/PadTest.cs:
- * tests/Makefile.am:
- Introducing a new test for Gst.Pad. All fixtures pass.
+ * tests/Makefile.am: Introducing a new test for Gst.Pad. All fixtures pass.
- * tests/CapsTest.cs:
- Adding a new fixture for caps union testing (passes).
+ * tests/CapsTest.cs: Adding a new fixture for caps union testing (passes).
Fixing some code-style errors.
2006-05-30 Michael Dominic K. <michaldominik@gmail.com>
- * README:
- Fixing a broken svn link to gtk-sharp sources.
+ * README: Fixing a broken svn link to gtk-sharp sources.
* tests/CapsTest.cs:
- * tests/Makefile.am:
- Introducing a new test for Gst.Caps. All fixtures pass.
+ * tests/Makefile.am: Introducing a new test for Gst.Caps. All fixtures pass.
2006-05-25 Aaron Bockover <aaron@abock.org>