mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-27 11:32:51 +00:00
Magic glib macro usage to ensure constants are passed properly to vararg functions.
Original commit message from CVS: Magic glib macro usage to ensure constants are passed properly to vararg functions.
This commit is contained in:
parent
bd3cff086d
commit
e3b8cd9265
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-10-13 Michael Smith <msmith@fluendo.com>
|
||||
|
||||
* ext/ogg/gstoggmux.c:
|
||||
Use magic glib macros to define constants as 64 bit, to ensure
|
||||
appropriate vararg passing.
|
||||
|
||||
2005-10-13 Michael Smith <msmith@fluendo.com>
|
||||
|
||||
* ext/ogg/gstoggmux.c:
|
||||
|
|
|
@ -131,8 +131,8 @@ enum
|
|||
};
|
||||
|
||||
/* set to 0.5 seconds by default */
|
||||
#define DEFAULT_MAX_DELAY 500000000
|
||||
#define DEFAULT_MAX_PAGE_DELAY 500000000
|
||||
#define DEFAULT_MAX_DELAY G_GINT64_CONSTANT(500000000)
|
||||
#define DEFAULT_MAX_PAGE_DELAY G_GINT64_CONSTANT(500000000)
|
||||
enum
|
||||
{
|
||||
ARG_0,
|
||||
|
|
Loading…
Reference in a new issue