cutils.c File Reference
#include "avformat.h"
#include "internal.h"

Go to the source code of this file.

Macros

#define ISLEAP(y)   (((y) % 4 == 0) && (((y) % 100) != 0 || ((y) % 400) == 0))
#define LEAPS_COUNT(y)   ((y)/4 - (y)/100 + (y)/400)

Functions

void ff_dynarray_add (intptr_t **tab_ptr, int *nb_ptr, intptr_t elem)
struct tm * brktimegm (time_t secs, struct tm *tm)

Macro Definition Documentation

#define ISLEAP (   y)    (((y) % 4 == 0) && (((y) % 100) != 0 || ((y) % 400) == 0))

Definition at line 45 of file cutils.c.

Referenced by brktimegm().

#define LEAPS_COUNT (   y)    ((y)/4 - (y)/100 + (y)/400)

Definition at line 46 of file cutils.c.

Referenced by brktimegm().

Function Documentation

struct tm* brktimegm ( time_t  secs,
struct tm *  tm 
)
read

Definition at line 50 of file cutils.c.

Referenced by dv_write_pack().

void ff_dynarray_add ( intptr_t **  tab_ptr,
int *  nb_ptr,
intptr_t  elem 
)

Definition at line 25 of file cutils.c.