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/spdifenc.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/spdifenc.c')
-rw-r--r-- | libavformat/spdifenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/spdifenc.c b/libavformat/spdifenc.c index 857c20de22..17501f8cb4 100644 --- a/libavformat/spdifenc.c +++ b/libavformat/spdifenc.c @@ -92,7 +92,7 @@ static const AVOption options[] = { { NULL }, }; -static const AVClass class = { +static const AVClass spdif_class = { .class_name = "spdif", .item_name = av_default_item_name, .option = options, @@ -552,5 +552,5 @@ AVOutputFormat ff_spdif_muxer = { .write_packet = spdif_write_packet, .write_trailer = spdif_write_trailer, .flags = AVFMT_NOTIMESTAMPS, - .priv_class = &class, + .priv_class = &spdif_class, }; |