mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-07 01:52:46 +08:00

1. Set these func into mpi_dec_utils 2. Note: num of threads: -n -> -s Signed-off-by: Yandong Lin <yandong.lin@rock-chips.com> Change-Id: If733fb0fdd7110313d2e140d3c50aad37260b6d2
15 lines
376 B
CMake
15 lines
376 B
CMake
# vim: syntax=cmake
|
|
# ----------------------------------------------------------------------------
|
|
# add libvpu implement
|
|
# ----------------------------------------------------------------------------
|
|
add_library(utils STATIC
|
|
mpi_enc_utils.c
|
|
mpi_dec_utils.c
|
|
utils.c
|
|
iniparser.c
|
|
dictionary.c
|
|
camera_source.c
|
|
)
|
|
|
|
target_link_libraries(utils mpp_base)
|