view loader/debug.h @ 35590:388b4cc85c0e

Allow "nopts" as time specification, it might be useful in some rare cases.
author reimar
date Sat, 15 Dec 2012 19:51:21 +0000
parents a8ea87c71d18
children
line wrap: on
line source

#ifndef MPLAYER_DEBUG_H
#define MPLAYER_DEBUG_H

#ifdef DEBUG
#define TRACE printf
#define dbg_printf printf
#else
#define TRACE(...)
#define dbg_printf(...)
#endif

#endif /* MPLAYER_DEBUG_H */