Commit 101ef340 authored by stefano's avatar stefano

Remove useless definition of struct AVCLASS.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19402 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4870db73
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment