diff options
author | Stefano Sabatini | 2009-07-12 11:30:42 +0000 |
---|---|---|
committer | Stefano Sabatini | 2009-07-12 11:30:42 +0000 |
commit | 68485d2728d80d5b2972d292982ed905e37fb6ae (patch) | |
tree | 5f5f5bce7876af4135bd7a2ab4e6a77a70ae0302 /libavutil | |
parent | fed5d54b56cfc5e439af66614b999c4a814c8803 (diff) |
Remove useless definition of struct AVCLASS.
Originally committed as revision 19402 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/log.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavutil/log.h b/libavutil/log.h index 6a7a27957a..b0a1493607 100644 --- a/libavutil/log.h +++ b/libavutil/log.h @@ -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 @@ struct AVCLASS { * @see av_set_default_options() */ const struct AVOption *option; -}; +} AVClass; /* av_log API */ |