[FFmpeg-cvslog] r19402 - trunk/libavutil/log.h

stefano subversion
Sun Jul 12 13:30:42 CEST 2009


Author: stefano
Date: Sun Jul 12 13:30:42 2009
New Revision: 19402

Log:
Remove useless definition of struct AVCLASS.

Modified:
   trunk/libavutil/log.h

Modified: trunk/libavutil/log.h
==============================================================================
--- trunk/libavutil/log.h	Sun Jul 12 02:17:42 2009	(r19401)
+++ trunk/libavutil/log.h	Sun Jul 12 13:30:42 2009	(r19402)
@@ -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 */
 



More information about the ffmpeg-cvslog mailing list