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