├── .gitignore ├── README.md ├── Setenv-android.sh ├── _build_ffmpeg.sh ├── _build_openssl.sh ├── _old_build_ffmpeg.sh ├── _old_build_openssl.sh └── patches └── patch_fix_ffmpeg_lib_name.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /libs 2 | /src 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davinctor/CompileFFmpegWithOpenSSL/HEAD/README.md -------------------------------------------------------------------------------- /Setenv-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davinctor/CompileFFmpegWithOpenSSL/HEAD/Setenv-android.sh -------------------------------------------------------------------------------- /_build_ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davinctor/CompileFFmpegWithOpenSSL/HEAD/_build_ffmpeg.sh -------------------------------------------------------------------------------- /_build_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davinctor/CompileFFmpegWithOpenSSL/HEAD/_build_openssl.sh -------------------------------------------------------------------------------- /_old_build_ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davinctor/CompileFFmpegWithOpenSSL/HEAD/_old_build_ffmpeg.sh -------------------------------------------------------------------------------- /_old_build_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davinctor/CompileFFmpegWithOpenSSL/HEAD/_old_build_openssl.sh -------------------------------------------------------------------------------- /patches/patch_fix_ffmpeg_lib_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davinctor/CompileFFmpegWithOpenSSL/HEAD/patches/patch_fix_ffmpeg_lib_name.txt --------------------------------------------------------------------------------