mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
datetime: Return G_MAXFLOAT instead of G_MAXDOUBLE for no timezone offset
Returning G_MAXDOUBLE from a function returning a float is not going to work well and MSVC also correctly warns about this. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4264>
This commit is contained in:
parent
8541d6b990
commit
49c9f31803
1 changed files with 2 additions and 2 deletions
|
@ -334,7 +334,7 @@ gst_date_time_get_microsecond (const GstDateTime * datetime)
|
|||
* values, timezones before (to the west) of UTC have negative values.
|
||||
* If @datetime represents UTC time, then the offset is zero.
|
||||
*
|
||||
* Return value: the offset from UTC in hours, or %G_MAXDOUBLE if none is set.
|
||||
* Return value: the offset from UTC in hours, or %G_MAXFLOAT if none is set.
|
||||
*/
|
||||
gfloat
|
||||
gst_date_time_get_time_zone_offset (const GstDateTime * datetime)
|
||||
|
@ -342,7 +342,7 @@ gst_date_time_get_time_zone_offset (const GstDateTime * datetime)
|
|||
g_return_val_if_fail (datetime != NULL, 0.0);
|
||||
|
||||
if (!gst_date_time_has_time (datetime))
|
||||
return G_MAXDOUBLE;
|
||||
return G_MAXFLOAT;
|
||||
|
||||
return (g_date_time_get_utc_offset (datetime->datetime) /
|
||||
G_USEC_PER_SEC) / 3600.0;
|
||||
|
|
Loading…
Reference in a new issue