diff options
author | Guido van Rossum <guido@python.org> | 1999-03-12 19:31:51 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-03-12 19:31:51 (GMT) |
commit | 4edf656402ad396fc9aed6009ba85c77a4978d79 (patch) | |
tree | 3a180ada508434dca030145e171385dcc810f7c4 /Lib/plat-irix6 | |
parent | 9a4da084d472b0f35799f331ac651e31d70cef4d (diff) | |
download | cpython-4edf656402ad396fc9aed6009ba85c77a4978d79.zip cpython-4edf656402ad396fc9aed6009ba85c77a4978d79.tar.gz cpython-4edf656402ad396fc9aed6009ba85c77a4978d79.tar.bz2 |
Remove stuff with unsure copyright status
Diffstat (limited to 'Lib/plat-irix6')
-rw-r--r-- | Lib/plat-irix6/AWARE.py | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/Lib/plat-irix6/AWARE.py b/Lib/plat-irix6/AWARE.py deleted file mode 100644 index 30be50b..0000000 --- a/Lib/plat-irix6/AWARE.py +++ /dev/null @@ -1,54 +0,0 @@ -# -# Copyright (c) 1992 Aware, Inc. All rights reserved. -# -# Copyright Unpublished, Aware Inc. All Rights Reserved. -# This software contains proprietary and confidential -# information of Aware, Inc. Use, disclosure or -# reproduction is prohibited without the prior express -# written consent of Aware, Inc. -# -# - -# -# awareAudio.h - Aware Compression Library Parameter Header -# -# 01/21/92 Original Version by Brian Knittel and Jonathon Devine -# - -import CL - -# Aware Audio Specific Parameters - For both MPEG Audio and Multirate -CL.CHANNEL_POLICY = CL.NUMBER_OF_PARAMS + 0 -CL.NOISE_MARGIN = CL.NUMBER_OF_PARAMS + 1 -CL.BITRATE_POLICY = CL.NUMBER_OF_PARAMS + 2 - -# Additional parameters for MPEG Audio -CL.BITRATE_TARGET = CL.NUMBER_OF_PARAMS + 3 -CL.LAYER = CL.NUMBER_OF_PARAMS + 4 - -# read/write for compression configuration -# read for state during compression/decompression - -# -# Channel Policy -# -AWCMP_STEREO = 1 -AWCMP_JOINT_STEREO = 2 -AWCMP_INDEPENDENT = 3 - -# -# read/write for compression configuration, -# read for state during compression -# -# -# Bit-rate Policy -# -AWCMP_FIXED_RATE = 1 -AWCMP_CONST_QUAL = 2 -AWCMP_LOSSLESS = 4 - -# -# Layer values -# -AWCMP_MPEG_LAYER_I = 1 -AWCMP_MPEG_LAYER_II = 2 |