diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-12-07 16:07:51 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-12-18 13:36:51 +0100 |
commit | 523c7bd23c781aa0f3a85044896f5e18e8b52534 (patch) | |
tree | c430db55861018aa073c23c2a13c0d54be609a2f /libavutil/log.h | |
parent | ea061af15ac5629dc8dbeb33b7382d6711a323c3 (diff) | |
download | ffmpeg-523c7bd23c781aa0f3a85044896f5e18e8b52534.tar.gz |
misc typo, style and wording fixes
Diffstat (limited to 'libavutil/log.h')
-rw-r--r-- | libavutil/log.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libavutil/log.h b/libavutil/log.h index 0678e1a3b0..7b173302f8 100644 --- a/libavutil/log.h +++ b/libavutil/log.h @@ -65,10 +65,11 @@ typedef struct AVClass { int log_level_offset_offset; /** - * Offset in the structure where a pointer to the parent context for loging is stored. - * for example a decoder that uses eval.c could pass its AVCodecContext to eval as such - * parent context. And a av_log() implementation could then display the parent context - * can be NULL of course + * Offset in the structure where a pointer to the parent context for + * logging is stored. For example a decoder could pass its AVCodecContext + * to eval as such a parent context, which an av_log() implementation + * could then leverage to display the parent context. + * The offset can be NULL. */ int parent_log_context_offset; @@ -78,7 +79,7 @@ typedef struct AVClass { void* (*child_next)(void *obj, void *prev); /** - * Return an AVClass corresponding to next potential + * Return an AVClass corresponding to the next potential * AVOptions-enabled child. * * The difference between child_next and this is that |