view loader/debug.h @ 29934:ccbc4361e9e6

Fix compilation with runtime cpu detection. All functions in swscale_template.c should be declared with the RENAME macro.
author ramiro
date Sat, 05 Dec 2009 09:44:19 +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 */