summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-04-09 13:52:03 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-04-09 13:52:03 +0000
commitbcbc2b2b98b134efcd2644aad5b0379cde54803e (patch)
tree5ab6409fd9a5fe0b48552749bb92347458e516ad /ChangeLog
parent687ccc01c7675d11707d035e12ac0735a1dd892b (diff)
gst/matroska/ebml-read.c: Can't just replace 1LL with 1L here just because MSVC doesn't support it, as it might lead ...
Original commit message from CVS: * gst/matroska/ebml-read.c: (gst_ebml_read_sint): Can't just replace 1LL with 1L here just because MSVC doesn't support it, as it might lead to incorrect results when doing the bitshifting here. Using GLib's G_GUINT64_CONSTANT() macro to force a 64-bit constant in a way that all compilers are happy with.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 30c6714c..76a98ef5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-04-08 Tim-Philipp Müller <tim at centricular dot net>
+
+ * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
+ Can't just replace 1LL with 1L here just because MSVC doesn't
+ support it, as it might lead to incorrect results when doing the
+ bitshifting here. Using GLib's G_GUINT64_CONSTANT() macro to
+ force a 64-bit constant in a way that all compilers are happy with.
+
2006-04-08 Stefan Kost <ensonic@users.sf.net>
* ext/aalib/gstaasink.c: (gst_aasink_class_init):