Skip to content
Snippets Groups Projects
Commit 9638a509 authored by Elizabeth Figura's avatar Elizabeth Figura Committed by Alexandre Julliard
Browse files

winegstreamer: Use ULONGLONG instead of uint64_t in Unix library interface structures.


The latter has inconsistent alignment between the Unix and Win32 sides.

Signed-off-by: default avatarZebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard's avatarAlexandre Julliard <julliard@winehq.org>
parent 4de079bb
No related branches found
No related tags found
No related merge requests found
......@@ -150,17 +150,18 @@ struct wg_parser_event
struct
{
/* pts and duration are in 100-nanosecond units. */
uint64_t pts, duration;
ULONGLONG pts, duration;
uint32_t size;
bool discontinuity, preroll, delta, has_pts, has_duration;
} buffer;
struct
{
uint64_t position, stop;
double rate;
ULONGLONG position, stop;
DOUBLE rate;
} segment;
} u;
};
C_ASSERT(sizeof(struct wg_parser_event) == 40);
struct unix_funcs
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment