mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
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
This commit is contained in:
parent
7033dfd164
commit
35be51219a
3 changed files with 15 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
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>
|
2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* win32/common/gstconfig.h:
|
* win32/common/gstconfig.h:
|
||||||
|
|
|
@ -1,3 +1,12 @@
|
||||||
|
general
|
||||||
|
-------
|
||||||
|
- write script to check for:
|
||||||
|
invalid // comments
|
||||||
|
invalid %lld
|
||||||
|
invalid LL for 64bit ints
|
||||||
|
wrong whitespacing
|
||||||
|
trailing space
|
||||||
|
|
||||||
gstreamer
|
gstreamer
|
||||||
---------
|
---------
|
||||||
- reorganize tests and examples into
|
- reorganize tests and examples into
|
||||||
|
|
|
@ -339,7 +339,7 @@ gst_identity_transform_ip (GstBaseTransform * trans, GstBuffer * buf)
|
||||||
{
|
{
|
||||||
GstFlowReturn ret = GST_FLOW_OK;
|
GstFlowReturn ret = GST_FLOW_OK;
|
||||||
GstIdentity *identity = GST_IDENTITY (trans);
|
GstIdentity *identity = GST_IDENTITY (trans);
|
||||||
GstClockTime runtimestamp = 0LL;
|
GstClockTime runtimestamp = G_GINT64_CONSTANT (0);
|
||||||
|
|
||||||
if (identity->check_perfect)
|
if (identity->check_perfect)
|
||||||
gst_identity_check_perfect (identity, buf);
|
gst_identity_check_perfect (identity, buf);
|
||||||
|
|
Loading…
Reference in a new issue