home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Lib / sgi / AWARE.py < prev    next >
Text File  |  1993-02-05  |  1KB  |  55 lines

  1. # Copyright (c) 1992 Aware, Inc. All rights reserved.
  2. # Copyright Unpublished, Aware Inc.  All Rights Reserved.
  3. # This software contains proprietary and confidential
  4. # information of Aware, Inc.  Use, disclosure or
  5. # reproduction is prohibited without the prior express
  6. # written consent of Aware, Inc.
  7. #
  8.  
  9. #
  10. # awareAudio.h - Aware Compression Library Parameter Header
  11. #
  12. #   01/21/92    Original Version by Brian Knittel and Jonathon Devine
  13. #
  14.  
  15. import CL
  16.  
  17. # Aware Audio Specific Parameters - For both MPEG Audio and Multirate
  18. CL.CHANNEL_POLICY = CL.NUMBER_OF_PARAMS + 0
  19. CL.NOISE_MARGIN = CL.NUMBER_OF_PARAMS + 1
  20. CL.BITRATE_POLICY = CL.NUMBER_OF_PARAMS + 2
  21.  
  22. # Additional parameters for MPEG Audio
  23. CL.BITRATE_TARGET = CL.NUMBER_OF_PARAMS + 3
  24. CL.LAYER = CL.NUMBER_OF_PARAMS + 4
  25.  
  26. # read/write for compression configuration
  27. # read for state during compression/decompression 
  28.  
  29. #
  30. # Channel Policy
  31. #
  32. AWCMP_STEREO = 1
  33. AWCMP_JOINT_STEREO = 2
  34. AWCMP_INDEPENDENT = 3
  35.  
  36. # read/write for compression configuration,
  37. # read for state during compression
  38. #
  39. #
  40. # Bit-rate Policy
  41. #
  42. AWCMP_FIXED_RATE = 1
  43. AWCMP_CONST_QUAL = 2
  44. AWCMP_LOSSLESS = 4
  45.  
  46. #
  47. # Layer values
  48. #
  49. AWCMP_MPEG_LAYER_I = 1
  50. AWCMP_MPEG_LAYER_II = 2
  51.