File: vms.lis

package info (click to toggle)
sox 12.16-6
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,180 kB
  • ctags: 1,466
  • sloc: ansic: 16,658; sh: 2,071; makefile: 126
file content (65 lines) | stat: -rw-r--r-- 2,347 bytes parent folder | download | duplicates (3)
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
VAX/VMS port of SOX, release 5, patchlevel 7

As an important side note, the DECsound tool only recognizes DDIF and Sun .au
format sounds (Sun .au sounds *must* be uLaw, 8000Hz sampling rate to be
readable).

The portmeister makes no representations about the suitability of this
software for any purpose.  This software is provided "as is" without
warranties expressed or implied.

New files:

	sox.opt	- linker options file
	descrip.mms - MMS description file
	sound2au.com - VMS DCL command file to translate a sound to a Sun .au
	    by way of sound2sun
	sound2sun.c - program to convert sampled audio files to uLAW format
	    (by Rich Gopstein and Harris Corporation)
	sound2sun.opt - options file for sound2sun
	tests.com - VMS DCL command file equivalent of tests.sh

Modified files:

	st.h -
		added VMS definitions for READBINARY and WRITEBINARY
		changed "#ifdef SYSV" to "#if defined(SYSV) || defined(VMS)"
		    to pick up definitions of index, rindex, and bcopy
		added definitions of macros IMPORT and EXPORT (used on VMS
		    for variable scope) -- collateral damage affects variables
		    formats, informat, outformat, sizes, styles, effects
	wav.c -
		changed extern to IMPORT for volume, amplitude, summary, and 
		    verbose
	voc.c -
		changed extern to IMPORT for summary and verbose
	sox.c -
		replaced "extern errno" with "#include <errno.h>"
		replaced "extern sys_errlist[]| with "#include <perror.h>"
		added EXPORT to verbose, summary, volume, amplitdue, 
		    informat, outformat, and writing
		removed unneeded extern declaration of formats[] (already
		    defined in st.h)
	sndrtool.c -
		replaced "extern errno" with "#include <errno.h>"
		replaced "extern sys_errlist[]| with "#include <perror.h>"
	skel.c -
		changed extern to IMPORT for volume, amplitude, summary, and 
		    verbose
	sf.c -
		changed extern to IMPORT for summary and verbose
	sbdsp.c -
		changed extern to IMPORT for volume, amplitude, summary, and 
		    verbose
	raw.c -
		changed extern to IMPORT for summary and verbose
	misc.c -
		moved "#include st.h" to top of file
		added EXPORT to sizes[] and styles[]
	handlers.c -
		added EXPORT to effects[] and formats[]
	echo.c -
		changed extern to IMPORT for writing
	8svx.c -
		replaced "extern errno" with "#include <errno.h>"
		replaced "extern sys_errlist[]| with "#include <perror.h>"