Fix compile warning due to integer overflow on what should be a 64bit uint
Original commit message from CVS: Fix compile warning due to integer overflow on what should be a 64bit uint
This commit is contained in:
parent
55887eaeff
commit
7742e4797f
@ -781,7 +781,7 @@ static void
|
|||||||
gst_asfmux_put_time (GstBuffer *packet,
|
gst_asfmux_put_time (GstBuffer *packet,
|
||||||
guint64 time)
|
guint64 time)
|
||||||
{
|
{
|
||||||
gst_asfmux_put_le64 (packet, time + 116444736000000000);
|
gst_asfmux_put_le64 (packet, time + 116444736000000000LLU);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
x
Reference in New Issue
Block a user