summaryrefslogtreecommitdiff
path: root/libavutil/log.h
diff options
context:
space:
mode:
authorJindrich Makovicka <makovick@gmail.com>2011-10-12 22:30:56 +0200
committerAnton Khirnov <anton@khirnov.net>2011-10-12 23:39:31 +0200
commit67bbf07fb54b0289768b9d8195877a421c4fa500 (patch)
tree3644051245696c733de96411c7b10f351a879e05 /libavutil/log.h
parent3e68b282216b531c9a2887fe5168c2c3b26b11e8 (diff)
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.h2
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.