# HG changeset patch # User stefano # Date 1247398242 0 # Node ID e67b4de734afb63fc93a5132838fcfa8e4abdeca # Parent b27973fe596089989f6d21da3b95faa08c252218 Remove useless definition of struct AVCLASS. diff -r b27973fe5960 -r e67b4de734af log.h --- a/log.h Fri Jul 10 19:20:06 2009 +0000 +++ b/log.h Sun Jul 12 11:30:42 2009 +0000 @@ -29,8 +29,7 @@ * arbitrary struct of which the first field is a pointer to an * AVClass struct (e.g. AVCodecContext, AVFormatContext etc.). */ -typedef struct AVCLASS AVClass; -struct AVCLASS { +typedef struct { /** * The name of the class; usually it is the same name as the * context structure type to which the AVClass is associated. @@ -49,7 +48,7 @@ * @see av_set_default_options() */ const struct AVOption *option; -}; +} AVClass; /* av_log API */