plugins/elements/gstidentity.c: make initialization portable, using LL is not
authorThomas Vander Stichele <thomas@apestaart.org>
Wed, 30 Nov 2005 09:38:42 +0000 (09:38 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Wed, 30 Nov 2005 09:38:42 +0000 (09:38 +0000)
Original commit message from CVS:

* plugins/elements/gstidentity.c: (gst_identity_transform_ip):
make initialization portable, using LL is not

ChangeLog
docs/random/thomasvs/0.10
plugins/elements/gstidentity.c

index 3c67620..d83848a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
 
+       * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
+         make initialization portable, using LL is not
+
+2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
+
        * win32/common/gstconfig.h:
          add large padding
 
index 37999a7..5d62dda 100644 (file)
@@ -1,3 +1,12 @@
+general
+-------
+- write script to check for:
+  invalid // comments
+  invalid %lld
+  invalid LL for 64bit ints
+  wrong whitespacing
+  trailing space
+
 gstreamer
 ---------
 - reorganize tests and examples into
index 146d58b..2e8a7a5 100644 (file)
@@ -339,7 +339,7 @@ gst_identity_transform_ip (GstBaseTransform * trans, GstBuffer * buf)
 {
   GstFlowReturn ret = GST_FLOW_OK;
   GstIdentity *identity = GST_IDENTITY (trans);
-  GstClockTime runtimestamp = 0LL;
+  GstClockTime runtimestamp = G_GINT64_CONSTANT (0);
 
   if (identity->check_perfect)
     gst_identity_check_perfect (identity, buf);