├── .gitignore ├── README.md ├── README_EN.md ├── app ├── .gitignore ├── build.gradle ├── keystore │ └── rxffmpeg.jks ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── colorline.json │ ├── java │ └── io │ │ └── microshow │ │ └── rxffmpeg │ │ └── app │ │ ├── App.java │ │ ├── activity │ │ ├── BaseActivity.java │ │ ├── LaunchActivity.java │ │ └── MainActivity.java │ │ ├── fragment │ │ ├── BaseFragment.java │ │ ├── FindFragment.java │ │ ├── HomeFragment.java │ │ └── MeFragment.java │ │ └── utils │ │ ├── CPUUtils.java │ │ ├── UmengHelper.java │ │ └── Utils.java │ └── res │ ├── color │ └── home_tab_text_selector.xml │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── common_default_ripple_drawable.xml │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_launch.xml │ ├── activity_main.xml │ ├── fragment_find.xml │ ├── fragment_home.xml │ ├── fragment_me.xml │ └── home_tab_item.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 │ └── logo.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── configs.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── preview ├── app-release.apk ├── docs │ ├── build.md │ ├── cmd.md │ └── player.md └── icon │ ├── apk_qr.png │ ├── logo-v1.gif │ ├── logo.jpg │ ├── qqGroup.jpg │ ├── run_time_arm64-v8a.jpg │ ├── run_time_armeabi-v7a.jpg │ ├── screen-shot.gif │ ├── screen_douyin_home.gif │ ├── screen_player.gif │ ├── screen_player_cpu.png │ └── weixinPay.png ├── rxffmpeg ├── .gitignore ├── CMakeLists.txt ├── build.gradle ├── libs │ ├── arm64-v8a │ │ ├── librxffmpeg-core.so │ │ ├── librxffmpeg-invoke.so │ │ └── librxffmpeg-player.so │ ├── armeabi-v7a │ │ ├── librxffmpeg-core.so │ │ ├── librxffmpeg-invoke.so │ │ └── librxffmpeg-player.so │ ├── x86 │ │ ├── librxffmpeg-core.so │ │ ├── librxffmpeg-invoke.so │ │ └── librxffmpeg-player.so │ └── x86_64 │ │ ├── librxffmpeg-core.so │ │ ├── librxffmpeg-invoke.so │ │ └── librxffmpeg-player.so ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ └── 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 │ │ ├── libavdevice │ │ ├── avdevice.h │ │ └── version.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 │ │ ├── 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 │ │ ├── lzo.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 │ │ ├── version.h │ │ └── xtea.h │ │ ├── libpostproc │ │ ├── postprocess.h │ │ └── version.h │ │ ├── libswresample │ │ ├── swresample.h │ │ └── version.h │ │ └── libswscale │ │ ├── swscale.h │ │ └── version.h │ ├── java │ └── io │ │ └── microshow │ │ └── rxffmpeg │ │ ├── AudioVideoUtils.java │ │ ├── RxFFmpegCommandList.java │ │ ├── RxFFmpegCommandSupport.java │ │ ├── RxFFmpegInvoke.java │ │ ├── RxFFmpegProgress.java │ │ ├── RxFFmpegSubscriber.java │ │ └── player │ │ ├── BaseMediaPlayer.java │ │ ├── Helper.java │ │ ├── IMediaPlayer.java │ │ ├── MeasureHelper.java │ │ ├── RxFFmpegPlayer.java │ │ ├── RxFFmpegPlayerController.java │ │ ├── RxFFmpegPlayerControllerImpl.java │ │ ├── RxFFmpegPlayerImpl.java │ │ ├── RxFFmpegPlayerView.java │ │ ├── ScaleTextureView.java │ │ ├── SystemMediaPlayer.java │ │ └── SystemMediaPlayerImpl.java │ └── res │ ├── layout │ └── rxffmpeg_player_controller.xml │ ├── mipmap-xxhdpi │ ├── rxffmpeg_player_gotofull.png │ ├── rxffmpeg_player_gotonormal.png │ ├── rxffmpeg_player_mute.png │ ├── rxffmpeg_player_pause.png │ ├── rxffmpeg_player_play.png │ ├── rxffmpeg_player_start.png │ └── rxffmpeg_player_unmute.png │ └── values │ └── strings.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/README_EN.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/keystore/rxffmpeg.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/keystore/rxffmpeg.jks -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/colorline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/assets/colorline.json -------------------------------------------------------------------------------- /app/src/main/java/io/microshow/rxffmpeg/app/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/java/io/microshow/rxffmpeg/app/App.java -------------------------------------------------------------------------------- /app/src/main/java/io/microshow/rxffmpeg/app/activity/BaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/java/io/microshow/rxffmpeg/app/activity/BaseActivity.java -------------------------------------------------------------------------------- /app/src/main/java/io/microshow/rxffmpeg/app/activity/LaunchActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/java/io/microshow/rxffmpeg/app/activity/LaunchActivity.java -------------------------------------------------------------------------------- /app/src/main/java/io/microshow/rxffmpeg/app/activity/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/java/io/microshow/rxffmpeg/app/activity/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/io/microshow/rxffmpeg/app/fragment/BaseFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/java/io/microshow/rxffmpeg/app/fragment/BaseFragment.java -------------------------------------------------------------------------------- /app/src/main/java/io/microshow/rxffmpeg/app/fragment/FindFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/java/io/microshow/rxffmpeg/app/fragment/FindFragment.java -------------------------------------------------------------------------------- /app/src/main/java/io/microshow/rxffmpeg/app/fragment/HomeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/java/io/microshow/rxffmpeg/app/fragment/HomeFragment.java -------------------------------------------------------------------------------- /app/src/main/java/io/microshow/rxffmpeg/app/fragment/MeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/java/io/microshow/rxffmpeg/app/fragment/MeFragment.java -------------------------------------------------------------------------------- /app/src/main/java/io/microshow/rxffmpeg/app/utils/CPUUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/java/io/microshow/rxffmpeg/app/utils/CPUUtils.java -------------------------------------------------------------------------------- /app/src/main/java/io/microshow/rxffmpeg/app/utils/UmengHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/java/io/microshow/rxffmpeg/app/utils/UmengHelper.java -------------------------------------------------------------------------------- /app/src/main/java/io/microshow/rxffmpeg/app/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/java/io/microshow/rxffmpeg/app/utils/Utils.java -------------------------------------------------------------------------------- /app/src/main/res/color/home_tab_text_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/color/home_tab_text_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/common_default_ripple_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/drawable/common_default_ripple_drawable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/layout/activity_launch.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_find.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/layout/fragment_find.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/layout/fragment_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_me.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/layout/fragment_me.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/home_tab_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/layout/home_tab_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-xxhdpi/logo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /configs.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/configs.gradle -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/gradlew.bat -------------------------------------------------------------------------------- /preview/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/app-release.apk -------------------------------------------------------------------------------- /preview/docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/docs/build.md -------------------------------------------------------------------------------- /preview/docs/cmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/docs/cmd.md -------------------------------------------------------------------------------- /preview/docs/player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/docs/player.md -------------------------------------------------------------------------------- /preview/icon/apk_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/icon/apk_qr.png -------------------------------------------------------------------------------- /preview/icon/logo-v1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/icon/logo-v1.gif -------------------------------------------------------------------------------- /preview/icon/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/icon/logo.jpg -------------------------------------------------------------------------------- /preview/icon/qqGroup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/icon/qqGroup.jpg -------------------------------------------------------------------------------- /preview/icon/run_time_arm64-v8a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/icon/run_time_arm64-v8a.jpg -------------------------------------------------------------------------------- /preview/icon/run_time_armeabi-v7a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/icon/run_time_armeabi-v7a.jpg -------------------------------------------------------------------------------- /preview/icon/screen-shot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/icon/screen-shot.gif -------------------------------------------------------------------------------- /preview/icon/screen_douyin_home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/icon/screen_douyin_home.gif -------------------------------------------------------------------------------- /preview/icon/screen_player.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/icon/screen_player.gif -------------------------------------------------------------------------------- /preview/icon/screen_player_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/icon/screen_player_cpu.png -------------------------------------------------------------------------------- /preview/icon/weixinPay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/preview/icon/weixinPay.png -------------------------------------------------------------------------------- /rxffmpeg/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /rxffmpeg/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.4.1) 2 | -------------------------------------------------------------------------------- /rxffmpeg/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/build.gradle -------------------------------------------------------------------------------- /rxffmpeg/libs/arm64-v8a/librxffmpeg-core.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/libs/arm64-v8a/librxffmpeg-core.so -------------------------------------------------------------------------------- /rxffmpeg/libs/arm64-v8a/librxffmpeg-invoke.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/libs/arm64-v8a/librxffmpeg-invoke.so -------------------------------------------------------------------------------- /rxffmpeg/libs/arm64-v8a/librxffmpeg-player.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/libs/arm64-v8a/librxffmpeg-player.so -------------------------------------------------------------------------------- /rxffmpeg/libs/armeabi-v7a/librxffmpeg-core.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/libs/armeabi-v7a/librxffmpeg-core.so -------------------------------------------------------------------------------- /rxffmpeg/libs/armeabi-v7a/librxffmpeg-invoke.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/libs/armeabi-v7a/librxffmpeg-invoke.so -------------------------------------------------------------------------------- /rxffmpeg/libs/armeabi-v7a/librxffmpeg-player.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/libs/armeabi-v7a/librxffmpeg-player.so -------------------------------------------------------------------------------- /rxffmpeg/libs/x86/librxffmpeg-core.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/libs/x86/librxffmpeg-core.so -------------------------------------------------------------------------------- /rxffmpeg/libs/x86/librxffmpeg-invoke.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/libs/x86/librxffmpeg-invoke.so -------------------------------------------------------------------------------- /rxffmpeg/libs/x86/librxffmpeg-player.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/libs/x86/librxffmpeg-player.so -------------------------------------------------------------------------------- /rxffmpeg/libs/x86_64/librxffmpeg-core.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/libs/x86_64/librxffmpeg-core.so -------------------------------------------------------------------------------- /rxffmpeg/libs/x86_64/librxffmpeg-invoke.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/libs/x86_64/librxffmpeg-invoke.so -------------------------------------------------------------------------------- /rxffmpeg/libs/x86_64/librxffmpeg-player.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/libs/x86_64/librxffmpeg-player.so -------------------------------------------------------------------------------- /rxffmpeg/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/proguard-rules.pro -------------------------------------------------------------------------------- /rxffmpeg/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/ac3_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/ac3_parser.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/adts_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/adts_parser.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/jni.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/version.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavdevice/version.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavfilter/version.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavformat/avformat.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavformat/avio.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavformat/version.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/adler32.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/aes.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/attributes.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/avassert.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/avstring.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/avutil.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/base64.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/bprint.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/bswap.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/buffer.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/camellia.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/cast5.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/common.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/cpu.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/crc.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/des.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/dict.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/display.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/encryption_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/encryption_info.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/error.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/eval.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/fifo.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/file.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/frame.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/hash.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/hmac.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/hwcontext_d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/hwcontext_d3d11va.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/hwcontext_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/hwcontext_drm.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/hwcontext_mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/hwcontext_mediacodec.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/hwcontext_videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/hwcontext_videotoolbox.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/lfg.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/log.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/lzo.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/macros.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/md5.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/mem.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/opt.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/rational.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/rc4.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/sha.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/sha512.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/spherical.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/tea.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/time.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/timecode.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/tree.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/twofish.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/version.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libavutil/xtea.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libpostproc/version.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libswresample/swresample.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libswresample/version.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libswscale/swscale.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/cpp/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/cpp/include/libswscale/version.h -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/AudioVideoUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/AudioVideoUtils.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/RxFFmpegCommandList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/RxFFmpegCommandList.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/RxFFmpegCommandSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/RxFFmpegCommandSupport.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/RxFFmpegInvoke.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/RxFFmpegInvoke.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/RxFFmpegProgress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/RxFFmpegProgress.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/RxFFmpegSubscriber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/RxFFmpegSubscriber.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/BaseMediaPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/BaseMediaPlayer.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/Helper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/Helper.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/IMediaPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/IMediaPlayer.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/MeasureHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/MeasureHelper.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/RxFFmpegPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/RxFFmpegPlayer.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/RxFFmpegPlayerController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/RxFFmpegPlayerController.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/RxFFmpegPlayerControllerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/RxFFmpegPlayerControllerImpl.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/RxFFmpegPlayerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/RxFFmpegPlayerImpl.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/RxFFmpegPlayerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/RxFFmpegPlayerView.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/ScaleTextureView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/ScaleTextureView.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/SystemMediaPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/SystemMediaPlayer.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/SystemMediaPlayerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/java/io/microshow/rxffmpeg/player/SystemMediaPlayerImpl.java -------------------------------------------------------------------------------- /rxffmpeg/src/main/res/layout/rxffmpeg_player_controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/res/layout/rxffmpeg_player_controller.xml -------------------------------------------------------------------------------- /rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_gotofull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_gotofull.png -------------------------------------------------------------------------------- /rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_gotonormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_gotonormal.png -------------------------------------------------------------------------------- /rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_mute.png -------------------------------------------------------------------------------- /rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_pause.png -------------------------------------------------------------------------------- /rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_play.png -------------------------------------------------------------------------------- /rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_start.png -------------------------------------------------------------------------------- /rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_unmute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/res/mipmap-xxhdpi/rxffmpeg_player_unmute.png -------------------------------------------------------------------------------- /rxffmpeg/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshow/RxFFmpeg/HEAD/rxffmpeg/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':rxffmpeg' 2 | --------------------------------------------------------------------------------