2002-07-25 19:04:20 +03:00
|
|
|
/*
|
2011-10-30 20:02:42 +03:00
|
|
|
* various simple utilities for libavformat
|
2002-07-25 19:04:20 +03:00
|
|
|
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard
|
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-07-25 19:04:20 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-07-25 19:04:20 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2002-07-25 19:04:20 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-07-25 19:04:20 +03:00
|
|
|
*/
|
2014-10-24 11:08:28 +03:00
|
|
|
|
|
|
|
#include "libavutil/time_internal.h"
|
2002-07-25 19:04:20 +03:00
|
|
|
#include "avformat.h"
|
2010-04-12 00:44:23 +03:00
|
|
|
#include "internal.h"
|
2002-07-25 19:04:20 +03:00
|
|
|
|
2004-08-18 11:15:07 +03:00
|
|
|
#define ISLEAP(y) (((y) % 4 == 0) && (((y) % 100) != 0 || ((y) % 400) == 0))
|
|
|
|
#define LEAPS_COUNT(y) ((y)/4 - (y)/100 + (y)/400)
|
|
|
|
|
2007-07-02 15:19:26 +03:00
|
|
|
/* This is our own gmtime_r. It differs from its POSIX counterpart in a
|
2004-08-18 11:15:07 +03:00
|
|
|
couple of places, though. */
|
2012-02-15 12:28:39 +03:00
|
|
|
struct tm *ff_brktimegm(time_t secs, struct tm *tm)
|
2005-12-17 20:14:38 +02:00
|
|
|
{
|
2014-10-24 11:08:28 +03:00
|
|
|
tm = gmtime_r(&secs, tm);
|
2004-08-18 11:15:07 +03:00
|
|
|
|
2014-10-24 11:08:28 +03:00
|
|
|
tm->tm_year += 1900; /* unlike gmtime_r we store complete year here */
|
|
|
|
tm->tm_mon += 1; /* unlike gmtime_r tm_mon is from 1 to 12 */
|
2004-08-18 11:15:07 +03:00
|
|
|
|
|
|
|
return tm;
|
|
|
|
}
|