diff --git a/ChangeLog b/ChangeLog index 3c67620491..d83848a087 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +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: diff --git a/docs/random/thomasvs/0.10 b/docs/random/thomasvs/0.10 index 37999a72f9..5d62dda541 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 146d58b35b..2e8a7a583d 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);