comparison opt.h @ 9822:2887f410011f libavcodec

Remove '\p', '\c' and '\e' doxygen markup from doxy, as it should improve plain text doxy readability. See the thread: "[RFC] Should we use doxygen markup?".
author stefano
date Sat, 06 Jun 2009 09:35:15 +0000
parents d706b300b89f
children 2d076fd5f927
comparison
equal deleted inserted replaced
9821:0813b30e7db9 9822:2887f410011f
85 const char *unit; 85 const char *unit;
86 } AVOption; 86 } AVOption;
87 87
88 88
89 /** 89 /**
90 * Looks for an option in \p obj. Looks only for the options which 90 * Looks for an option in obj. Looks only for the options which
91 * have the flags set as specified in \p mask and \p flags (that is, 91 * have the flags set as specified in mask and flags (that is,
92 * for which it is the case that opt->flags & mask == flags). 92 * for which it is the case that opt->flags & mask == flags).
93 * 93 *
94 * @param[in] obj a pointer to a struct whose first element is a 94 * @param[in] obj a pointer to a struct whose first element is a
95 * pointer to an AVClass 95 * pointer to an AVClass
96 * @param[in] name the name of the option to look for 96 * @param[in] name the name of the option to look for
106 */ 106 */
107 attribute_deprecated const AVOption *av_set_string(void *obj, const char *name, const char *val); 107 attribute_deprecated const AVOption *av_set_string(void *obj, const char *name, const char *val);
108 108
109 /** 109 /**
110 * @return a pointer to the AVOption corresponding to the field set or 110 * @return a pointer to the AVOption corresponding to the field set or
111 * NULL if no matching AVOption exists, or if the value \p val is not 111 * NULL if no matching AVOption exists, or if the value val is not
112 * valid 112 * valid
113 * @see av_set_string3() 113 * @see av_set_string3()
114 */ 114 */
115 attribute_deprecated const AVOption *av_set_string2(void *obj, const char *name, const char *val, int alloc); 115 attribute_deprecated const AVOption *av_set_string2(void *obj, const char *name, const char *val, int alloc);
116 #endif 116 #endif