Skip to content

Commit

Permalink
add filter support (only colorspace for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnut committed Nov 12, 2024
1 parent 1ec1b8b commit 28420bc
Show file tree
Hide file tree
Showing 10 changed files with 1,970 additions and 19 deletions.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ if (WIN32)
${CMAKE_SOURCE_DIR}/lib/avcodec.lib
${CMAKE_SOURCE_DIR}/lib/avformat.lib
${CMAKE_SOURCE_DIR}/lib/avutil.lib
${CMAKE_SOURCE_DIR}/lib/avfilter.lib
${CMAKE_SOURCE_DIR}/lib/swresample.lib
${CMAKE_SOURCE_DIR}/lib/swscale.lib
${CMAKE_SOURCE_DIR}/lib/libx264.lib
Expand All @@ -60,6 +61,7 @@ elseif (ANDROID)
${CMAKE_SOURCE_DIR}/lib/arm64-v8a/libavcodec.a
${CMAKE_SOURCE_DIR}/lib/arm64-v8a/libavformat.a
${CMAKE_SOURCE_DIR}/lib/arm64-v8a/libavutil.a
${CMAKE_SOURCE_DIR}/lib/arm64-v8a/libavfilter.a
${CMAKE_SOURCE_DIR}/lib/arm64-v8a/libswresample.a
${CMAKE_SOURCE_DIR}/lib/arm64-v8a/libswscale.a
${CMAKE_SOURCE_DIR}/lib/arm64-v8a/libaom.a
Expand All @@ -74,6 +76,7 @@ elseif (ANDROID)
${CMAKE_SOURCE_DIR}/lib/armeabi-v7a/libavcodec.a
${CMAKE_SOURCE_DIR}/lib/armeabi-v7a/libavformat.a
${CMAKE_SOURCE_DIR}/lib/armeabi-v7a/libavutil.a
${CMAKE_SOURCE_DIR}/lib/armeabi-v7a/libavfilter.a
${CMAKE_SOURCE_DIR}/lib/armeabi-v7a/libswresample.a
${CMAKE_SOURCE_DIR}/lib/armeabi-v7a/libswscale.a
${CMAKE_SOURCE_DIR}/lib/armeabi-v7a/libaom.a
Expand All @@ -90,6 +93,7 @@ else ()
${CMAKE_SOURCE_DIR}/lib/libavcodec.a
${CMAKE_SOURCE_DIR}/lib/libavformat.a
${CMAKE_SOURCE_DIR}/lib/libavutil.a
${CMAKE_SOURCE_DIR}/lib/libavfilter.a
${CMAKE_SOURCE_DIR}/lib/libswresample.a
${CMAKE_SOURCE_DIR}/lib/libswscale.a
${BZIP2_LIBRARY}
Expand Down
Loading

0 comments on commit 28420bc

Please sign in to comment.