comparison opt.h @ 12024:fdafbcef52f5 libavcodec

Fix grammar errors in documentation
author mru
date Wed, 30 Jun 2010 15:38:06 +0000
parents 7dd2a45249a9
children 7220936dc29c
comparison
equal deleted inserted replaced
12023:c7455450364d 12024:fdafbcef52f5
137 const char *unit; 137 const char *unit;
138 } AVOption2; 138 } AVOption2;
139 139
140 140
141 /** 141 /**
142 * Looks for an option in obj. Looks only for the options which 142 * Look for an option in obj. Look only for the options which
143 * have the flags set as specified in mask and flags (that is, 143 * have the flags set as specified in mask and flags (that is,
144 * for which it is the case that opt->flags & mask == flags). 144 * for which it is the case that opt->flags & mask == flags).
145 * 145 *
146 * @param[in] obj a pointer to a struct whose first element is a 146 * @param[in] obj a pointer to a struct whose first element is a
147 * pointer to an AVClass 147 * pointer to an AVClass
166 */ 166 */
167 attribute_deprecated const AVOption *av_set_string2(void *obj, const char *name, const char *val, int alloc); 167 attribute_deprecated const AVOption *av_set_string2(void *obj, const char *name, const char *val, int alloc);
168 #endif 168 #endif
169 169
170 /** 170 /**
171 * Sets the field of obj with the given name to value. 171 * Set the field of obj with the given name to value.
172 * 172 *
173 * @param[in] obj A struct whose first element is a pointer to an 173 * @param[in] obj A struct whose first element is a pointer to an
174 * AVClass. 174 * AVClass.
175 * @param[in] name the name of the field to set 175 * @param[in] name the name of the field to set
176 * @param[in] val The value to set. If the field is not of a string 176 * @param[in] val The value to set. If the field is not of a string