├── .gitignore ├── README.md ├── app ├── .gitignore ├── CMakeLists.txt ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── wangheart │ │ └── ffmpegdemo │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── include │ │ │ ├── libavcodec │ │ │ │ ├── avcodec.h │ │ │ │ ├── avdct.h │ │ │ │ ├── avfft.h │ │ │ │ ├── d3d11va.h │ │ │ │ ├── dirac.h │ │ │ │ ├── dv_profile.h │ │ │ │ ├── dxva2.h │ │ │ │ ├── jni.h │ │ │ │ ├── mediacodec.h │ │ │ │ ├── qsv.h │ │ │ │ ├── vaapi.h │ │ │ │ ├── vda.h │ │ │ │ ├── vdpau.h │ │ │ │ ├── version.h │ │ │ │ ├── videotoolbox.h │ │ │ │ ├── vorbis_parser.h │ │ │ │ └── xvmc.h │ │ │ ├── libavdevice │ │ │ │ ├── avdevice.h │ │ │ │ └── version.h │ │ │ ├── libavfilter │ │ │ │ ├── avfilter.h │ │ │ │ ├── avfiltergraph.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 │ │ │ │ ├── error.h │ │ │ │ ├── eval.h │ │ │ │ ├── ffversion.h │ │ │ │ ├── fifo.h │ │ │ │ ├── file.h │ │ │ │ ├── frame.h │ │ │ │ ├── hash.h │ │ │ │ ├── hmac.h │ │ │ │ ├── hwcontext.h │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ ├── hwcontext_vdpau.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 │ │ │ │ ├── stereo3d.h │ │ │ │ ├── tea.h │ │ │ │ ├── threadmessage.h │ │ │ │ ├── time.h │ │ │ │ ├── timecode.h │ │ │ │ ├── timestamp.h │ │ │ │ ├── tree.h │ │ │ │ ├── twofish.h │ │ │ │ ├── version.h │ │ │ │ └── xtea.h │ │ │ ├── libswresample │ │ │ │ ├── swresample.h │ │ │ │ └── version.h │ │ │ └── libswscale │ │ │ │ ├── swscale.h │ │ │ │ └── version.h │ │ └── native-lib.cpp │ ├── java │ │ └── com │ │ │ └── wangheart │ │ │ └── ffmpegdemo │ │ │ └── MainActivity.java │ ├── jniLibs │ │ └── armeabi │ │ │ ├── libavcodec-57.so │ │ │ ├── libavdevice-57.so │ │ │ ├── libavfilter-6.so │ │ │ ├── libavformat-57.so │ │ │ ├── libavutil-55.so │ │ │ ├── libswresample-2.so │ │ │ └── libswscale-4.so │ └── 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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── wangheart │ └── ffmpegdemo │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── rtmpfile ├── .gitignore ├── CMakeLists.txt ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── wangheart │ │ └── rtmpfile │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── common.cpp │ │ ├── common.h │ │ ├── ffmpeg_audio_handle.cpp │ │ ├── ffmpeg_handle.cpp │ │ ├── include │ │ │ ├── libavcodec │ │ │ │ ├── avcodec.h │ │ │ │ ├── avdct.h │ │ │ │ ├── avfft.h │ │ │ │ ├── d3d11va.h │ │ │ │ ├── dirac.h │ │ │ │ ├── dv_profile.h │ │ │ │ ├── dxva2.h │ │ │ │ ├── jni.h │ │ │ │ ├── mediacodec.h │ │ │ │ ├── qsv.h │ │ │ │ ├── vaapi.h │ │ │ │ ├── vda.h │ │ │ │ ├── vdpau.h │ │ │ │ ├── version.h │ │ │ │ ├── videotoolbox.h │ │ │ │ ├── vorbis_parser.h │ │ │ │ └── xvmc.h │ │ │ ├── libavdevice │ │ │ │ ├── avdevice.h │ │ │ │ └── version.h │ │ │ ├── libavfilter │ │ │ │ ├── avfilter.h │ │ │ │ ├── avfiltergraph.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 │ │ │ │ ├── error.h │ │ │ │ ├── eval.h │ │ │ │ ├── ffversion.h │ │ │ │ ├── fifo.h │ │ │ │ ├── file.h │ │ │ │ ├── frame.h │ │ │ │ ├── hash.h │ │ │ │ ├── hmac.h │ │ │ │ ├── hwcontext.h │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ ├── hwcontext_vdpau.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 │ │ │ │ ├── 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 │ │ │ ├── librtmp │ │ │ │ ├── amf.h │ │ │ │ ├── bytes.h │ │ │ │ ├── dh.h │ │ │ │ ├── dhgroups.h │ │ │ │ ├── handshake.h │ │ │ │ ├── http.h │ │ │ │ ├── log.h │ │ │ │ ├── rtmp.h │ │ │ │ └── rtmp_sys.h │ │ │ ├── libswresample │ │ │ │ ├── swresample.h │ │ │ │ └── version.h │ │ │ └── libswscale │ │ │ │ ├── swscale.h │ │ │ │ └── version.h │ │ └── rtmp_handle.cpp │ ├── java │ │ └── com │ │ │ └── wangheart │ │ │ └── rtmpfile │ │ │ ├── AudioFormatChangeFFmpegActivity.java │ │ │ ├── AudioRecordFFmpegActivity.java │ │ │ ├── AudioRecordMediaCodecActivity.java │ │ │ ├── CameraFFmpegPushRtmpActivity.java │ │ │ ├── CameraMediaCodecFileActivity.java │ │ │ ├── CameraMediaCodecRtmpActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── MyApplication.java │ │ │ ├── PermissionsActivity.java │ │ │ ├── VideoCompoundFileActivity.java │ │ │ ├── VideoFileRtmpFFmpegActivity.java │ │ │ ├── VideoFileRtmpRtmpDumpActivity.java │ │ │ ├── audio │ │ │ ├── AudioBuffer.java │ │ │ ├── AudioCodec.java │ │ │ └── FFmpegAudioHandle.java │ │ │ ├── device │ │ │ ├── AudioRecordController.java │ │ │ └── CameraController.java │ │ │ ├── ffmpeg │ │ │ ├── FFmpegHandle.java │ │ │ └── PushCallback.java │ │ │ ├── flv │ │ │ ├── AnnexbHelper.java │ │ │ ├── FlvPacker.java │ │ │ ├── FlvPackerHelper.java │ │ │ ├── Packer.java │ │ │ └── amf │ │ │ │ ├── AmfArray.java │ │ │ │ ├── AmfBoolean.java │ │ │ │ ├── AmfData.java │ │ │ │ ├── AmfDecoder.java │ │ │ │ ├── AmfMap.java │ │ │ │ ├── AmfNull.java │ │ │ │ ├── AmfNumber.java │ │ │ │ ├── AmfObject.java │ │ │ │ ├── AmfString.java │ │ │ │ ├── AmfType.java │ │ │ │ ├── AmfUndefined.java │ │ │ │ └── Util.java │ │ │ ├── listener │ │ │ └── OnCompleteListener.java │ │ │ ├── rtmp │ │ │ └── RtmpHandle.java │ │ │ ├── utils │ │ │ ├── ADTSUtils.java │ │ │ ├── BytesHexStrTranslate.java │ │ │ ├── FileUtil.java │ │ │ ├── IOUtils.java │ │ │ ├── ImageUtil.java │ │ │ ├── LogUtils.java │ │ │ ├── PermissionsChecker.java │ │ │ └── PhoneUtils.java │ │ │ ├── video │ │ │ ├── AudioComponent.java │ │ │ ├── AudioConfig.java │ │ │ ├── EncodedDataCallback.java │ │ │ ├── SourceDataCallback.java │ │ │ ├── VideoComponent.java │ │ │ └── VideoConfig.java │ │ │ └── view │ │ │ └── MySurfaceView.java │ ├── jniLibs │ │ └── armeabi │ │ │ ├── libavcodec-57.so │ │ │ ├── libavdevice-57.so │ │ │ ├── libavfilter-6.so │ │ │ ├── libavformat-57.so │ │ │ ├── libavutil-55.so │ │ │ ├── libpostproc-54.so │ │ │ ├── librtmp.so │ │ │ ├── libswresample-2.so │ │ │ └── libswscale-4.so │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_audio_codec.xml │ │ ├── activity_audio_record.xml │ │ ├── activity_audio_record_ffmpeg.xml │ │ ├── activity_camera.xml │ │ ├── activity_main.xml │ │ ├── activity_permissions.xml │ │ ├── activity_push_file_rtmp.xml │ │ ├── activity_rtmpdump_file.xml │ │ └── activity_video_compound_file.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── wangheart │ └── rtmpfile │ └── ExampleUnitTest.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/wangheart/ffmpegdemo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/androidTest/java/com/wangheart/ffmpegdemo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/jni.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/vda.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/version.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavdevice/version.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavfilter/version.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavformat/avformat.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavformat/avio.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavformat/version.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/adler32.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/aes.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/attributes.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/avassert.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/avstring.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/avutil.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/base64.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/bprint.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/bswap.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/buffer.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/camellia.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/cast5.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/common.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/cpu.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/crc.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/des.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/dict.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/display.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/error.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/eval.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/fifo.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/file.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/frame.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/hash.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/hmac.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/lfg.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/log.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/lzo.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/macros.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/md5.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/mem.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/opt.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/rational.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/rc4.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/sha.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/sha512.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/tea.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/time.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/timecode.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/tree.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/twofish.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/version.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libavutil/xtea.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libswresample/swresample.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libswresample/version.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libswscale/swscale.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/include/libswscale/version.h -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /app/src/main/java/com/wangheart/ffmpegdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/java/com/wangheart/ffmpegdemo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi/libavcodec-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/jniLibs/armeabi/libavcodec-57.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi/libavdevice-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/jniLibs/armeabi/libavdevice-57.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi/libavfilter-6.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/jniLibs/armeabi/libavfilter-6.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi/libavformat-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/jniLibs/armeabi/libavformat-57.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi/libavutil-55.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/jniLibs/armeabi/libavutil-55.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi/libswresample-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/jniLibs/armeabi/libswresample-2.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi/libswscale-4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/jniLibs/armeabi/libswscale-4.so -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/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/arvinwli/AndroidMultiMedia/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/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/wangheart/ffmpegdemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/app/src/test/java/com/wangheart/ffmpegdemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/gradlew.bat -------------------------------------------------------------------------------- /rtmpfile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/.gitignore -------------------------------------------------------------------------------- /rtmpfile/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/CMakeLists.txt -------------------------------------------------------------------------------- /rtmpfile/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/build.gradle -------------------------------------------------------------------------------- /rtmpfile/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/proguard-rules.pro -------------------------------------------------------------------------------- /rtmpfile/src/androidTest/java/com/wangheart/rtmpfile/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/androidTest/java/com/wangheart/rtmpfile/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /rtmpfile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/common.cpp -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/common.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/ffmpeg_audio_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/ffmpeg_audio_handle.cpp -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/ffmpeg_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/ffmpeg_handle.cpp -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/jni.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/vda.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/version.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavdevice/version.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavfilter/version.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavformat/avformat.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavformat/avio.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavformat/version.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/adler32.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/aes.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/attributes.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/avassert.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/avstring.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/avutil.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/base64.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/bprint.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/bswap.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/buffer.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/camellia.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/cast5.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/common.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/cpu.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/crc.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/des.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/dict.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/display.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/error.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/eval.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/fifo.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/file.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/frame.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/hash.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/hmac.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/lfg.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/log.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/lzo.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/macros.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/md5.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/mem.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/opt.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/rational.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/rc4.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/sha.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/sha512.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/tea.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/time.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/timecode.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/tree.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/twofish.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/version.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libavutil/xtea.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libpostproc/version.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/librtmp/amf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/librtmp/amf.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/librtmp/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/librtmp/bytes.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/librtmp/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/librtmp/dh.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/librtmp/dhgroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/librtmp/dhgroups.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/librtmp/handshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/librtmp/handshake.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/librtmp/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/librtmp/http.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/librtmp/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/librtmp/log.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/librtmp/rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/librtmp/rtmp.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/librtmp/rtmp_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/librtmp/rtmp_sys.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libswresample/swresample.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libswresample/version.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libswscale/swscale.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/include/libswscale/version.h -------------------------------------------------------------------------------- /rtmpfile/src/main/cpp/rtmp_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/cpp/rtmp_handle.cpp -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/AudioFormatChangeFFmpegActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/AudioFormatChangeFFmpegActivity.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/AudioRecordFFmpegActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/AudioRecordFFmpegActivity.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/AudioRecordMediaCodecActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/AudioRecordMediaCodecActivity.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/CameraFFmpegPushRtmpActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/CameraFFmpegPushRtmpActivity.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/CameraMediaCodecFileActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/CameraMediaCodecFileActivity.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/CameraMediaCodecRtmpActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/CameraMediaCodecRtmpActivity.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/MainActivity.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/MyApplication.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/PermissionsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/PermissionsActivity.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/VideoCompoundFileActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/VideoCompoundFileActivity.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/VideoFileRtmpFFmpegActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/VideoFileRtmpFFmpegActivity.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/VideoFileRtmpRtmpDumpActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/VideoFileRtmpRtmpDumpActivity.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/audio/AudioBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/audio/AudioBuffer.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/audio/AudioCodec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/audio/AudioCodec.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/audio/FFmpegAudioHandle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/audio/FFmpegAudioHandle.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/device/AudioRecordController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/device/AudioRecordController.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/device/CameraController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/device/CameraController.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/ffmpeg/FFmpegHandle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/ffmpeg/FFmpegHandle.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/ffmpeg/PushCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/ffmpeg/PushCallback.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/AnnexbHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/AnnexbHelper.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/FlvPacker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/FlvPacker.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/FlvPackerHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/FlvPackerHelper.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/Packer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/Packer.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfArray.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfBoolean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfBoolean.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfData.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfDecoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfDecoder.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfMap.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfNull.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfNull.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfNumber.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfObject.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfString.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfType.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfUndefined.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/AmfUndefined.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/flv/amf/Util.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/listener/OnCompleteListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/listener/OnCompleteListener.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/rtmp/RtmpHandle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/rtmp/RtmpHandle.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/ADTSUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/ADTSUtils.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/BytesHexStrTranslate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/BytesHexStrTranslate.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/FileUtil.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/IOUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/IOUtils.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/ImageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/ImageUtil.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/LogUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/LogUtils.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/PermissionsChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/PermissionsChecker.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/PhoneUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/utils/PhoneUtils.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/video/AudioComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/video/AudioComponent.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/video/AudioConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/video/AudioConfig.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/video/EncodedDataCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/video/EncodedDataCallback.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/video/SourceDataCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/video/SourceDataCallback.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/video/VideoComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/video/VideoComponent.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/video/VideoConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/video/VideoConfig.java -------------------------------------------------------------------------------- /rtmpfile/src/main/java/com/wangheart/rtmpfile/view/MySurfaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/java/com/wangheart/rtmpfile/view/MySurfaceView.java -------------------------------------------------------------------------------- /rtmpfile/src/main/jniLibs/armeabi/libavcodec-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/jniLibs/armeabi/libavcodec-57.so -------------------------------------------------------------------------------- /rtmpfile/src/main/jniLibs/armeabi/libavdevice-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/jniLibs/armeabi/libavdevice-57.so -------------------------------------------------------------------------------- /rtmpfile/src/main/jniLibs/armeabi/libavfilter-6.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/jniLibs/armeabi/libavfilter-6.so -------------------------------------------------------------------------------- /rtmpfile/src/main/jniLibs/armeabi/libavformat-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/jniLibs/armeabi/libavformat-57.so -------------------------------------------------------------------------------- /rtmpfile/src/main/jniLibs/armeabi/libavutil-55.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/jniLibs/armeabi/libavutil-55.so -------------------------------------------------------------------------------- /rtmpfile/src/main/jniLibs/armeabi/libpostproc-54.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/jniLibs/armeabi/libpostproc-54.so -------------------------------------------------------------------------------- /rtmpfile/src/main/jniLibs/armeabi/librtmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/jniLibs/armeabi/librtmp.so -------------------------------------------------------------------------------- /rtmpfile/src/main/jniLibs/armeabi/libswresample-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/jniLibs/armeabi/libswresample-2.so -------------------------------------------------------------------------------- /rtmpfile/src/main/jniLibs/armeabi/libswscale-4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/jniLibs/armeabi/libswscale-4.so -------------------------------------------------------------------------------- /rtmpfile/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/layout/activity_audio_codec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/layout/activity_audio_codec.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/layout/activity_audio_record.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/layout/activity_audio_record.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/layout/activity_audio_record_ffmpeg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/layout/activity_audio_record_ffmpeg.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/layout/activity_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/layout/activity_camera.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/layout/activity_permissions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/layout/activity_permissions.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/layout/activity_push_file_rtmp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/layout/activity_push_file_rtmp.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/layout/activity_rtmpdump_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/layout/activity_rtmpdump_file.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/layout/activity_video_compound_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/layout/activity_video_compound_file.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /rtmpfile/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /rtmpfile/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /rtmpfile/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /rtmpfile/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /rtmpfile/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /rtmpfile/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /rtmpfile/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /rtmpfile/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /rtmpfile/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /rtmpfile/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /rtmpfile/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /rtmpfile/src/test/java/com/wangheart/rtmpfile/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/rtmpfile/src/test/java/com/wangheart/rtmpfile/ExampleUnitTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvinwli/AndroidMultiMedia/HEAD/settings.gradle --------------------------------------------------------------------------------