Commit a9e0818e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

wasapi: fix overflow after a few hours

parent b5224703
...@@ -75,7 +75,7 @@ typedef struct aout_stream_sys ...@@ -75,7 +75,7 @@ typedef struct aout_stream_sys
vlc_fourcc_t format; /**< Sample format */ vlc_fourcc_t format; /**< Sample format */
unsigned rate; /**< Sample rate */ unsigned rate; /**< Sample rate */
unsigned bytes_per_frame; unsigned bytes_per_frame;
UINT32 written; /**< Frames written to the buffer */ UINT64 written; /**< Frames written to the buffer */
UINT32 frames; /**< Total buffer size (frames) */ UINT32 frames; /**< Total buffer size (frames) */
} aout_stream_sys_t; } aout_stream_sys_t;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment