├── .gitignore ├── AFPlayer ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── xhunmon │ │ │ └── afplayer │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── core │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── audio │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── sl_helper.cpp │ │ │ │ │ ├── sl_player.cpp │ │ │ │ │ └── sl_player.h │ │ │ │ ├── common │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── android_log.h │ │ │ │ │ ├── call_java.cpp │ │ │ │ │ ├── call_java.h │ │ │ │ │ ├── const.h │ │ │ │ │ ├── global.cpp │ │ │ │ │ ├── global.h │ │ │ │ │ ├── macro.h │ │ │ │ │ └── safe_queue.h │ │ │ │ ├── ffmpeg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ff_decoder.cpp │ │ │ │ │ ├── ff_decoder.h │ │ │ │ │ ├── video_sws.cpp │ │ │ │ │ └── video_sws.h │ │ │ │ ├── player_main.cpp │ │ │ │ ├── player_main.h │ │ │ │ ├── user_player.h │ │ │ │ └── video │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gl_helper.cpp │ │ │ │ │ ├── gl_player.cpp │ │ │ │ │ └── gl_player.h │ │ │ ├── include │ │ │ │ ├── libavcodec │ │ │ │ │ ├── ac3_parser.h │ │ │ │ │ ├── adts_parser.h │ │ │ │ │ ├── avcodec.h │ │ │ │ │ ├── avdct.h │ │ │ │ │ ├── avfft.h │ │ │ │ │ ├── d3d11va.h │ │ │ │ │ ├── dirac.h │ │ │ │ │ ├── dv_profile.h │ │ │ │ │ ├── dxva2.h │ │ │ │ │ ├── jni.h │ │ │ │ │ ├── mediacodec.h │ │ │ │ │ ├── qsv.h │ │ │ │ │ ├── vaapi.h │ │ │ │ │ ├── vdpau.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── videotoolbox.h │ │ │ │ │ ├── vorbis_parser.h │ │ │ │ │ └── xvmc.h │ │ │ │ ├── libavfilter │ │ │ │ │ ├── avfilter.h │ │ │ │ │ ├── buffersink.h │ │ │ │ │ ├── buffersrc.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavformat │ │ │ │ │ ├── avformat.h │ │ │ │ │ ├── avio.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavutil │ │ │ │ │ ├── adler32.h │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aes_ctr.h │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── audio_fifo.h │ │ │ │ │ ├── avassert.h │ │ │ │ │ ├── avconfig.h │ │ │ │ │ ├── avstring.h │ │ │ │ │ ├── avutil.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bprint.h │ │ │ │ │ ├── bswap.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast5.h │ │ │ │ │ ├── channel_layout.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dict.h │ │ │ │ │ ├── display.h │ │ │ │ │ ├── downmix_info.h │ │ │ │ │ ├── encryption_info.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── eval.h │ │ │ │ │ ├── ffversion.h │ │ │ │ │ ├── fifo.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── frame.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hdr_dynamic_metadata.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── hwcontext.h │ │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ │ ├── hwcontext_d3d11va.h │ │ │ │ │ ├── hwcontext_drm.h │ │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ │ ├── hwcontext_mediacodec.h │ │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ │ ├── hwcontext_videotoolbox.h │ │ │ │ │ ├── imgutils.h │ │ │ │ │ ├── intfloat.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── lfg.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ │ ├── mathematics.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mem.h │ │ │ │ │ ├── motion_vector.h │ │ │ │ │ ├── murmur3.h │ │ │ │ │ ├── opt.h │ │ │ │ │ ├── parseutils.h │ │ │ │ │ ├── pixdesc.h │ │ │ │ │ ├── pixelutils.h │ │ │ │ │ ├── pixfmt.h │ │ │ │ │ ├── random_seed.h │ │ │ │ │ ├── rational.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── replaygain.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── samplefmt.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── sha512.h │ │ │ │ │ ├── spherical.h │ │ │ │ │ ├── stereo3d.h │ │ │ │ │ ├── tea.h │ │ │ │ │ ├── threadmessage.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timecode.h │ │ │ │ │ ├── timestamp.h │ │ │ │ │ ├── tree.h │ │ │ │ │ ├── twofish.h │ │ │ │ │ ├── tx.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── xtea.h │ │ │ │ ├── libswresample │ │ │ │ │ ├── swresample.h │ │ │ │ │ └── version.h │ │ │ │ └── libswscale │ │ │ │ │ ├── swscale.h │ │ │ │ │ └── version.h │ │ │ ├── libs │ │ │ │ └── armeabi-v7a │ │ │ │ │ ├── libavcodec.so │ │ │ │ │ ├── libavfilter.so │ │ │ │ │ ├── libavformat.so │ │ │ │ │ ├── libavutil.so │ │ │ │ │ ├── libcrypto.3.so │ │ │ │ │ ├── libfdk-aac.so │ │ │ │ │ ├── libssl.3.so │ │ │ │ │ ├── libswresample.so │ │ │ │ │ ├── libswscale.so │ │ │ │ │ └── libx264.161.so │ │ │ └── native_player_jni.cpp │ │ ├── java │ │ │ └── cn │ │ │ │ └── qincji │ │ │ │ └── afplayer │ │ │ │ ├── MainActivity.java │ │ │ │ └── core │ │ │ │ ├── AFPlayer.java │ │ │ │ ├── DisplayUtil.java │ │ │ │ └── callback │ │ │ │ └── OnAFCallback.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_disc.png │ │ │ ├── ic_disc_blackground.png │ │ │ └── ic_seekbar_thumb.png │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── xhunmon │ │ └── afplayer │ │ └── ExampleUnitTest.java ├── build.gradle ├── build_android.sh ├── doc │ └── memory-leak │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README_cn.md │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── library │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── cpp │ │ │ ├── AllocPool.hpp │ │ │ ├── Cache.h │ │ │ ├── HookProxy.h │ │ │ ├── Logger.h │ │ │ ├── MapData.cpp │ │ │ ├── MapData.h │ │ │ ├── MemoryCache.cpp │ │ │ ├── MemoryCache.h │ │ │ ├── PltGotHookProxy.h │ │ │ ├── Raphael.cpp │ │ │ ├── Raphael.h │ │ │ └── xloader.cpp │ │ │ ├── inline32 │ │ │ ├── inlineHook.c │ │ │ ├── inlineHook.h │ │ │ ├── relocate.c │ │ │ └── relocate.h │ │ │ ├── inline64 │ │ │ ├── And64InlineHook.cpp │ │ │ └── And64InlineHook.hpp │ │ │ ├── java │ │ │ └── com │ │ │ │ └── bytedance │ │ │ │ └── raphael │ │ │ │ ├── Raphael.java │ │ │ │ └── RaphaelReceiver.java │ │ │ ├── python │ │ │ ├── mmap.py │ │ │ └── raphael.py │ │ │ ├── unwind32 │ │ │ ├── backtrace-arch.h │ │ │ ├── backtrace-arm.c │ │ │ ├── backtrace-helper.c │ │ │ ├── backtrace-helper.h │ │ │ ├── backtrace.c │ │ │ ├── backtrace.h │ │ │ ├── libudf_unwind_p.h │ │ │ ├── map_info.c │ │ │ ├── map_info.h │ │ │ ├── ptrace-arch.h │ │ │ ├── ptrace.c │ │ │ └── ptrace.h │ │ │ ├── unwind64 │ │ │ ├── backtrace_64.cpp │ │ │ └── backtrace_64.h │ │ │ ├── xDL │ │ │ ├── xdl.c │ │ │ ├── xdl.h │ │ │ ├── xdl_const.h │ │ │ ├── xdl_iterate.c │ │ │ ├── xdl_iterate.h │ │ │ ├── xdl_lzma.c │ │ │ ├── xdl_lzma.h │ │ │ ├── xdl_util.c │ │ │ └── xdl_util.h │ │ │ └── xHook │ │ │ ├── queue.h │ │ │ ├── tree.h │ │ │ ├── xh_core.c │ │ │ ├── xh_core.h │ │ │ ├── xh_elf.c │ │ │ ├── xh_elf.h │ │ │ ├── xh_errno.h │ │ │ ├── xh_log.c │ │ │ ├── xh_log.h │ │ │ ├── xh_util.c │ │ │ └── xh_util.h │ │ └── settings.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── FFmpegImportDemo ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── xhunmon │ │ │ └── ffmpegimportdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ ├── libavcodec │ │ │ │ │ ├── ac3_parser.h │ │ │ │ │ ├── adts_parser.h │ │ │ │ │ ├── avcodec.h │ │ │ │ │ ├── avdct.h │ │ │ │ │ ├── avfft.h │ │ │ │ │ ├── d3d11va.h │ │ │ │ │ ├── dirac.h │ │ │ │ │ ├── dv_profile.h │ │ │ │ │ ├── dxva2.h │ │ │ │ │ ├── jni.h │ │ │ │ │ ├── mediacodec.h │ │ │ │ │ ├── qsv.h │ │ │ │ │ ├── vaapi.h │ │ │ │ │ ├── vdpau.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── videotoolbox.h │ │ │ │ │ ├── vorbis_parser.h │ │ │ │ │ └── xvmc.h │ │ │ │ ├── libavfilter │ │ │ │ │ ├── avfilter.h │ │ │ │ │ ├── buffersink.h │ │ │ │ │ ├── buffersrc.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavformat │ │ │ │ │ ├── avformat.h │ │ │ │ │ ├── avio.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavutil │ │ │ │ │ ├── adler32.h │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aes_ctr.h │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── audio_fifo.h │ │ │ │ │ ├── avassert.h │ │ │ │ │ ├── avconfig.h │ │ │ │ │ ├── avstring.h │ │ │ │ │ ├── avutil.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bprint.h │ │ │ │ │ ├── bswap.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast5.h │ │ │ │ │ ├── channel_layout.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dict.h │ │ │ │ │ ├── display.h │ │ │ │ │ ├── downmix_info.h │ │ │ │ │ ├── encryption_info.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── eval.h │ │ │ │ │ ├── ffversion.h │ │ │ │ │ ├── fifo.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── frame.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hdr_dynamic_metadata.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── hwcontext.h │ │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ │ ├── hwcontext_d3d11va.h │ │ │ │ │ ├── hwcontext_drm.h │ │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ │ ├── hwcontext_mediacodec.h │ │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ │ ├── hwcontext_videotoolbox.h │ │ │ │ │ ├── imgutils.h │ │ │ │ │ ├── intfloat.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── lfg.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ │ ├── mathematics.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mem.h │ │ │ │ │ ├── motion_vector.h │ │ │ │ │ ├── murmur3.h │ │ │ │ │ ├── opt.h │ │ │ │ │ ├── parseutils.h │ │ │ │ │ ├── pixdesc.h │ │ │ │ │ ├── pixelutils.h │ │ │ │ │ ├── pixfmt.h │ │ │ │ │ ├── random_seed.h │ │ │ │ │ ├── rational.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── replaygain.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── samplefmt.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── sha512.h │ │ │ │ │ ├── spherical.h │ │ │ │ │ ├── stereo3d.h │ │ │ │ │ ├── tea.h │ │ │ │ │ ├── threadmessage.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timecode.h │ │ │ │ │ ├── timestamp.h │ │ │ │ │ ├── tree.h │ │ │ │ │ ├── twofish.h │ │ │ │ │ ├── tx.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── xtea.h │ │ │ │ ├── libswresample │ │ │ │ │ ├── swresample.h │ │ │ │ │ └── version.h │ │ │ │ └── libswscale │ │ │ │ │ ├── swscale.h │ │ │ │ │ └── version.h │ │ │ ├── libs │ │ │ │ └── armeabi-v7a │ │ │ │ │ ├── libavcodec.so │ │ │ │ │ ├── libavfilter.so │ │ │ │ │ ├── libavformat.so │ │ │ │ │ ├── libavutil.so │ │ │ │ │ ├── libcrypto.3.so │ │ │ │ │ ├── libfdk-aac.so │ │ │ │ │ ├── libssl.3.so │ │ │ │ │ ├── libswresample.so │ │ │ │ │ ├── libswscale.so │ │ │ │ │ └── libx264.161.so │ │ │ └── player_main.cpp │ │ ├── java │ │ │ └── com │ │ │ │ └── xhunmon │ │ │ │ └── ffmpegimportdemo │ │ │ │ ├── MainActivity.java │ │ │ │ └── core │ │ │ │ └── Player.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── xhunmon │ │ └── ffmpegimportdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── FFmpegMediaCodecDemo ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── xhunmon │ │ │ └── ffmpegmediacodecdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── core │ │ │ │ ├── hw_mediacodec.cpp │ │ │ │ └── hw_mediacodec.h │ │ │ ├── include │ │ │ │ ├── libavcodec │ │ │ │ │ ├── ac3_parser.h │ │ │ │ │ ├── adts_parser.h │ │ │ │ │ ├── avcodec.h │ │ │ │ │ ├── avdct.h │ │ │ │ │ ├── avfft.h │ │ │ │ │ ├── d3d11va.h │ │ │ │ │ ├── dirac.h │ │ │ │ │ ├── dv_profile.h │ │ │ │ │ ├── dxva2.h │ │ │ │ │ ├── jni.h │ │ │ │ │ ├── mediacodec.h │ │ │ │ │ ├── qsv.h │ │ │ │ │ ├── vaapi.h │ │ │ │ │ ├── vdpau.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── videotoolbox.h │ │ │ │ │ ├── vorbis_parser.h │ │ │ │ │ └── xvmc.h │ │ │ │ ├── libavfilter │ │ │ │ │ ├── avfilter.h │ │ │ │ │ ├── buffersink.h │ │ │ │ │ ├── buffersrc.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavformat │ │ │ │ │ ├── avformat.h │ │ │ │ │ ├── avio.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavutil │ │ │ │ │ ├── adler32.h │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aes_ctr.h │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── audio_fifo.h │ │ │ │ │ ├── avassert.h │ │ │ │ │ ├── avconfig.h │ │ │ │ │ ├── avstring.h │ │ │ │ │ ├── avutil.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bprint.h │ │ │ │ │ ├── bswap.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast5.h │ │ │ │ │ ├── channel_layout.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dict.h │ │ │ │ │ ├── display.h │ │ │ │ │ ├── downmix_info.h │ │ │ │ │ ├── encryption_info.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── eval.h │ │ │ │ │ ├── ffversion.h │ │ │ │ │ ├── fifo.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── frame.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hdr_dynamic_metadata.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── hwcontext.h │ │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ │ ├── hwcontext_d3d11va.h │ │ │ │ │ ├── hwcontext_drm.h │ │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ │ ├── hwcontext_mediacodec.h │ │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ │ ├── hwcontext_videotoolbox.h │ │ │ │ │ ├── imgutils.h │ │ │ │ │ ├── intfloat.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── lfg.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ │ ├── mathematics.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mem.h │ │ │ │ │ ├── motion_vector.h │ │ │ │ │ ├── murmur3.h │ │ │ │ │ ├── opt.h │ │ │ │ │ ├── parseutils.h │ │ │ │ │ ├── pixdesc.h │ │ │ │ │ ├── pixelutils.h │ │ │ │ │ ├── pixfmt.h │ │ │ │ │ ├── random_seed.h │ │ │ │ │ ├── rational.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── replaygain.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── samplefmt.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── sha512.h │ │ │ │ │ ├── spherical.h │ │ │ │ │ ├── stereo3d.h │ │ │ │ │ ├── tea.h │ │ │ │ │ ├── threadmessage.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timecode.h │ │ │ │ │ ├── timestamp.h │ │ │ │ │ ├── tree.h │ │ │ │ │ ├── twofish.h │ │ │ │ │ ├── tx.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── xtea.h │ │ │ │ ├── libswresample │ │ │ │ │ ├── swresample.h │ │ │ │ │ └── version.h │ │ │ │ └── libswscale │ │ │ │ │ ├── swscale.h │ │ │ │ │ └── version.h │ │ │ ├── libs │ │ │ │ └── armeabi-v7a │ │ │ │ │ ├── libavcodec.a │ │ │ │ │ ├── libavfilter.a │ │ │ │ │ ├── libavformat.a │ │ │ │ │ ├── libavutil.a │ │ │ │ │ ├── libswresample.a │ │ │ │ │ └── libswscale.a │ │ │ └── player_main.cpp │ │ ├── java │ │ │ └── com │ │ │ │ └── xhunmon │ │ │ │ └── ffmpegmediacodecdemo │ │ │ │ ├── MainActivity.java │ │ │ │ └── core │ │ │ │ └── Player.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── xhunmon │ │ └── ffmpegmediacodecdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── build_android.sh ├── doc │ ├── Kobe.flv │ └── 将Kobe.flv文件放到手机Download目录下.txt ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── LICENSE ├── OpenGLESDemo ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── xhunmon │ │ │ └── openglesdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── core │ │ │ │ ├── video_common.cpp │ │ │ │ ├── video_common.h │ │ │ │ ├── video_player.cpp │ │ │ │ └── video_player.h │ │ │ └── player_main.cpp │ │ ├── java │ │ │ └── com │ │ │ │ └── xhunmon │ │ │ │ └── openglesdemo │ │ │ │ ├── MainActivity.java │ │ │ │ └── core │ │ │ │ └── Player.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── xhunmon │ │ └── openglesdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── doc │ ├── a-frame-384x216.rgb24 │ └── 需要把该rgb24文件拷贝到手机Download目录下.txt ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── OpenGLMacTextureDemo ├── CMakeLists.txt ├── a-frame-384x216.rgb24 └── main.cpp ├── OpenSLESDemo ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── xhunmon │ │ │ └── openslesdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── core │ │ │ │ ├── audio_common.cpp │ │ │ │ ├── audio_common.h │ │ │ │ ├── audio_player.cpp │ │ │ │ └── audio_player.h │ │ │ └── player_main.cpp │ │ ├── java │ │ │ └── com │ │ │ │ └── xhunmon │ │ │ │ └── openslesdemo │ │ │ │ ├── MainActivity.java │ │ │ │ └── core │ │ │ │ └── Player.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── xhunmon │ │ └── openslesdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── doc │ ├── NocturneNo2inEflat_44.1k_s16le.pcm │ └── 需要把该pcm拷贝到手机Download目录下.txt ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /AFPlayer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/.gitignore -------------------------------------------------------------------------------- /AFPlayer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /AFPlayer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/build.gradle -------------------------------------------------------------------------------- /AFPlayer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/proguard-rules.pro -------------------------------------------------------------------------------- /AFPlayer/app/src/androidTest/java/com/xhunmon/afplayer/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/androidTest/java/com/xhunmon/afplayer/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /AFPlayer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/CMakeLists.txt -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/audio/CMakeLists.txt -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/audio/sl_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/audio/sl_helper.cpp -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/audio/sl_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/audio/sl_player.cpp -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/audio/sl_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/audio/sl_player.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/common/CMakeLists.txt -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/common/android_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/common/android_log.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/common/call_java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/common/call_java.cpp -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/common/call_java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/common/call_java.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/common/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/common/const.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/common/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/common/global.cpp -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/common/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/common/global.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/common/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/common/macro.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/common/safe_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/common/safe_queue.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/ffmpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/ffmpeg/CMakeLists.txt -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/ffmpeg/ff_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/ffmpeg/ff_decoder.cpp -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/ffmpeg/ff_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/ffmpeg/ff_decoder.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/ffmpeg/video_sws.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/ffmpeg/video_sws.cpp -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/ffmpeg/video_sws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/ffmpeg/video_sws.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/player_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/player_main.cpp -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/player_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/player_main.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/user_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/user_player.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/video/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/video/CMakeLists.txt -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/video/gl_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/video/gl_helper.cpp -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/video/gl_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/video/gl_player.cpp -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/core/video/gl_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/core/video/gl_player.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/ac3_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/ac3_parser.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/adts_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/adts_parser.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/jni.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/version.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavfilter/version.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavformat/avformat.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavformat/avio.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavformat/version.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/adler32.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/aes.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/attributes.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/avassert.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/avstring.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/avutil.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/base64.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/bprint.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/bswap.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/buffer.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/camellia.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/cast5.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/common.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/cpu.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/crc.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/des.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/dict.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/display.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/encryption_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/encryption_info.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/error.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/eval.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/fifo.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/file.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/frame.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hash.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hdr_dynamic_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hdr_dynamic_metadata.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hmac.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_d3d11va.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_drm.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_mediacodec.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/hwcontext_videotoolbox.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/lfg.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/log.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/macros.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/md5.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/mem.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/opt.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/rational.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/rc4.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/sha.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/sha512.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/spherical.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/tea.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/time.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/timecode.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/tree.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/twofish.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/tx.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/version.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libavutil/xtea.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libswresample/swresample.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libswresample/version.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libswscale/swscale.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/include/libswscale/version.h -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libavcodec.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libavcodec.so -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libavfilter.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libavfilter.so -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libavformat.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libavformat.so -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libavutil.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libavutil.so -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libcrypto.3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libcrypto.3.so -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libfdk-aac.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libfdk-aac.so -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libssl.3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libssl.3.so -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libswresample.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libswresample.so -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libswscale.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libswscale.so -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libx264.161.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/libs/armeabi-v7a/libx264.161.so -------------------------------------------------------------------------------- /AFPlayer/app/src/main/cpp/native_player_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/cpp/native_player_jni.cpp -------------------------------------------------------------------------------- /AFPlayer/app/src/main/java/cn/qincji/afplayer/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/java/cn/qincji/afplayer/MainActivity.java -------------------------------------------------------------------------------- /AFPlayer/app/src/main/java/cn/qincji/afplayer/core/AFPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/java/cn/qincji/afplayer/core/AFPlayer.java -------------------------------------------------------------------------------- /AFPlayer/app/src/main/java/cn/qincji/afplayer/core/DisplayUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/java/cn/qincji/afplayer/core/DisplayUtil.java -------------------------------------------------------------------------------- /AFPlayer/app/src/main/java/cn/qincji/afplayer/core/callback/OnAFCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/java/cn/qincji/afplayer/core/callback/OnAFCallback.java -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/drawable-xxhdpi/ic_disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/drawable-xxhdpi/ic_disc.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/drawable-xxhdpi/ic_disc_blackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/drawable-xxhdpi/ic_disc_blackground.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/drawable-xxhdpi/ic_seekbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/drawable-xxhdpi/ic_seekbar_thumb.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AFPlayer/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /AFPlayer/app/src/test/java/com/xhunmon/afplayer/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/app/src/test/java/com/xhunmon/afplayer/ExampleUnitTest.java -------------------------------------------------------------------------------- /AFPlayer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/build.gradle -------------------------------------------------------------------------------- /AFPlayer/build_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/build_android.sh -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/.gitignore -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/LICENSE -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/README.md -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/README_cn.md -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/build.gradle -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/gradle.properties -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/gradlew -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/gradlew.bat -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/CMakeLists.txt -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/build.gradle -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/cpp/AllocPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/cpp/AllocPool.hpp -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/cpp/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/cpp/Cache.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/cpp/HookProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/cpp/HookProxy.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/cpp/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/cpp/Logger.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/cpp/MapData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/cpp/MapData.cpp -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/cpp/MapData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/cpp/MapData.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/cpp/MemoryCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/cpp/MemoryCache.cpp -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/cpp/MemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/cpp/MemoryCache.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/cpp/PltGotHookProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/cpp/PltGotHookProxy.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/cpp/Raphael.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/cpp/Raphael.cpp -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/cpp/Raphael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/cpp/Raphael.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/cpp/xloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/cpp/xloader.cpp -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/inline32/inlineHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/inline32/inlineHook.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/inline32/inlineHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/inline32/inlineHook.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/inline32/relocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/inline32/relocate.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/inline32/relocate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/inline32/relocate.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/inline64/And64InlineHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/inline64/And64InlineHook.cpp -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/inline64/And64InlineHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/inline64/And64InlineHook.hpp -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/java/com/bytedance/raphael/Raphael.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/java/com/bytedance/raphael/Raphael.java -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/java/com/bytedance/raphael/RaphaelReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/java/com/bytedance/raphael/RaphaelReceiver.java -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/python/mmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/python/mmap.py -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/python/raphael.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/python/raphael.py -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind32/backtrace-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind32/backtrace-arch.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind32/backtrace-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind32/backtrace-arm.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind32/backtrace-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind32/backtrace-helper.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind32/backtrace-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind32/backtrace-helper.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind32/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind32/backtrace.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind32/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind32/backtrace.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind32/libudf_unwind_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind32/libudf_unwind_p.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind32/map_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind32/map_info.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind32/map_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind32/map_info.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind32/ptrace-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind32/ptrace-arch.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind32/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind32/ptrace.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind32/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind32/ptrace.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind64/backtrace_64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind64/backtrace_64.cpp -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/unwind64/backtrace_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/unwind64/backtrace_64.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xDL/xdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xDL/xdl.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xDL/xdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xDL/xdl.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_const.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_iterate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_iterate.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_iterate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_iterate.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_lzma.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_lzma.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_util.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xDL/xdl_util.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xHook/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xHook/queue.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xHook/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xHook/tree.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xHook/xh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xHook/xh_core.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xHook/xh_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xHook/xh_core.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xHook/xh_elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xHook/xh_elf.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xHook/xh_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xHook/xh_elf.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xHook/xh_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xHook/xh_errno.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xHook/xh_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xHook/xh_log.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xHook/xh_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xHook/xh_log.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xHook/xh_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xHook/xh_util.c -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/library/src/main/xHook/xh_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/doc/memory-leak/library/src/main/xHook/xh_util.h -------------------------------------------------------------------------------- /AFPlayer/doc/memory-leak/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':demo', ':library' -------------------------------------------------------------------------------- /AFPlayer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/gradle.properties -------------------------------------------------------------------------------- /AFPlayer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AFPlayer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AFPlayer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/gradlew -------------------------------------------------------------------------------- /AFPlayer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/AFPlayer/gradlew.bat -------------------------------------------------------------------------------- /AFPlayer/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "AFPlayer" -------------------------------------------------------------------------------- /FFmpegImportDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/.gitignore -------------------------------------------------------------------------------- /FFmpegImportDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FFmpegImportDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/build.gradle -------------------------------------------------------------------------------- /FFmpegImportDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/androidTest/java/com/xhunmon/ffmpegimportdemo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/androidTest/java/com/xhunmon/ffmpegimportdemo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/ac3_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/ac3_parser.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/adts_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/adts_parser.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/jni.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/version.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavfilter/version.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavformat/avformat.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavformat/avio.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavformat/version.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/adler32.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/aes.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/attributes.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/avassert.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/avstring.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/avutil.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/base64.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/bprint.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/bswap.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/buffer.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/camellia.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/cast5.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/common.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/cpu.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/crc.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/des.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/dict.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/display.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/encryption_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/encryption_info.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/error.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/eval.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/fifo.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/file.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/frame.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hash.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hdr_dynamic_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hdr_dynamic_metadata.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hmac.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_d3d11va.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_drm.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_mediacodec.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/hwcontext_videotoolbox.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/lfg.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/log.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/macros.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/md5.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/mem.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/opt.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/rational.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/rc4.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/sha.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/sha512.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/spherical.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/tea.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/time.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/timecode.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/tree.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/twofish.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/tx.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/version.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libavutil/xtea.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libswresample/swresample.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libswresample/version.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libswscale/swscale.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/include/libswscale/version.h -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libavcodec.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libavcodec.so -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libavfilter.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libavfilter.so -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libavformat.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libavformat.so -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libavutil.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libavutil.so -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libcrypto.3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libcrypto.3.so -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libfdk-aac.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libfdk-aac.so -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libssl.3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libssl.3.so -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libswresample.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libswresample.so -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libswscale.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libswscale.so -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libx264.161.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/libs/armeabi-v7a/libx264.161.so -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/cpp/player_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/cpp/player_main.cpp -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/java/com/xhunmon/ffmpegimportdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/java/com/xhunmon/ffmpegimportdemo/MainActivity.java -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/java/com/xhunmon/ffmpegimportdemo/core/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/java/com/xhunmon/ffmpegimportdemo/core/Player.java -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /FFmpegImportDemo/app/src/test/java/com/xhunmon/ffmpegimportdemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/app/src/test/java/com/xhunmon/ffmpegimportdemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /FFmpegImportDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/build.gradle -------------------------------------------------------------------------------- /FFmpegImportDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/gradle.properties -------------------------------------------------------------------------------- /FFmpegImportDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FFmpegImportDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /FFmpegImportDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/gradlew -------------------------------------------------------------------------------- /FFmpegImportDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegImportDemo/gradlew.bat -------------------------------------------------------------------------------- /FFmpegImportDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "FFmpegImportDemo" -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/.gitignore -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/build.gradle -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/androidTest/java/com/xhunmon/ffmpegmediacodecdemo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/androidTest/java/com/xhunmon/ffmpegmediacodecdemo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/core/hw_mediacodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/core/hw_mediacodec.cpp -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/core/hw_mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/core/hw_mediacodec.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/ac3_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/ac3_parser.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/adts_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/adts_parser.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/jni.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/version.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavfilter/version.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavformat/avformat.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavformat/avio.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavformat/version.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/adler32.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/aes.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/attributes.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/avassert.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/avstring.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/avutil.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/base64.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/bprint.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/bswap.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/buffer.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/camellia.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/cast5.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/common.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/cpu.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/crc.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/des.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/dict.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/display.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/encryption_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/encryption_info.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/error.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/eval.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/fifo.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/file.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/frame.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hash.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hdr_dynamic_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hdr_dynamic_metadata.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hmac.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_d3d11va.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_drm.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_mediacodec.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/hwcontext_videotoolbox.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/lfg.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/log.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/macros.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/md5.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/mem.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/opt.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/rational.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/rc4.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/sha.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/sha512.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/spherical.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/tea.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/time.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/timecode.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/tree.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/twofish.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/tx.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/version.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libavutil/xtea.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libswresample/swresample.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libswresample/version.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libswscale/swscale.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/include/libswscale/version.h -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/libs/armeabi-v7a/libavcodec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/libs/armeabi-v7a/libavcodec.a -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/libs/armeabi-v7a/libavfilter.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/libs/armeabi-v7a/libavfilter.a -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/libs/armeabi-v7a/libavformat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/libs/armeabi-v7a/libavformat.a -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/libs/armeabi-v7a/libavutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/libs/armeabi-v7a/libavutil.a -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/libs/armeabi-v7a/libswresample.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/libs/armeabi-v7a/libswresample.a -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/libs/armeabi-v7a/libswscale.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/libs/armeabi-v7a/libswscale.a -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/cpp/player_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/cpp/player_main.cpp -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/java/com/xhunmon/ffmpegmediacodecdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/java/com/xhunmon/ffmpegmediacodecdemo/MainActivity.java -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/java/com/xhunmon/ffmpegmediacodecdemo/core/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/java/com/xhunmon/ffmpegmediacodecdemo/core/Player.java -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/app/src/test/java/com/xhunmon/ffmpegmediacodecdemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/app/src/test/java/com/xhunmon/ffmpegmediacodecdemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/build.gradle -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/build_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/build_android.sh -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/doc/Kobe.flv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/doc/Kobe.flv -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/doc/将Kobe.flv文件放到手机Download目录下.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/gradle.properties -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/gradlew -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/FFmpegMediaCodecDemo/gradlew.bat -------------------------------------------------------------------------------- /FFmpegMediaCodecDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "FFmpegMediaCodecDemo" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenGLESDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/.gitignore -------------------------------------------------------------------------------- /OpenGLESDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /OpenGLESDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/build.gradle -------------------------------------------------------------------------------- /OpenGLESDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/androidTest/java/com/xhunmon/openglesdemo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/androidTest/java/com/xhunmon/openglesdemo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/cpp/core/video_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/cpp/core/video_common.cpp -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/cpp/core/video_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/cpp/core/video_common.h -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/cpp/core/video_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/cpp/core/video_player.cpp -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/cpp/core/video_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/cpp/core/video_player.h -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/cpp/player_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/cpp/player_main.cpp -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/java/com/xhunmon/openglesdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/java/com/xhunmon/openglesdemo/MainActivity.java -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/java/com/xhunmon/openglesdemo/core/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/java/com/xhunmon/openglesdemo/core/Player.java -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /OpenGLESDemo/app/src/test/java/com/xhunmon/openglesdemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/app/src/test/java/com/xhunmon/openglesdemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /OpenGLESDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/build.gradle -------------------------------------------------------------------------------- /OpenGLESDemo/doc/a-frame-384x216.rgb24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/doc/a-frame-384x216.rgb24 -------------------------------------------------------------------------------- /OpenGLESDemo/doc/需要把该rgb24文件拷贝到手机Download目录下.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenGLESDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/gradle.properties -------------------------------------------------------------------------------- /OpenGLESDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /OpenGLESDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /OpenGLESDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/gradlew -------------------------------------------------------------------------------- /OpenGLESDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLESDemo/gradlew.bat -------------------------------------------------------------------------------- /OpenGLESDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "OpenGLESDemo" -------------------------------------------------------------------------------- /OpenGLMacTextureDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLMacTextureDemo/CMakeLists.txt -------------------------------------------------------------------------------- /OpenGLMacTextureDemo/a-frame-384x216.rgb24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLMacTextureDemo/a-frame-384x216.rgb24 -------------------------------------------------------------------------------- /OpenGLMacTextureDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenGLMacTextureDemo/main.cpp -------------------------------------------------------------------------------- /OpenSLESDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/.gitignore -------------------------------------------------------------------------------- /OpenSLESDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /OpenSLESDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/build.gradle -------------------------------------------------------------------------------- /OpenSLESDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/androidTest/java/com/xhunmon/openslesdemo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/androidTest/java/com/xhunmon/openslesdemo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/cpp/core/audio_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/cpp/core/audio_common.cpp -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/cpp/core/audio_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/cpp/core/audio_common.h -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/cpp/core/audio_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/cpp/core/audio_player.cpp -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/cpp/core/audio_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/cpp/core/audio_player.h -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/cpp/player_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/cpp/player_main.cpp -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/java/com/xhunmon/openslesdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/java/com/xhunmon/openslesdemo/MainActivity.java -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/java/com/xhunmon/openslesdemo/core/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/java/com/xhunmon/openslesdemo/core/Player.java -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /OpenSLESDemo/app/src/test/java/com/xhunmon/openslesdemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/app/src/test/java/com/xhunmon/openslesdemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /OpenSLESDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/build.gradle -------------------------------------------------------------------------------- /OpenSLESDemo/doc/NocturneNo2inEflat_44.1k_s16le.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/doc/NocturneNo2inEflat_44.1k_s16le.pcm -------------------------------------------------------------------------------- /OpenSLESDemo/doc/需要把该pcm拷贝到手机Download目录下.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenSLESDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/gradle.properties -------------------------------------------------------------------------------- /OpenSLESDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /OpenSLESDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /OpenSLESDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/gradlew -------------------------------------------------------------------------------- /OpenSLESDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/OpenSLESDemo/gradlew.bat -------------------------------------------------------------------------------- /OpenSLESDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "OpenSLESDemo" -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhunmon/AFPlayer/HEAD/README.md --------------------------------------------------------------------------------