From f66a4fbe55c65cdcee436403dfed3831c46ba4a4 Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Sun, 9 Apr 2006 14:00:32 +0000 Subject: gst/matroska/ebml-read.c: Even better would be if we actually did the right thing here (also, G_GUINT64_CONSTANT only... Original commit message from CVS: * gst/matroska/ebml-read.c: (gst_ebml_read_sint): Even better would be if we actually did the right thing here (also, G_GUINT64_CONSTANT only exists since GLib-2.10). --- gst/matroska/ebml-read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst') diff --git a/gst/matroska/ebml-read.c b/gst/matroska/ebml-read.c index 10c35123..fd4a4899 100644 --- a/gst/matroska/ebml-read.c +++ b/gst/matroska/ebml-read.c @@ -507,7 +507,7 @@ gst_ebml_read_sint (GstEbmlRead * ebml, guint32 * id, gint64 * num) /* make signed */ if (negative) { - *num = *num - (G_GUINT64_CONSTANT (1) << ((8 * size) - 1)); + *num = 0 - *num; } gst_buffer_unref (buf); -- cgit