- Don't use non-portable LL suffix on constants, since MSVC doesn't allow them. These...
authorMichael Smith <msmith@xiph.org>
Thu, 13 Oct 2005 11:36:14 +0000 (11:36 +0000)
committerMichael Smith <msmith@xiph.org>
Thu, 13 Oct 2005 11:36:14 +0000 (11:36 +0000)
Original commit message from CVS:
- Don't use non-portable LL suffix on constants, since MSVC doesn't allow
them. These constants all fit into ints anyway.

- Continue to hate nano.

ChangeLog
ext/ogg/gstoggmux.c
gst/audioconvert/audioconvert.c

index e01367732165b1ccc4fd1b3018eafdaa7428f9ff..e4a2dae9915d5d49a3f91e78a8d077f04e915bd1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-10-13  Michael Smith <msmith@fluendo.com>
+
+       * ext/ogg/gstoggmux.c:
+       * gst/audioconvert/audioconvert.c: (float):
+         Don't use LL suffix, as it's not portable, and neither of these
+         uses required it anyway.
+
 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
 
        * examples/indexing/indexmpeg.c: (main):
index 63e5628eb7c998d2ae18f5ea9d2ca65ff01f91e7..36c66832734df6873ba48f8d82bec9e7296fb18a 100644 (file)
@@ -131,8 +131,8 @@ enum
 };
 
 /* set to 0.5 seconds by default */
-#define DEFAULT_MAX_DELAY      500000000LL
-#define DEFAULT_MAX_PAGE_DELAY 500000000LL
+#define DEFAULT_MAX_DELAY      500000000
+#define DEFAULT_MAX_PAGE_DELAY 500000000
 enum
 {
   ARG_0,
index 7e5f3e9190c13ad82f6967198fb7467014ab1864..e8e0eb6a1a4b7fe569d5660a527d1ff36f56411a 100644 (file)
@@ -62,7 +62,7 @@ MAKE_UNPACK_FUNC_NAME (float) (gpointer src, gint32 * dst,
 
   for (; count; count--) {
     temp = *p++ * 2147483647.0f + .5;
-    *dst++ = (gint32) CLAMP (temp, -2147483648ll, 2147483647ll);
+    *dst++ = (gint32) CLAMP (temp, G_MININT, G_MAXINT);
   }
 }