Commit 76ab435d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

MP4: shut a warning

parent b26d9bf5
...@@ -147,7 +147,7 @@ static void CreateUUID( UUID_t *p_uuid, uint32_t i_fourcc ) ...@@ -147,7 +147,7 @@ static void CreateUUID( UUID_t *p_uuid, uint32_t i_fourcc )
} }
/* some functions for mp4 encoding of variables */ /* some functions for mp4 encoding of variables */
#ifdef MP4_VERBOSE
static void MP4_ConvertDate2Str( char *psz, uint64_t i_date ) static void MP4_ConvertDate2Str( char *psz, uint64_t i_date )
{ {
int i_day; int i_day;
...@@ -164,6 +164,7 @@ static void MP4_ConvertDate2Str( char *psz, uint64_t i_date ) ...@@ -164,6 +164,7 @@ static void MP4_ConvertDate2Str( char *psz, uint64_t i_date )
i_sec = i_date % 60; i_sec = i_date % 60;
sprintf( psz, "%dd-%2.2dh:%2.2dm:%2.2ds", i_day, i_hour, i_min, i_sec ); sprintf( psz, "%dd-%2.2dh:%2.2dm:%2.2ds", i_day, i_hour, i_min, i_sec );
} }
#endif
/***************************************************************************** /*****************************************************************************
* Some prototypes. * Some prototypes.
......
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