mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 13:25:56 +00:00
elementfactory: Fix 64bit constant
Basically we're not meant to put anything more complex than simple numbers, due to the definition of G_GUINT64_CONSTANT: G_GUINT64_CONSTANT(val) (val##UL) Which previously resulted in .... 1 << 49UL
This commit is contained in:
parent
21c5064783
commit
726e4479b7
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ typedef guint64 GstElementFactoryListType;
|
||||||
*
|
*
|
||||||
* Since: 0.10.31
|
* Since: 0.10.31
|
||||||
*/
|
*/
|
||||||
#define GST_ELEMENT_FACTORY_TYPE_ANY G_GUINT64_CONSTANT ((1 << 49) - 1)
|
#define GST_ELEMENT_FACTORY_TYPE_ANY ((G_GUINT64_CONSTANT (1) << 49) - 1)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_ANY:
|
* GST_ELEMENT_FACTORY_TYPE_MEDIA_ANY:
|
||||||
|
|
Loading…
Reference in a new issue