InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ISoundContentData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: wtislar
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //========================================================================================
23 
24 #ifndef __ISoundContentData__
25 #define __ISoundContentData__
26 
27 #include "SoundID.h"
28 
29 
30 
36 {
37 public:
38 
41  {
42  enRawData = 0,
43  enSignedData = 1,
44  enMuLawData = 2,
45  enALawData = 3
46  };
47 
51  {
53  enSampleRate = kSoundPrefix + 0, // int32; unit: Hz; CONTENT DATA
55  enNumberOfSoundChannels = kSoundPrefix + 1, // int16; CONTENT DATA
57  enBitsPerSample = kSoundPrefix + 2, // int16 CONTENT DATA
59  enFormatOfSampleData = kSoundPrefix + 3, // int16 CONTENT DATA
61  enFormatOfCompression = kSoundPrefix + 4, // PMString CONTENT DATA
63  enVolume = kSoundPrefix + 5, // PMReal CONTENT DATA
64 
66  enSynchronous = kSoundPrefix + 6, // flag CONTENT DATA
68  enRepeat = kSoundPrefix + 7, // flag CONTENT DATA
70  enMix = kSoundPrefix + 8 // flag CONTENT DATA
71  };
72 
73 
74 
75 }; // end ISoundContentData interface
76 
77 #endif // __ISoundContentData__