├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── potterhsu │ │ └── rtsplibrary │ │ └── demo │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── potterhsu │ │ │ └── rtsplibrary │ │ │ └── demo │ │ │ └── MainActivity.java │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── potterhsu │ └── rtsplibrary │ └── demo │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── CMakeLists.txt ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── potterhsu │ │ └── rtsplibrary │ │ └── 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 │ │ │ ├── libpostproc │ │ │ │ ├── postprocess.h │ │ │ │ └── version.h │ │ │ ├── libswresample │ │ │ │ ├── swresample.h │ │ │ │ └── version.h │ │ │ └── libswscale │ │ │ │ ├── swscale.h │ │ │ │ └── version.h │ │ └── native-lib.cpp │ ├── java │ │ └── com │ │ │ └── potterhsu │ │ │ └── rtsplibrary │ │ │ ├── NativeCallback.java │ │ │ └── RtspClient.java │ ├── jniLibs │ │ └── armeabi-v7a │ │ │ ├── libavcodec-57.so │ │ │ ├── libavdevice-57.so │ │ │ ├── libavfilter-6.so │ │ │ ├── libavformat-57.so │ │ │ ├── libavutil-55.so │ │ │ ├── libpostproc-54.so │ │ │ ├── libswresample-2.so │ │ │ └── libswscale-4.so │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── potterhsu │ └── rtsplibrary │ └── ExampleUnitTest.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/potterhsu/rtsplibrary/demo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/androidTest/java/com/potterhsu/rtsplibrary/demo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/potterhsu/rtsplibrary/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/java/com/potterhsu/rtsplibrary/demo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/potterhsu/rtsplibrary/demo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/app/src/test/java/com/potterhsu/rtsplibrary/demo/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/CMakeLists.txt -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/com/potterhsu/rtsplibrary/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/androidTest/java/com/potterhsu/rtsplibrary/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/jni.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/vda.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/version.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavdevice/version.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavfilter/version.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavformat/avformat.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavformat/avio.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavformat/version.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/adler32.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/aes.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/attributes.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/avassert.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/avstring.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/avutil.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/base64.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/bprint.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/bswap.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/buffer.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/camellia.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/cast5.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/common.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/cpu.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/crc.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/des.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/dict.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/display.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/error.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/eval.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/fifo.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/file.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/frame.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/hash.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/hmac.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/lfg.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/log.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/lzo.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/macros.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/md5.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/mem.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/opt.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/rational.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/rc4.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/sha.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/sha512.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/tea.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/time.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/timecode.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/tree.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/twofish.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/version.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libavutil/xtea.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libpostproc/version.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libswresample/swresample.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libswresample/version.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libswscale/swscale.h -------------------------------------------------------------------------------- /library/src/main/cpp/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/include/libswscale/version.h -------------------------------------------------------------------------------- /library/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /library/src/main/java/com/potterhsu/rtsplibrary/NativeCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/java/com/potterhsu/rtsplibrary/NativeCallback.java -------------------------------------------------------------------------------- /library/src/main/java/com/potterhsu/rtsplibrary/RtspClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/java/com/potterhsu/rtsplibrary/RtspClient.java -------------------------------------------------------------------------------- /library/src/main/jniLibs/armeabi-v7a/libavcodec-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/jniLibs/armeabi-v7a/libavcodec-57.so -------------------------------------------------------------------------------- /library/src/main/jniLibs/armeabi-v7a/libavdevice-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/jniLibs/armeabi-v7a/libavdevice-57.so -------------------------------------------------------------------------------- /library/src/main/jniLibs/armeabi-v7a/libavfilter-6.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/jniLibs/armeabi-v7a/libavfilter-6.so -------------------------------------------------------------------------------- /library/src/main/jniLibs/armeabi-v7a/libavformat-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/jniLibs/armeabi-v7a/libavformat-57.so -------------------------------------------------------------------------------- /library/src/main/jniLibs/armeabi-v7a/libavutil-55.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/jniLibs/armeabi-v7a/libavutil-55.so -------------------------------------------------------------------------------- /library/src/main/jniLibs/armeabi-v7a/libpostproc-54.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/jniLibs/armeabi-v7a/libpostproc-54.so -------------------------------------------------------------------------------- /library/src/main/jniLibs/armeabi-v7a/libswresample-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/jniLibs/armeabi-v7a/libswresample-2.so -------------------------------------------------------------------------------- /library/src/main/jniLibs/armeabi-v7a/libswscale-4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/jniLibs/armeabi-v7a/libswscale-4.so -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /library/src/test/java/com/potterhsu/rtsplibrary/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potterhsu/RtspLibrary/HEAD/library/src/test/java/com/potterhsu/rtsplibrary/ExampleUnitTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | --------------------------------------------------------------------------------