From 35be51219a06511d99c7e348a6c1afa6369ce7d5 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Wed, 30 Nov 2005 09:38:42 +0000 Subject: [PATCH] plugins/elements/gstidentity.c: make initialization portable, using LL is not Original commit message from CVS: * plugins/elements/gstidentity.c: (gst_identity_transform_ip): make initialization portable, using LL is not --- ChangeLog | 5 +++++ docs/random/thomasvs/0.10 | 9 +++++++++ plugins/elements/gstidentity.c | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3c67620..d83848a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2005-11-30 Thomas Vander Stichele + * plugins/elements/gstidentity.c: (gst_identity_transform_ip): + make initialization portable, using LL is not + +2005-11-30 Thomas Vander Stichele + * win32/common/gstconfig.h: add large padding diff --git a/docs/random/thomasvs/0.10 b/docs/random/thomasvs/0.10 index 37999a7..5d62dda 100644 --- a/docs/random/thomasvs/0.10 +++ b/docs/random/thomasvs/0.10 @@ -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 diff --git a/plugins/elements/gstidentity.c b/plugins/elements/gstidentity.c index 146d58b..2e8a7a5 100644 --- a/plugins/elements/gstidentity.c +++ b/plugins/elements/gstidentity.c @@ -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); -- 2.7.4