mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-06 01:26:49 +08:00

1. Remove static libraries for mpp and vpu. 2. Fix vpu_api_test and use dlopen to access libvpu. 3. Fix issue on vepu22 dependence on rga. vpu_api_test cmd: enc: vpu_api_test -t 2 -w 1280 -h 720 -i a.yuv -coding 7 -o a.h264 Change-Id: I9682b17b90dce4a82400f5e2da3c955819f875bf Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
13 lines
336 B
CMake
13 lines
336 B
CMake
# vim: syntax=cmake
|
|
# ----------------------------------------------------------------------------
|
|
# add libvpu implement
|
|
# ----------------------------------------------------------------------------
|
|
add_library(utils STATIC
|
|
mpi_enc_utils.c
|
|
utils.c
|
|
iniparser.c
|
|
dictionary.c
|
|
)
|
|
|
|
target_link_libraries(utils mpp_base)
|