mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Remove useless definition of struct AVCLASS.
Originally committed as revision 19402 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
fed5d54b56
commit
68485d2728
@ -29,8 +29,7 @@
|
|||||||
* arbitrary struct of which the first field is a pointer to an
|
* arbitrary struct of which the first field is a pointer to an
|
||||||
* AVClass struct (e.g. AVCodecContext, AVFormatContext etc.).
|
* AVClass struct (e.g. AVCodecContext, AVFormatContext etc.).
|
||||||
*/
|
*/
|
||||||
typedef struct AVCLASS AVClass;
|
typedef struct {
|
||||||
struct AVCLASS {
|
|
||||||
/**
|
/**
|
||||||
* The name of the class; usually it is the same name as the
|
* The name of the class; usually it is the same name as the
|
||||||
* context structure type to which the AVClass is associated.
|
* context structure type to which the AVClass is associated.
|
||||||
@ -49,7 +48,7 @@ struct AVCLASS {
|
|||||||
* @see av_set_default_options()
|
* @see av_set_default_options()
|
||||||
*/
|
*/
|
||||||
const struct AVOption *option;
|
const struct AVOption *option;
|
||||||
};
|
} AVClass;
|
||||||
|
|
||||||
/* av_log API */
|
/* av_log API */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user