summaryrefslogtreecommitdiff
path: root/libavutil/log.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-01-28 23:03:17 +0000
committerDiego Biurrun <diego@biurrun.de>2009-01-28 23:03:17 +0000
commitbfe3676feb5548993292b806de45a1cbc746c05f (patch)
tree18ad073de9e9d1ef37ef08fe31de7929e11f04a3 /libavutil/log.h
parent7b484a7a177b689f6f3ae8f16935dd47ff5120c3 (diff)
spelling/grammar/consistency review part II
Originally committed as revision 16848 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/log.h')
-rw-r--r--libavutil/log.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavutil/log.h b/libavutil/log.h
index 8c93f9c853..29eafb5c40 100644
--- a/libavutil/log.h
+++ b/libavutil/log.h
@@ -25,7 +25,7 @@
#include "avutil.h"
/**
- * Describes the class of an AVClass context structure, that is an
+ * Describes the class of an AVClass context structure. That is an
* arbitrary struct of which the first field is a pointer to an
* AVClass struct (e.g. AVCodecContext, AVFormatContext etc.).
*/
@@ -38,8 +38,8 @@ struct AVCLASS {
const char* class_name;
/**
- * a pointer to a function which returns the name of a context
- * instance \p ctx associated with the class
+ * A pointer to a function which returns the name of a context
+ * instance \p ctx associated with the class.
*/
const char* (*item_name)(void* ctx);
@@ -65,7 +65,7 @@ struct AVCLASS {
#define AV_LOG_QUIET -8
/**
- * something went really wrong and we will crash now
+ * Something went really wrong and we will crash now.
*/
#define AV_LOG_PANIC 0
@@ -92,7 +92,7 @@ struct AVCLASS {
#define AV_LOG_VERBOSE 40
/**
- * stuff which is only useful for libav* developers
+ * Stuff which is only useful for libav* developers.
*/
#define AV_LOG_DEBUG 48
#endif
@@ -102,8 +102,8 @@ extern int av_log_level;
#endif
/**
- * Send the specified message to the log if the level is less than or equal to
- * the current av_log_level. By default, all logging messages are sent to
+ * Sends the specified message to the log if the level is less than or equal
+ * to the current av_log_level. By default, all logging messages are sent to
* stderr. This behavior can be altered by setting a different av_vlog callback
* function.
*