1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
#ifndef LOGGING_H_INCLUDED
#define LOGGING_H_INCLUDED
#include <vdr/tools.h>
extern unsigned int m_debugmask;
extern unsigned int m_debugpage;
extern unsigned int m_debugpsub;
extern int m_debugline;
#define BOOLTOTEXT(var) ((var == true) ? "true" : "false")
#define DEBUG_MASK_OT 0x00000001 // general
#define DEBUG_MASK_OT_CACHE 0x00000002 // Caching System
#define DEBUG_MASK_OT_TXTRCVC 0x00000004 // Text Receiver channel related
#define DEBUG_MASK_OT_KNONE 0x00000010 // Knone action
#define DEBUG_MASK_OT_KEYS 0x00000020 // Keys action
#define DEBUG_MASK_OT_NEPG 0x00000100 // new cTelePage
#define DEBUG_MASK_OT_COPG 0x00000200 // regular log amount of new cTelePage
#define DEBUG_MASK_OT_SETUP 0x00000800 // ttSetup
#define DEBUG_MASK_OT_DD 0x00001000 // DrawDisplay
#define DEBUG_MASK_OT_MSG 0x00002000 // Draw/Clear Message
#define DEBUG_MASK_OT_DRPI 0x00004000 // DrawPageId
#define DEBUG_MASK_OT_HOTK 0x00008000 // DrawHotkey
#define DEBUG_MASK_OT_FONT 0x00010000 // Font
#define DEBUG_MASK_OT_AREA 0x00020000 // Area
#define DEBUG_MASK_OT_DBFC 0x00040000 // DisplayBase Function Call
#define DEBUG_MASK_OT_SCALER 0x00080000 // Scaler
#define DEBUG_MASK_OT_BLINK 0x00100000 // Text Blink
#define DEBUG_MASK_OT_DCHR 0x00200000 // DrawChar
#define DEBUG_MASK_OT_BOXED 0x00400000 // BoxedOut
#define DEBUG_MASK_OT_DTXT 0x00800000 // DrawText
#define DEBUG_MASK_OT_TXTRDT 0x01000000 // Text Rendering triplet
#define DEBUG_MASK_OT_RENCLN 0x02000000 // Render/Clean
#define DEBUG_MASK_OT_TXTRCVD 0x04000000 // Text Receiver dump to stdout (particular page only, see code)
#define DEBUG_MASK_OT_TXTRD 0x08000000 // Text Rendering dump to stdout
// special action mask
#define DEBUG_MASK_OT_ACT_LIMIT_LINES 0x10000000 // Limit Lines (debugging for detecting pixel offset issues)
#define DEBUG_MASK_OT_ACT_OSD_BACK_RED 0x20000000 // OSD Background Red (debugging for detecting pixel offset issues)
#define DEBUG_MASK_OT_ACT_CHAR_BACK_BLUE 0x40000000 // Char Background Blue (debugging for detecting pixel offset issues)
#define dsyslog_ot(format, arg...) dsyslog("osdteletext: DEBUG %s/%s: " format, __FILE__, __FUNCTION__, ## arg)
#define wsyslog_ot(format, arg...) esyslog("osdteletext: WARN %s/%s: " format, __FILE__, __FUNCTION__, ## arg)
#define DEBUG_OT if (m_debugmask & DEBUG_MASK_OT) dsyslog_ot
#define DEBUG_OT_FONT if (m_debugmask & DEBUG_MASK_OT_FONT) dsyslog_ot
#define DEBUG_OT_DBFC if (m_debugmask & DEBUG_MASK_OT_DBFC) dsyslog_ot
#define DEBUG_OT_NEPG if (m_debugmask & DEBUG_MASK_OT_NEPG) dsyslog_ot
#define DEBUG_OT_COPG if (m_debugmask & DEBUG_MASK_OT_COPG) dsyslog_ot
#define DEBUG_OT_AREA if (m_debugmask & DEBUG_MASK_OT_AREA) dsyslog_ot
#define DEBUG_OT_SCALER if (m_debugmask & DEBUG_MASK_OT_SCALER) dsyslog_ot
#define DEBUG_OT_BLINK if (m_debugmask & DEBUG_MASK_OT_BLINK) dsyslog_ot
#define DEBUG_OT_SETUP if (m_debugmask & DEBUG_MASK_OT_SETUP) dsyslog_ot
#define DEBUG_OT_DD if (m_debugmask & DEBUG_MASK_OT_DD) dsyslog_ot
#define DEBUG_OT_KNONE if (m_debugmask & DEBUG_MASK_OT_KNONE) dsyslog_ot
#define DEBUG_OT_KEYS if (m_debugmask & DEBUG_MASK_OT_KEYS) dsyslog_ot
#define DEBUG_OT_MSG if (m_debugmask & DEBUG_MASK_OT_MSG) dsyslog_ot
#define DEBUG_OT_DRPI if (m_debugmask & DEBUG_MASK_OT_DRPI) dsyslog_ot
#define DEBUG_OT_HOTK if (m_debugmask & DEBUG_MASK_OT_HOTK) dsyslog_ot
#define DEBUG_OT_DCHR if (m_debugmask & DEBUG_MASK_OT_DCHR) dsyslog_ot
#define DEBUG_OT_BOXED if (m_debugmask & DEBUG_MASK_OT_BOXED) dsyslog_ot
#define DEBUG_OT_DTXT if (m_debugmask & DEBUG_MASK_OT_DTXT ) dsyslog_ot
#define DEBUG_OT_CACHE if (m_debugmask & DEBUG_MASK_OT_CACHE) dsyslog_ot
#define DEBUG_OT_TXTRDT if (m_debugmask & DEBUG_MASK_OT_TXTRDT) dsyslog_ot
#define DEBUG_OT_RENCLN if (m_debugmask & DEBUG_MASK_OT_RENCLN) dsyslog_ot
#define DEBUG_OT_TXTRCVC if (m_debugmask & DEBUG_MASK_OT_TXTRCVC) dsyslog_ot
#define DEBUG_OT_TXTRCVD if (m_debugmask & DEBUG_MASK_OT_TXTRCVD) dsyslog_ot
#define DEBUG_OT_TXTRD if (m_debugmask & DEBUG_MASK_OT_TXTRD) dsyslog_ot
#endif
|