# For more information about using CMake with Android Studio, read the # documentation: https://d.android.com/studio/projects/add-native-code.html # Sets the minimum version of CMake required to build the native library. cmake_minimum_required(VERSION 3.4.1) # Creates and names a library, sets it as either STATIC # or SHARED, and provides the relative paths to its source code. # You can define multiple libraries, and CMake builds them for you. # Gradle automatically packages shared libraries with your APK. add_library( # Sets the name of the library. gb_native # Sets the library as a shared library. SHARED # Provides a relative path to your source file(s). src/main/cpp/gb_native.cpp src/main/cpp/filterUtil.c src/main/cpp/gb28181_muxer.cpp src/main/cpp/gb28181_sender.cpp src/main/cpp/threadsafe_queue.cpp src/main/cpp/mpeg-ps-enc.c src/main/cpp/psh/mpeg-pack-header.c src/main/cpp/psh/mpeg-system-header.c src/main/cpp/psh/mpeg-psm.c src/main/cpp/psh/mpeg-pes.c src/main/cpp/psh/mpeg-util.c src/main/cpp/psh/mpeg-element-descriptor.c src/main/cpp/psh/mpeg-crc32.c src/main/cpp/psh/mpeg-ps-dec.c src/main/cpp/psh/mpeg-psd.c src/main/cpp/psh/mpeg-packet.c src/main/cpp/psh/mpeg-ts-h264.c src/main/cpp/psh/mpeg-ts-h265.c src/main/cpp/rtp/rtp-h264-pack.c src/main/cpp/rtp/rtp-payload.c src/main/cpp/rtp/rtp-packet.c src/main/cpp/rtp/rtp-h264-bitstream.c src/main/cpp/rtp/rtp-h264-unpack.c src/main/cpp/rtp/rtp-h265-unpack.c src/main/cpp/rtp/rtp-h265-pack.c src/main/cpp/rtp/rtp-mp4v-es-unpack.c src/main/cpp/rtp/rtp-mp4v-es-pack.c src/main/cpp/rtp/rtp-ts-pack.c src/main/cpp/rtp/rtp-ts-unpack.c src/main/cpp/rtp/rtp-ps-unpack.c src/main/cpp/rtp/rtp-payload-helper.c src/main/cpp/rtp_hn/RTPPacketAnalysis.cpp src/main/cpp/rtp_hn/PSAnalysis.cpp ) add_library( avcodec SHARED IMPORTED ) add_library( avfilter SHARED IMPORTED ) add_library( avformat SHARED IMPORTED ) add_library( avutil SHARED IMPORTED ) add_library( swresample SHARED IMPORTED ) add_library( swscale SHARED IMPORTED ) if(${ANDROID_ABI} STREQUAL "arm64-v8a") set_target_properties( avcodec PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/arm64-v8a/libavcodec.so ) set_target_properties( avfilter PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/arm64-v8a/libavfilter.so ) set_target_properties( avformat PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/arm64-v8a/libavformat.so ) set_target_properties( avutil PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/arm64-v8a/libavutil.so ) set_target_properties( swresample PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/arm64-v8a/libswresample.so ) set_target_properties( swscale PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/arm64-v8a/libswscale.so ) set_target_properties( swscale PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/arm64-v8a/libpostproc.so ) endif(${ANDROID_ABI} STREQUAL "arm64-v8a") if(${ANDROID_ABI} STREQUAL "armeabi-v7a") set_target_properties( avcodec PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libavcodec.so ) set_target_properties( avfilter PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libavfilter.so ) set_target_properties( avformat PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libavformat.so ) set_target_properties( avutil PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libavutil.so ) set_target_properties( swresample PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libswresample.so ) set_target_properties( swscale PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libswscale.so ) set_target_properties( swscale PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/src/main/jniLibs/armeabi-v7a/libpostproc.so ) endif(${ANDROID_ABI} STREQUAL "armeabi-v7a") #include_directories( # ${CMAKE_SOURCE_DIR}/ffmpeg-3.2.5/ #) # Searches for a specified prebuilt library and stores the path as a # variable. Because CMake includes system libraries in the search path by # default, you only need to specify the name of the public NDK library # you want to add. CMake verifies that the library exists before # completing its build. find_library( # Sets the name of the path variable. log-lib # Specifies the name of the NDK library that # you want CMake to locate. log ) # Specifies libraries CMake should link to your target library. You # can link multiple libraries, such as libraries you define in this # build script, prebuilt third-party libraries, or system libraries. target_link_libraries( # Specifies the target library. gb_native avcodec avfilter avformat avutil swresample swscale # Links the target library to the log library # included in the NDK. ${log-lib} )