First of all, I am sorry because of I don't know where I can ask.
I need to add cedarx(allwinner video codec) codec to vlc for android. I added related parameters to
vlc/modules/codec/Makefile.am
Code: Select all
libcedar_plugin_la_SOURCES = codec/cedar.c
libcedar_plugin_la_CFLAGS = $(AM_CFLAGS) $(CFLAGS_cedar)
libcedar_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(codecdir)'
libcedar_plugin_la_LIBADD = $(LIBS_cedar)
EXTRA_LTLIBRARIES += libcedar_plugin.la
codec_LTLIBRARIES += $(LTLIBcedar)
- libcedarx.a
libcedarx.la
libcedarx.so
libcedarx.so.1
libcedarx.so.1.0.0
Code: Select all
../../modules/codec/cedar.c:389: error: undefined reference to 'libcedarx_decoder_close'
../../modules/codec/cedar.c:223: error: undefined reference to 'libcedarx_decoder_open'
../../modules/codec/cedar.c:430: error: undefined reference to 'libcedarx_decoder_add_stream'
../../modules/codec/cedar.c:430: error: undefined reference to 'libcedarx_decoder_decode_stream'
../../modules/codec/cedar.c:430: error: undefined reference to 'libcedarx_decoder_request_frame'
Best regards