comparison log.h @ 637:683a6dbdd2b2 libavutil

spelling/grammar/consistency review part III
author diego
date Wed, 28 Jan 2009 23:16:49 +0000
parents c04808220c83
children 0b26a018b46f
comparison
equal deleted inserted replaced
636:c04808220c83 637:683a6dbdd2b2
68 * Something went really wrong and we will crash now. 68 * Something went really wrong and we will crash now.
69 */ 69 */
70 #define AV_LOG_PANIC 0 70 #define AV_LOG_PANIC 0
71 71
72 /** 72 /**
73 * something went wrong and recovery is not possible 73 * Something went wrong and recovery is not possible.
74 * like no header in a format which depends on it or a combination 74 * For example, no header was found for a format which depends
75 * of parameters which are not allowed 75 * on headers or an illegal combination of parameters is used.
76 */ 76 */
77 #define AV_LOG_FATAL 8 77 #define AV_LOG_FATAL 8
78 78
79 /** 79 /**
80 * something went wrong and cannot losslessly be recovered 80 * Something went wrong and cannot losslessly be recovered.
81 * but not all future data is affected 81 * However, not all future data is affected.
82 */ 82 */
83 #define AV_LOG_ERROR 16 83 #define AV_LOG_ERROR 16
84 84
85 /** 85 /**
86 * something somehow does not look correct / something which may or may not 86 * Something somehow does not look correct. This may or may not
87 * lead to some problems like use of -vstrict -2 87 * lead to problems. An example would be the use of '-vstrict -2'.
88 */ 88 */
89 #define AV_LOG_WARNING 24 89 #define AV_LOG_WARNING 24
90 90
91 #define AV_LOG_INFO 32 91 #define AV_LOG_INFO 32
92 #define AV_LOG_VERBOSE 40 92 #define AV_LOG_VERBOSE 40