comparison src/madplug/plugin.c @ 3086:1090853873d2

madplug: Turn off MADPROBE_DEBUG.
author William Pitcock <nenolod@atheme.org>
date Wed, 29 Apr 2009 21:02:33 -0500
parents fc666525b410
children
comparison
equal deleted inserted replaced
3085:ac0af6b39272 3086:1090853873d2
275 ((guint32) hbuf[1] << 16) | 275 ((guint32) hbuf[1] << 16) |
276 ((guint32) hbuf[2] << 8) | 276 ((guint32) hbuf[2] << 8) |
277 ((guint32) hbuf[3]); 277 ((guint32) hbuf[3]);
278 } 278 }
279 279
280 //#undef MADPROBE_DEBUG 280 #undef MADPROBE_DEBUG
281 #define MADPROBE_DEBUG 281 //#define MADPROBE_DEBUG
282 282
283 #ifdef MADPROBE_DEBUG 283 #ifdef MADPROBE_DEBUG
284 static gchar *mp3_ver_table[4] = { "2.5", "INVALID", "2", "1" }; 284 static gchar *mp3_ver_table[4] = { "2.5", "INVALID", "2", "1" };
285 #define LULZ(...) do { fprintf(stderr, "madprobe: "); fprintf(stderr, __VA_ARGS__); } while (0) 285 #define LULZ(...) do { fprintf(stderr, "madprobe: "); fprintf(stderr, __VA_ARGS__); } while (0)
286 #define LOL(...) do { fprintf(stderr, __VA_ARGS__); } while (0) 286 #define LOL(...) do { fprintf(stderr, __VA_ARGS__); } while (0)