mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
local include fixes
Original commit message from CVS: local include fixes Fix some 64 bits constants to be glib friendly issue for a vararg macro with MSVC
This commit is contained in:
parent
4c3a686d98
commit
0f9162395a
2 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#include <gstac3parse.h>
|
||||
#include "gstac3parse.h"
|
||||
|
||||
/* struct and table stolen from ac3dec by Aaron Holtzman */
|
||||
struct frmsize_s
|
||||
|
|
|
@ -749,7 +749,7 @@ gst_asfmux_put_le64 (GstBuffer * packet, guint64 data)
|
|||
static void
|
||||
gst_asfmux_put_time (GstBuffer * packet, guint64 time)
|
||||
{
|
||||
gst_asfmux_put_le64 (packet, time + 116444736000000000LLU);
|
||||
gst_asfmux_put_le64 (packet, time + G_GINT64_CONSTANT (116444736000000000));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue