Changeset 344 for libmpc/trunk/mpcgain
- Timestamp:
- 09/17/07 18:41:38 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/mpcgain/mpcgain.c
r252 r344 42 42 #include "../libmpcdec/mpc_bits_reader.h" 43 43 44 #define MPCGAIN_MAJOR 0 45 #define MPCGAIN_MINOR 9 46 #define MPCGAIN_BUILD 0 47 48 #define _cat(a,b,c) #a"."#b"."#c 49 #define cat(a,b,c) _cat(a,b,c) 50 #define MPCGAIN_VERSION cat(MPCGAIN_MAJOR,MPCGAIN_MINOR,MPCGAIN_BUILD) 51 52 const char About [] = "mpcgain - musepack (mpc) replaygain calculator v" MPCGAIN_VERSION " (C) 2006-2007 MDT\nBuilt " __DATE__ " " __TIME__ "\n"; 53 54 44 55 static void usage(const char *exename) 45 56 { … … 56 67 mpc_uint32_t * header_pos; 57 68 int j; 69 70 printf(About); 58 71 59 72 if(argc < 2) {
Note: See TracChangeset
for help on using the changeset viewer.