- http://bernhardwagner.net, xmlizer.net
- in/bernhardw
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rm -f wavegain | |
| gcc -arch i386 -s -DHAVE_CONFIG_H -o wavegain audio.c dither.c gain_analysis.c getopt.c getopt1.c main.c misc.c recurse.c wavegain.c -lm | |
| audio.c:698:31: warning: passing 'char [8]' to parameter of type 'unsigned char *' converts between pointers to integer types with different sign [-Wpointer-sign] | |
| opt->gain_scale = READ_D64(buf_double); | |
| ^~~~~~~~~~ | |
| audio.c:191:35: note: passing argument to parameter 'cptr' here | |
| double read_d64_be(unsigned char *cptr) | |
| ^ | |
| 1 warning generated. | |
| ld: warning: option -s is obsolete and being ignored |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| """ | |
| Created on Sep 24, 2013 | |
| @author: RandomHardcoreJerks | |
| Requires pywin32 | |
| original: http://code.activestate.com/recipes/474121/ |
OlderNewer