diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-06-30 13:46:27 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-06-30 13:47:45 +0200 |
commit | 0915b531bc62440914710d2989813563b0446c5e (patch) | |
tree | 18517eb6ab7c0a88bf0e1de93b24ba638a6a5a89 /libavformat/mov.c | |
parent | 742b9617698f189e5bd911a600e6547b21bf6699 (diff) | |
download | ffmpeg-0915b531bc62440914710d2989813563b0446c5e.tar.gz |
Rename "AVClass class" as "AVClass component_class".
The aix header math.h defines "extern int class()" for C.
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 36b17c1710..37030a57e2 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -3414,7 +3414,7 @@ static const AVOption options[] = { {NULL} }; -static const AVClass class = { +static const AVClass mov_class = { .class_name = "mov,mp4,m4a,3gp,3g2,mj2", .item_name = av_default_item_name, .option = options, @@ -3430,6 +3430,6 @@ AVInputFormat ff_mov_demuxer = { .read_packet = mov_read_packet, .read_close = mov_read_close, .read_seek = mov_read_seek, - .priv_class = &class, + .priv_class = &mov_class, .flags = AVFMT_NO_BYTE_SEEK, }; |