Files
ppsspp/ext/ffmpeg-build/libs/libswresample.cmake

23 lines
718 B
CMake

# libswresample source files (all platforms)
set(LIBSWRESAMPLE_SOURCE_FILES
${LIBSWRESAMPLE_SRC_DIR}/swresample.h
${LIBSWRESAMPLE_SRC_DIR}/audioconvert.c
${LIBSWRESAMPLE_SRC_DIR}/dither.c
${LIBSWRESAMPLE_SRC_DIR}/options.c
${LIBSWRESAMPLE_SRC_DIR}/rematrix.c
${LIBSWRESAMPLE_SRC_DIR}/resample_dsp.c
${LIBSWRESAMPLE_SRC_DIR}/resample.c
${LIBSWRESAMPLE_SRC_DIR}/swresample_frame.c
${LIBSWRESAMPLE_SRC_DIR}/swresample.c
)
set(LIBSWRESAMPLE_HEADERS
${LIBSWRESAMPLE_SRC_DIR}/swresample.h
${LIBSWRESAMPLE_SRC_DIR}/version.h
)
# Experimental addition to troubleshoot stubborn builds that inject ARCH_X86
if (ARCH_X86)
list(APPEND LIBSWRESAMPLE_SOURCE_FILES ${LIBSWRESAMPLE_SRC_DIR}/x86/resample_init.c)
endif()