Browse code

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>

Jindrich Makovicka authored on 2011/10/13 05:30:56
Showing 1 changed files
... ...
@@ -30,7 +30,7 @@
30 30
  * arbitrary struct of which the first field is a pointer to an
31 31
  * AVClass struct (e.g. AVCodecContext, AVFormatContext etc.).
32 32
  */
33
-typedef struct {
33
+typedef struct AVClass {
34 34
     /**
35 35
      * The name of the class; usually it is the same name as the
36 36
      * context structure type to which the AVClass is associated.