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

Remove useless check for time.h

parent dd029e35
...@@ -829,7 +829,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[ ...@@ -829,7 +829,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[
AC_MSG_RESULT(no)]) AC_MSG_RESULT(no)])
dnl Check for headers dnl Check for headers
AC_CHECK_HEADERS(time.h getopt.h strings.h locale.h) AC_CHECK_HEADERS(getopt.h strings.h locale.h)
AC_CHECK_HEADERS(fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h xlocale.h) AC_CHECK_HEADERS(fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h xlocale.h)
AC_CHECK_HEADERS([arpa/inet.h netinet/in.h netinet/udplite.h sys/eventfd.h]) AC_CHECK_HEADERS([arpa/inet.h netinet/in.h netinet/udplite.h sys/eventfd.h])
AC_CHECK_HEADERS([net/if.h], [], [], AC_CHECK_HEADERS([net/if.h], [], [],
......
...@@ -77,9 +77,7 @@ ...@@ -77,9 +77,7 @@
# include "tables/eit.h" # include "tables/eit.h"
# endif # endif
#endif #endif
#ifdef HAVE_TIME_H #include <time.h>
# include <time.h>
#endif
#undef TS_DEBUG #undef TS_DEBUG
/***************************************************************************** /*****************************************************************************
...@@ -1142,7 +1140,6 @@ static int DVBEventInformation( demux_t *p_demux, int64_t *pi_time, int64_t *pi_ ...@@ -1142,7 +1140,6 @@ static int DVBEventInformation( demux_t *p_demux, int64_t *pi_time, int64_t *pi_
if( pi_time ) if( pi_time )
*pi_time = 0; *pi_time = 0;
#ifdef HAVE_TIME_H
if( p_sys->b_access_control && p_sys->i_dvb_length > 0 ) if( p_sys->b_access_control && p_sys->i_dvb_length > 0 )
{ {
/* FIXME we should not use time() but read the date from the tdt */ /* FIXME we should not use time() but read the date from the tdt */
...@@ -1156,7 +1153,6 @@ static int DVBEventInformation( demux_t *p_demux, int64_t *pi_time, int64_t *pi_ ...@@ -1156,7 +1153,6 @@ static int DVBEventInformation( demux_t *p_demux, int64_t *pi_time, int64_t *pi_
return VLC_SUCCESS; return VLC_SUCCESS;
} }
} }
#endif
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
...@@ -35,9 +35,7 @@ ...@@ -35,9 +35,7 @@
#include <vlc_sout.h> #include <vlc_sout.h>
#include <vlc_block.h> #include <vlc_block.h>
#ifdef HAVE_TIME_H
#include <time.h> #include <time.h>
#endif
#include <vlc_iso_lang.h> #include <vlc_iso_lang.h>
#include "vlc_meta.h" #include "vlc_meta.h"
...@@ -2158,13 +2156,10 @@ static void box_send( sout_mux_t *p_mux, bo_t *box ) ...@@ -2158,13 +2156,10 @@ static void box_send( sout_mux_t *p_mux, bo_t *box )
static int64_t get_timestamp(void) static int64_t get_timestamp(void)
{ {
int64_t i_timestamp = 0; int64_t i_timestamp = time(NULL);
#ifdef HAVE_TIME_H
i_timestamp = time(NULL);
i_timestamp += 2082844800; // MOV/MP4 start date is 1/1/1904 i_timestamp += 2082844800; // MOV/MP4 start date is 1/1/1904
// 208284480 is (((1970 - 1904) * 365) + 17) * 24 * 60 * 60 // 208284480 is (((1970 - 1904) * 365) + 17) * 24 * 60 * 60
#endif
return i_timestamp; return i_timestamp;
} }
...@@ -26,10 +26,6 @@ ...@@ -26,10 +26,6 @@
* Preamble * Preamble
*****************************************************************************/ *****************************************************************************/
#ifdef HAVE_TIME_H
# include <time.h>
#endif
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include "config.h" # include "config.h"
#endif #endif
......
...@@ -46,9 +46,9 @@ ...@@ -46,9 +46,9 @@
#include <sys/time.h> /* gettimeofday() */ #include <sys/time.h> /* gettimeofday() */
#endif #endif
#ifdef HAVE_TIME_H #include <time.h> /* ctime() */
# include <time.h> /* ctime() */ #if defined (WIN32) && !defined (UNDER_CE)
# include <sys/timeb.h> /* ftime() */ #include <sys/timeb.h> /* ftime() */
#endif #endif
#include <vlc_input.h> #include <vlc_input.h>
......
...@@ -44,10 +44,7 @@ ...@@ -44,10 +44,7 @@
# include <sys/time.h> /* gettimeofday() */ # include <sys/time.h> /* gettimeofday() */
#endif #endif
#ifdef HAVE_TIME_H #include <time.h> /* ctime() */
# include <time.h> /* ctime() */
# include <sys/timeb.h> /* ftime() */
#endif
#include <vlc_input.h> #include <vlc_input.h>
#include "input_internal.h" #include "input_internal.h"
......
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