comparison vamp/vamp.h @ 481:8701366604c7

Update a couple of comments to match the specifications elsewhere
author Chris Cannam
date Thu, 09 Feb 2017 11:49:40 +0000
parents 4ec736a36546
children
comparison
equal deleted inserted replaced
480:6dfe3dd38878 481:8701366604c7
68 * plugin lifecycle documentation. 68 * plugin lifecycle documentation.
69 */ 69 */
70 70
71 typedef struct _VampParameterDescriptor 71 typedef struct _VampParameterDescriptor
72 { 72 {
73 /** Computer-usable name of the parameter. Must not change. [a-zA-Z0-9_] */ 73 /** Computer-usable name of the parameter. Must not change. [a-zA-Z0-9_-] */
74 const char *identifier; 74 const char *identifier;
75 75
76 /** Human-readable name of the parameter. May be translatable. */ 76 /** Human-readable name of the parameter. May be translatable. */
77 const char *name; 77 const char *name;
78 78
115 115
116 } VampSampleType; 116 } VampSampleType;
117 117
118 typedef struct _VampOutputDescriptor 118 typedef struct _VampOutputDescriptor
119 { 119 {
120 /** Computer-usable name of the output. Must not change. [a-zA-Z0-9_] */ 120 /** Computer-usable name of the output. Must not change. [a-zA-Z0-9_-] */
121 const char *identifier; 121 const char *identifier;
122 122
123 /** Human-readable name of the output. May be translatable. */ 123 /** Human-readable name of the output. May be translatable. */
124 const char *name; 124 const char *name;
125 125