Mercurial > mplayer.hg
view loader/debug.h @ 35304:d29d116c0818
libmpcodecs: Only choose dummy codecs if forced
Allows dummy codecs to have status working while still not
being selected in cases where the user does not use -vc/-ac
to force particular codecs.
Additionally switch dummy codecs null and black to working now.
author | al |
---|---|
date | Sat, 10 Nov 2012 13:29:36 +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 */