Rename "AVClass class" as "AVClass component_class" for external codecs.
The aix header math.h defines "extern int class()" for C. This fixes compilation on aix with external libraries enabled. Signed-off-by: Carl Eugen Hoyos <cehoyos@ag.or.at>
This commit is contained in:
parent
f32b8130f4
commit
bf18abb2eb
8 changed files with 16 additions and 16 deletions
|
@ -392,7 +392,7 @@ static const AVOption options[] = {
|
|||
{ NULL },
|
||||
};
|
||||
|
||||
static const AVClass class = {
|
||||
static const AVClass openjpeg_class = {
|
||||
.class_name = "libopenjpeg",
|
||||
.item_name = av_default_item_name,
|
||||
.option = options,
|
||||
|
@ -409,5 +409,5 @@ AVCodec ff_libopenjpeg_decoder = {
|
|||
.capabilities = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS,
|
||||
.max_lowres = 31,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("OpenJPEG JPEG 2000"),
|
||||
.priv_class = &class,
|
||||
.priv_class = &openjpeg_class,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue