mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 23:28:16 +00:00
clock: fix compiler warning
Cast to the right value, it might indeed overflow but we want the compiler to ignore that.
This commit is contained in:
parent
2cb9eba560
commit
74cf810392
1 changed files with 5 additions and 5 deletions
|
@ -183,10 +183,10 @@ typedef gpointer GstClockID;
|
|||
*/
|
||||
#define GST_TIME_TO_TIMEVAL(t,tv) \
|
||||
G_STMT_START { \
|
||||
(tv).tv_sec = ((GstClockTime) (t)) / GST_SECOND; \
|
||||
(tv).tv_usec = (((GstClockTime) (t)) - \
|
||||
(tv).tv_sec = (glong) (((GstClockTime) (t)) / GST_SECOND); \
|
||||
(tv).tv_usec = (glong) ((((GstClockTime) (t)) - \
|
||||
((GstClockTime) (tv).tv_sec) * GST_SECOND) \
|
||||
/ GST_USECOND; \
|
||||
/ GST_USECOND); \
|
||||
} G_STMT_END
|
||||
|
||||
/**
|
||||
|
@ -205,8 +205,8 @@ G_STMT_START { \
|
|||
*/
|
||||
#define GST_TIME_TO_TIMESPEC(t,ts) \
|
||||
G_STMT_START { \
|
||||
(ts).tv_sec = (t) / GST_SECOND; \
|
||||
(ts).tv_nsec = ((t) - (ts).tv_sec * GST_SECOND) / GST_NSECOND; \
|
||||
(ts).tv_sec = (glong) ((t) / GST_SECOND); \
|
||||
(ts).tv_nsec = (glong) (((t) - (ts).tv_sec * GST_SECOND) / GST_NSECOND); \
|
||||
} G_STMT_END
|
||||
|
||||
/* timestamp debugging macros */
|
||||
|
|
Loading…
Reference in a new issue