diff options
author | Jindrich Makovicka <makovick@gmail.com> | 2011-10-12 22:30:56 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-12 23:39:31 +0200 |
commit | 67bbf07fb54b0289768b9d8195877a421c4fa500 (patch) | |
tree | 3644051245696c733de96411c7b10f351a879e05 /libavutil/log.h | |
parent | 3e68b282216b531c9a2887fe5168c2c3b26b11e8 (diff) | |
download | ffmpeg-67bbf07fb54b0289768b9d8195877a421c4fa500.tar.gz |
log.h: make AVClass a named struct
'struct AVClass' is used in the code since
641c7afe3c17334b81e3e2eef88f1751eb68f89f, but AVClass is typedeffed as
an anonymous struct.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavutil/log.h')
-rw-r--r-- | libavutil/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/log.h b/libavutil/log.h index 18d0ddf0a8..0678e1a3b0 100644 --- a/libavutil/log.h +++ b/libavutil/log.h @@ -30,7 +30,7 @@ * arbitrary struct of which the first field is a pointer to an * AVClass struct (e.g. AVCodecContext, AVFormatContext etc.). */ -typedef struct { +typedef struct AVClass { /** * The name of the class; usually it is the same name as the * context structure type to which the AVClass is associated. |