comparison src/madplug/plugin.c @ 2731:324f950774cb

Disable MADPROBE_DEBUG.
author William Pitcock <nenolod@atheme.org>
date Sun, 29 Jun 2008 00:04:49 -0500
parents c56305e38520
children 4151640654ae
comparison
equal deleted inserted replaced
2730:4b4038a10948 2731:324f950774cb
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 #if 1 280 #undef MADPROBE_DEBUG
281
282 #ifdef MADPROBE_DEBUG
281 static gchar *mp3_ver_table[4] = { "2.5", "INVALID", "2", "1" }; 283 static gchar *mp3_ver_table[4] = { "2.5", "INVALID", "2", "1" };
282 #define LULZ(...) do { fprintf(stderr, "madprobe: "); fprintf(stderr, __VA_ARGS__); } while (0) 284 #define LULZ(...) do { fprintf(stderr, "madprobe: "); fprintf(stderr, __VA_ARGS__); } while (0)
283 #define LOL(...) do { fprintf(stderr, __VA_ARGS__); } while (0) 285 #define LOL(...) do { fprintf(stderr, __VA_ARGS__); } while (0)
284 #else 286 #else
285 #define LULZ(...) do { } while(0) 287 #define LULZ(...) do { } while(0)