view loader/debug.h @ 36327:797bbffdd112

vo png: Switch to avcodec_encode_video2 The older function is deprecated and the newer function seems to not have the minimum buffer size limitation. Patch by Jiang Jiang >gzjjgod at gmail com<
author al
date Wed, 14 Aug 2013 10:16:46 +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 */