comparison opt.h @ 7007:fa39bba4c8a4 libavcodec

minor spelling/grammar fixes
author diego
date Fri, 06 Jun 2008 07:00:42 +0000
parents 9259af8a686b
children 18279e49cd4a
comparison
equal deleted inserted replaced
7006:48cfbc65d688 7007:fa39bba4c8a4
40 FF_OPT_TYPE_BINARY, ///< offset must point to a pointer immediately followed by an int for the length 40 FF_OPT_TYPE_BINARY, ///< offset must point to a pointer immediately followed by an int for the length
41 FF_OPT_TYPE_CONST=128, 41 FF_OPT_TYPE_CONST=128,
42 }; 42 };
43 43
44 /** 44 /**
45 * AVOption. 45 * AVOption
46 */ 46 */
47 typedef struct AVOption { 47 typedef struct AVOption {
48 const char *name; 48 const char *name;
49 49
50 /** 50 /**
51 * short English text help. 51 * short English help text
52 * @todo what about other languages 52 * @todo What about other languages?
53 */ 53 */
54 const char *help; 54 const char *help;
55 int offset; ///< offset to context structure where the parsed value should be stored 55 int offset; ///< offset to context structure where the parsed value should be stored
56 enum AVOptionType type; 56 enum AVOptionType type;
57 57