├── .gitattributes ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── encodings.xml ├── gradle.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── jarRepositories.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── gavinandre │ │ └── jnidemo │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── cat.png │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── bean │ │ │ ├── complex_bean.hpp │ │ │ └── simple_bean.hpp │ │ ├── native_lib.cpp │ │ ├── native_lib.hpp │ │ └── utils │ │ │ ├── android_buf.hpp │ │ │ ├── android_log.h │ │ │ ├── base64.hpp │ │ │ ├── jni_lib.hpp │ │ │ ├── jni_list_lib.hpp │ │ │ └── uuid_lib.hpp │ ├── java │ │ └── com │ │ │ └── gavinandre │ │ │ └── androidjnidemo │ │ │ ├── NativeLib.java │ │ │ ├── activity │ │ │ ├── JLogActivity.kt │ │ │ ├── MainActivity.kt │ │ │ ├── MatBitmapConvertActivity.kt │ │ │ ├── NativeActivity.kt │ │ │ ├── RtspActivity.kt │ │ │ ├── SystemCameraActivity.kt │ │ │ ├── UsbCameraActivity.kt │ │ │ └── UvcCameraActivity.java │ │ │ ├── base │ │ │ └── MyApplication.kt │ │ │ ├── bean │ │ │ ├── ComplexBean.kt │ │ │ └── SimpleBean.kt │ │ │ └── utils │ │ │ └── FileUtil.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_jlog.xml │ │ ├── activity_main.xml │ │ ├── activity_mat_bitmap_convert.xml │ │ ├── activity_native.xml │ │ ├── activity_rtsp.xml │ │ ├── activity_system_camera.xml │ │ ├── activity_usb_camera.xml │ │ ├── activity_uvc_camera.xml │ │ └── activity_uvc_dual_camera.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── gavinandre │ └── jnidemo │ └── ExampleUnitTest.kt ├── cameraprocesslibrary ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ ├── camera_process_jni.cpp │ ├── camera_process_lib.hpp │ ├── include │ │ ├── opencv │ │ │ ├── cv.h │ │ │ ├── cv.hpp │ │ │ ├── cvaux.h │ │ │ ├── cvaux.hpp │ │ │ ├── cvwimage.h │ │ │ ├── cxcore.h │ │ │ ├── cxcore.hpp │ │ │ ├── cxeigen.hpp │ │ │ ├── cxmisc.h │ │ │ ├── highgui.h │ │ │ └── ml.h │ │ └── opencv2 │ │ │ ├── core.hpp │ │ │ ├── core │ │ │ ├── affine.hpp │ │ │ ├── base.hpp │ │ │ ├── bindings_utils.hpp │ │ │ ├── bufferpool.hpp │ │ │ ├── check.hpp │ │ │ ├── core.hpp │ │ │ ├── core_c.h │ │ │ ├── cuda.hpp │ │ │ ├── cuda.inl.hpp │ │ │ ├── cuda │ │ │ │ ├── block.hpp │ │ │ │ ├── border_interpolate.hpp │ │ │ │ ├── color.hpp │ │ │ │ ├── common.hpp │ │ │ │ ├── datamov_utils.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── color_detail.hpp │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ │ ├── transform_detail.hpp │ │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ │ └── vec_distance_detail.hpp │ │ │ │ ├── dynamic_smem.hpp │ │ │ │ ├── emulation.hpp │ │ │ │ ├── filters.hpp │ │ │ │ ├── funcattrib.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── saturate_cast.hpp │ │ │ │ ├── scan.hpp │ │ │ │ ├── simd_functions.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── utility.hpp │ │ │ │ ├── vec_distance.hpp │ │ │ │ ├── vec_math.hpp │ │ │ │ ├── vec_traits.hpp │ │ │ │ ├── warp.hpp │ │ │ │ ├── warp_reduce.hpp │ │ │ │ └── warp_shuffle.hpp │ │ │ ├── cuda_stream_accessor.hpp │ │ │ ├── cuda_types.hpp │ │ │ ├── cv_cpu_dispatch.h │ │ │ ├── cv_cpu_helper.h │ │ │ ├── cvdef.h │ │ │ ├── cvstd.hpp │ │ │ ├── cvstd.inl.hpp │ │ │ ├── directx.hpp │ │ │ ├── eigen.hpp │ │ │ ├── fast_math.hpp │ │ │ ├── hal │ │ │ │ ├── hal.hpp │ │ │ │ ├── interface.h │ │ │ │ ├── intrin.hpp │ │ │ │ ├── intrin_avx.hpp │ │ │ │ ├── intrin_cpp.hpp │ │ │ │ ├── intrin_forward.hpp │ │ │ │ ├── intrin_neon.hpp │ │ │ │ ├── intrin_sse.hpp │ │ │ │ ├── intrin_sse_em.hpp │ │ │ │ └── intrin_vsx.hpp │ │ │ ├── ippasync.hpp │ │ │ ├── mat.hpp │ │ │ ├── mat.inl.hpp │ │ │ ├── matx.hpp │ │ │ ├── neon_utils.hpp │ │ │ ├── ocl.hpp │ │ │ ├── ocl_genbase.hpp │ │ │ ├── opencl │ │ │ │ ├── ocl_defs.hpp │ │ │ │ ├── opencl_info.hpp │ │ │ │ ├── opencl_svm.hpp │ │ │ │ └── runtime │ │ │ │ │ ├── autogenerated │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ └── opencl_gl_wrappers.hpp │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ ├── opencl_gl_wrappers.hpp │ │ │ │ │ ├── opencl_svm_20.hpp │ │ │ │ │ ├── opencl_svm_definitions.hpp │ │ │ │ │ └── opencl_svm_hsa_extension.hpp │ │ │ ├── opengl.hpp │ │ │ ├── operations.hpp │ │ │ ├── optim.hpp │ │ │ ├── ovx.hpp │ │ │ ├── persistence.hpp │ │ │ ├── ptr.inl.hpp │ │ │ ├── saturate.hpp │ │ │ ├── softfloat.hpp │ │ │ ├── sse_utils.hpp │ │ │ ├── traits.hpp │ │ │ ├── types.hpp │ │ │ ├── types_c.h │ │ │ ├── utility.hpp │ │ │ ├── utils │ │ │ │ ├── filesystem.hpp │ │ │ │ ├── logger.defines.hpp │ │ │ │ ├── logger.hpp │ │ │ │ └── trace.hpp │ │ │ ├── va_intel.hpp │ │ │ ├── version.hpp │ │ │ ├── vsx_utils.hpp │ │ │ └── wimage.hpp │ │ │ ├── cvconfig.h │ │ │ ├── imgcodecs.hpp │ │ │ ├── imgcodecs │ │ │ ├── imgcodecs.hpp │ │ │ ├── imgcodecs_c.h │ │ │ └── ios.h │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc │ │ │ ├── detail │ │ │ │ └── distortion_model.hpp │ │ │ ├── hal │ │ │ │ ├── hal.hpp │ │ │ │ └── interface.h │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc_c.h │ │ │ └── types_c.h │ │ │ ├── opencv.hpp │ │ │ └── opencv_modules.hpp │ ├── jniLibs │ │ └── armeabi-v7a │ │ │ ├── libopencv_core.so │ │ │ ├── libopencv_imgcodecs.so │ │ │ └── libopencv_imgproc.so │ └── util │ │ ├── android_buf.hpp │ │ ├── android_log.h │ │ ├── jni_lib.hpp │ │ └── v4l2 │ │ ├── v4l_achieve.cpp │ │ ├── v4l_achieve.h │ │ └── v4l_lib.hpp │ ├── java │ └── com │ │ └── gavinandre │ │ └── cameraprocesslibrary │ │ ├── CameraProcessLib.java │ │ ├── systemcamera │ │ ├── SystemCameraFragment.kt │ │ └── SystemCameraTextureView.kt │ │ ├── usbcamera │ │ ├── UsbCameraFragment.kt │ │ └── UsbCameraTextureView.kt │ │ └── utils │ │ └── Camera1Manager.kt │ └── res │ ├── layout │ ├── fragment_system_camera.xml │ └── fragment_usb_camera.xml │ └── values │ └── strings.xml ├── config.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── imageprocesslibrary ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ ├── image_process_jni.cpp │ ├── image_process_lib.hpp │ ├── include │ │ ├── opencv │ │ │ ├── cv.h │ │ │ ├── cv.hpp │ │ │ ├── cvaux.h │ │ │ ├── cvaux.hpp │ │ │ ├── cvwimage.h │ │ │ ├── cxcore.h │ │ │ ├── cxcore.hpp │ │ │ ├── cxeigen.hpp │ │ │ ├── cxmisc.h │ │ │ ├── highgui.h │ │ │ └── ml.h │ │ └── opencv2 │ │ │ ├── core.hpp │ │ │ ├── core │ │ │ ├── affine.hpp │ │ │ ├── base.hpp │ │ │ ├── bindings_utils.hpp │ │ │ ├── bufferpool.hpp │ │ │ ├── check.hpp │ │ │ ├── core.hpp │ │ │ ├── core_c.h │ │ │ ├── cuda.hpp │ │ │ ├── cuda.inl.hpp │ │ │ ├── cuda │ │ │ │ ├── block.hpp │ │ │ │ ├── border_interpolate.hpp │ │ │ │ ├── color.hpp │ │ │ │ ├── common.hpp │ │ │ │ ├── datamov_utils.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── color_detail.hpp │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ │ ├── transform_detail.hpp │ │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ │ └── vec_distance_detail.hpp │ │ │ │ ├── dynamic_smem.hpp │ │ │ │ ├── emulation.hpp │ │ │ │ ├── filters.hpp │ │ │ │ ├── funcattrib.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── saturate_cast.hpp │ │ │ │ ├── scan.hpp │ │ │ │ ├── simd_functions.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── utility.hpp │ │ │ │ ├── vec_distance.hpp │ │ │ │ ├── vec_math.hpp │ │ │ │ ├── vec_traits.hpp │ │ │ │ ├── warp.hpp │ │ │ │ ├── warp_reduce.hpp │ │ │ │ └── warp_shuffle.hpp │ │ │ ├── cuda_stream_accessor.hpp │ │ │ ├── cuda_types.hpp │ │ │ ├── cv_cpu_dispatch.h │ │ │ ├── cv_cpu_helper.h │ │ │ ├── cvdef.h │ │ │ ├── cvstd.hpp │ │ │ ├── cvstd.inl.hpp │ │ │ ├── directx.hpp │ │ │ ├── eigen.hpp │ │ │ ├── fast_math.hpp │ │ │ ├── hal │ │ │ │ ├── hal.hpp │ │ │ │ ├── interface.h │ │ │ │ ├── intrin.hpp │ │ │ │ ├── intrin_avx.hpp │ │ │ │ ├── intrin_cpp.hpp │ │ │ │ ├── intrin_forward.hpp │ │ │ │ ├── intrin_neon.hpp │ │ │ │ ├── intrin_sse.hpp │ │ │ │ ├── intrin_sse_em.hpp │ │ │ │ └── intrin_vsx.hpp │ │ │ ├── ippasync.hpp │ │ │ ├── mat.hpp │ │ │ ├── mat.inl.hpp │ │ │ ├── matx.hpp │ │ │ ├── neon_utils.hpp │ │ │ ├── ocl.hpp │ │ │ ├── ocl_genbase.hpp │ │ │ ├── opencl │ │ │ │ ├── ocl_defs.hpp │ │ │ │ ├── opencl_info.hpp │ │ │ │ ├── opencl_svm.hpp │ │ │ │ └── runtime │ │ │ │ │ ├── autogenerated │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ └── opencl_gl_wrappers.hpp │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ ├── opencl_gl_wrappers.hpp │ │ │ │ │ ├── opencl_svm_20.hpp │ │ │ │ │ ├── opencl_svm_definitions.hpp │ │ │ │ │ └── opencl_svm_hsa_extension.hpp │ │ │ ├── opengl.hpp │ │ │ ├── operations.hpp │ │ │ ├── optim.hpp │ │ │ ├── ovx.hpp │ │ │ ├── persistence.hpp │ │ │ ├── ptr.inl.hpp │ │ │ ├── saturate.hpp │ │ │ ├── softfloat.hpp │ │ │ ├── sse_utils.hpp │ │ │ ├── traits.hpp │ │ │ ├── types.hpp │ │ │ ├── types_c.h │ │ │ ├── utility.hpp │ │ │ ├── utils │ │ │ │ ├── filesystem.hpp │ │ │ │ ├── logger.defines.hpp │ │ │ │ ├── logger.hpp │ │ │ │ └── trace.hpp │ │ │ ├── va_intel.hpp │ │ │ ├── version.hpp │ │ │ ├── vsx_utils.hpp │ │ │ └── wimage.hpp │ │ │ ├── cvconfig.h │ │ │ ├── imgcodecs.hpp │ │ │ ├── imgcodecs │ │ │ ├── imgcodecs.hpp │ │ │ ├── imgcodecs_c.h │ │ │ └── ios.h │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc │ │ │ ├── detail │ │ │ │ └── distortion_model.hpp │ │ │ ├── hal │ │ │ │ ├── hal.hpp │ │ │ │ └── interface.h │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc_c.h │ │ │ └── types_c.h │ │ │ ├── opencv.hpp │ │ │ └── opencv_modules.hpp │ ├── jniLibs │ │ └── armeabi-v7a │ │ │ ├── libopencv_core.so │ │ │ ├── libopencv_imgcodecs.so │ │ │ └── libopencv_imgproc.so │ └── utils │ │ ├── android_log.h │ │ └── jni_lib.hpp │ ├── java │ └── com │ │ └── gavinandre │ │ └── imageprocesslibrary │ │ └── ImageProcess.java │ └── res │ └── values │ └── strings.xml ├── nativeloglibrary ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ ├── jlog.hpp │ └── jlog_lib.cpp │ └── java │ └── com │ └── gavinandre │ └── nativeloglibrary │ └── JLogLib.java ├── rtsplibrary ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ ├── 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 │ ├── 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 │ └── native-lib.cpp │ ├── java │ └── com │ │ └── gavinandre │ │ └── rtsplibrary │ │ ├── NativeCallback.java │ │ ├── RtspClient.java │ │ ├── RtspEndpointInterface.java │ │ └── RtspPlayerView.kt │ └── res │ └── values │ └── strings.xml ├── settings.gradle └── uvccameralibrary ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── cpp ├── CMakeLists.txt ├── include │ ├── jpegUtil.hpp │ ├── libusb │ │ ├── Makefile.am │ │ ├── config.h │ │ ├── core.c │ │ ├── core_original.c │ │ ├── descriptor.c │ │ ├── descriptor_original.c │ │ ├── hotplug.c │ │ ├── hotplug.h │ │ ├── hotplug_original.c │ │ ├── io.c │ │ ├── io_original.c │ │ ├── libusb-1.0.def │ │ ├── libusb-1.0.rc │ │ ├── libusb.h │ │ ├── libusb_original.h │ │ ├── libusbi.h │ │ ├── libusbi_original.h │ │ ├── os │ │ │ ├── android_netlink.c │ │ │ ├── android_usbfs.c │ │ │ ├── android_usbfs.h │ │ │ ├── darwin_usb.c │ │ │ ├── darwin_usb.h │ │ │ ├── linux_netlink.c │ │ │ ├── linux_udev.c │ │ │ ├── linux_usbfs.c │ │ │ ├── linux_usbfs.h │ │ │ ├── netbsd_usb.c │ │ │ ├── openbsd_usb.c │ │ │ ├── poll_posix.c │ │ │ ├── poll_posix.h │ │ │ ├── poll_posix_original.c │ │ │ ├── poll_windows.c │ │ │ ├── poll_windows.h │ │ │ ├── threads_posix.c │ │ │ ├── threads_posix.h │ │ │ ├── threads_windows.c │ │ │ ├── threads_windows.h │ │ │ ├── wince_usb.c │ │ │ ├── wince_usb.h │ │ │ ├── windows_common.h │ │ │ ├── windows_usb.c │ │ │ └── windows_usb.h │ │ ├── strerror.c │ │ ├── sync.c │ │ ├── sync_original.c │ │ ├── version.h │ │ └── version_nano.h │ ├── libuvc │ │ ├── libuvc.h │ │ ├── libuvc_config.h │ │ ├── libuvc_config.h.in │ │ ├── libuvc_internal.h │ │ ├── libuvc_internal_original.h │ │ └── libuvc_original.h │ ├── localdefines.h │ ├── utilbase.h │ └── utlist.h ├── jniLibs │ └── armeabi-v7a │ │ ├── libjpeg-turbo1500.so │ │ ├── libusb100.so │ │ └── libuvc.so ├── uvc_camera.cpp └── uvc_camera.hpp ├── java └── com │ └── gavinandre │ └── uvccameralibrary │ ├── BuildCheck.java │ ├── CameraPreview.java │ ├── CameraViewInterface.java │ ├── DeviceFilter.java │ ├── HandlerThreadHandler.java │ ├── USBMonitor.java │ ├── USBVendorId.java │ ├── UsbCameraLib.java │ └── UsbCameraManager.java └── res └── xml └── device_filter.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/gavinandre/jnidemo/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/androidTest/java/com/gavinandre/jnidemo/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/assets/cat.png -------------------------------------------------------------------------------- /app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/bean/complex_bean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/cpp/bean/complex_bean.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/bean/simple_bean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/cpp/bean/simple_bean.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/native_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/cpp/native_lib.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/native_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/cpp/native_lib.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/utils/android_buf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/cpp/utils/android_buf.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/utils/android_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/cpp/utils/android_log.h -------------------------------------------------------------------------------- /app/src/main/cpp/utils/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/cpp/utils/base64.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/utils/jni_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/cpp/utils/jni_lib.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/utils/jni_list_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/cpp/utils/jni_list_lib.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/utils/uuid_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/cpp/utils/uuid_lib.hpp -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/NativeLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/NativeLib.java -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/activity/JLogActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/activity/JLogActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/activity/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/activity/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/activity/MatBitmapConvertActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/activity/MatBitmapConvertActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/activity/NativeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/activity/NativeActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/activity/RtspActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/activity/RtspActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/activity/SystemCameraActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/activity/SystemCameraActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/activity/UsbCameraActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/activity/UsbCameraActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/activity/UvcCameraActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/activity/UvcCameraActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/base/MyApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/base/MyApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/bean/ComplexBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/bean/ComplexBean.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/bean/SimpleBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/bean/SimpleBean.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gavinandre/androidjnidemo/utils/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/java/com/gavinandre/androidjnidemo/utils/FileUtil.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_jlog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/layout/activity_jlog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_mat_bitmap_convert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/layout/activity_mat_bitmap_convert.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_native.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/layout/activity_native.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_rtsp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/layout/activity_rtsp.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_system_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/layout/activity_system_camera.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_usb_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/layout/activity_usb_camera.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_uvc_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/layout/activity_uvc_camera.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_uvc_dual_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/layout/activity_uvc_dual_camera.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/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/GavinAndre/AndroidJNIDemo/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/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/gavinandre/jnidemo/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/app/src/test/java/com/gavinandre/jnidemo/ExampleUnitTest.kt -------------------------------------------------------------------------------- /cameraprocesslibrary/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /cameraprocesslibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/build.gradle -------------------------------------------------------------------------------- /cameraprocesslibrary/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/proguard-rules.pro -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/camera_process_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/camera_process_jni.cpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/camera_process_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/camera_process_lib.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv/cv.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv/cv.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv/cvaux.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv/cvaux.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv/cvwimage.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv/cxcore.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv/cxcore.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv/cxmisc.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv/highgui.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv/ml.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/base.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/bindings_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/bindings_utils.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/bufferpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/bufferpool.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/check.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/core.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/core_c.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda.inl.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/block.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/border_interpolate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/border_interpolate.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/color.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/common.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/datamov_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/datamov_utils.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/color_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/color_detail.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/reduce.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/reduce_key_val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/reduce_key_val.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/transform_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/transform_detail.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/type_traits_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/type_traits_detail.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/vec_distance_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/vec_distance_detail.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/dynamic_smem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/dynamic_smem.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/emulation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/emulation.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/filters.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/funcattrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/funcattrib.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/functional.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/limits.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/reduce.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/saturate_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/saturate_cast.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/scan.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/simd_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/simd_functions.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/transform.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/type_traits.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/utility.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/vec_distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/vec_distance.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/vec_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/vec_math.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/vec_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/vec_traits.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/warp.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/warp_reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/warp_reduce.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/warp_shuffle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda/warp_shuffle.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda_stream_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda_stream_accessor.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cuda_types.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cv_cpu_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cv_cpu_dispatch.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cv_cpu_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cv_cpu_helper.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cvdef.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cvstd.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/cvstd.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/cvstd.inl.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/directx.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/fast_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/fast_math.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/hal.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/interface.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_avx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_avx.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_cpp.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_forward.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_neon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_neon.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_sse.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_sse_em.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_sse_em.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_vsx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_vsx.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/ippasync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/ippasync.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/mat.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/mat.inl.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/matx.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/neon_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/neon_utils.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/ocl.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/ocl_genbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/ocl_genbase.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/ocl_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/ocl_defs.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/opencl_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/opencl_info.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/opencl_svm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/opencl_svm.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdblas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdblas.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_core.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_clamdblas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_clamdblas.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_clamdfft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_clamdfft.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_core.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_core_wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_core_wrappers.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_gl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_gl.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_gl_wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_gl_wrappers.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_svm_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_svm_20.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_svm_definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_svm_definitions.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_svm_hsa_extension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_svm_hsa_extension.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/opengl.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/optim.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/ovx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/ovx.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/persistence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/persistence.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/ptr.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/ptr.inl.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/saturate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/saturate.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/softfloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/softfloat.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/sse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/sse_utils.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/traits.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/types.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/types_c.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/utility.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/utils/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/utils/filesystem.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/utils/logger.defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/utils/logger.defines.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/utils/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/utils/logger.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/utils/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/utils/trace.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/va_intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/va_intel.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/version.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/vsx_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/vsx_utils.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/cvconfig.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/imgcodecs.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/imgcodecs/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/imgcodecs/imgcodecs.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/imgcodecs/imgcodecs_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/imgcodecs/imgcodecs_c.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/imgcodecs/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/imgcodecs/ios.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc/detail/distortion_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc/detail/distortion_model.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc/hal/hal.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc/hal/interface.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/opencv.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/include/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/include/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/jniLibs/armeabi-v7a/libopencv_core.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/jniLibs/armeabi-v7a/libopencv_core.so -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/jniLibs/armeabi-v7a/libopencv_imgcodecs.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/jniLibs/armeabi-v7a/libopencv_imgcodecs.so -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/jniLibs/armeabi-v7a/libopencv_imgproc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/jniLibs/armeabi-v7a/libopencv_imgproc.so -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/util/android_buf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/util/android_buf.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/util/android_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/util/android_log.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/util/jni_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/util/jni_lib.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/util/v4l2/v4l_achieve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/util/v4l2/v4l_achieve.cpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/util/v4l2/v4l_achieve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/util/v4l2/v4l_achieve.h -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/cpp/util/v4l2/v4l_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/cpp/util/v4l2/v4l_lib.hpp -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/java/com/gavinandre/cameraprocesslibrary/CameraProcessLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/java/com/gavinandre/cameraprocesslibrary/CameraProcessLib.java -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/java/com/gavinandre/cameraprocesslibrary/systemcamera/SystemCameraFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/java/com/gavinandre/cameraprocesslibrary/systemcamera/SystemCameraFragment.kt -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/java/com/gavinandre/cameraprocesslibrary/systemcamera/SystemCameraTextureView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/java/com/gavinandre/cameraprocesslibrary/systemcamera/SystemCameraTextureView.kt -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/java/com/gavinandre/cameraprocesslibrary/usbcamera/UsbCameraFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/java/com/gavinandre/cameraprocesslibrary/usbcamera/UsbCameraFragment.kt -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/java/com/gavinandre/cameraprocesslibrary/usbcamera/UsbCameraTextureView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/java/com/gavinandre/cameraprocesslibrary/usbcamera/UsbCameraTextureView.kt -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/java/com/gavinandre/cameraprocesslibrary/utils/Camera1Manager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/java/com/gavinandre/cameraprocesslibrary/utils/Camera1Manager.kt -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/res/layout/fragment_system_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/res/layout/fragment_system_camera.xml -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/res/layout/fragment_usb_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/res/layout/fragment_usb_camera.xml -------------------------------------------------------------------------------- /cameraprocesslibrary/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/cameraprocesslibrary/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /config.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/config.gradle -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /imageprocesslibrary/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /imageprocesslibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/build.gradle -------------------------------------------------------------------------------- /imageprocesslibrary/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/proguard-rules.pro -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/image_process_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/image_process_jni.cpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/image_process_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/image_process_lib.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv/cv.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv/cv.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv/cvaux.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv/cvaux.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv/cvwimage.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv/cxcore.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv/cxcore.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv/cxmisc.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv/highgui.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv/ml.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/base.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/bindings_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/bindings_utils.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/bufferpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/bufferpool.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/check.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/core.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/core_c.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda.inl.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/block.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/border_interpolate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/border_interpolate.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/color.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/common.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/datamov_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/datamov_utils.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/color_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/color_detail.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/reduce.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/reduce_key_val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/reduce_key_val.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/transform_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/transform_detail.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/type_traits_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/type_traits_detail.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/vec_distance_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/detail/vec_distance_detail.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/dynamic_smem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/dynamic_smem.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/emulation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/emulation.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/filters.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/funcattrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/funcattrib.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/functional.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/limits.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/reduce.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/saturate_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/saturate_cast.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/scan.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/simd_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/simd_functions.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/transform.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/type_traits.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/utility.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/vec_distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/vec_distance.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/vec_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/vec_math.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/vec_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/vec_traits.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/warp.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/warp_reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/warp_reduce.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/warp_shuffle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda/warp_shuffle.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda_stream_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda_stream_accessor.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cuda_types.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cv_cpu_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cv_cpu_dispatch.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cv_cpu_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cv_cpu_helper.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cvdef.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cvstd.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/cvstd.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/cvstd.inl.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/directx.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/fast_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/fast_math.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/hal.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/interface.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_avx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_avx.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_cpp.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_forward.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_neon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_neon.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_sse.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_sse_em.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_sse_em.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_vsx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/hal/intrin_vsx.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/ippasync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/ippasync.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/mat.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/mat.inl.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/matx.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/neon_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/neon_utils.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/ocl.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/ocl_genbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/ocl_genbase.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/ocl_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/ocl_defs.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/opencl_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/opencl_info.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/opencl_svm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/opencl_svm.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdblas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdblas.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_core.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_clamdblas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_clamdblas.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_clamdfft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_clamdfft.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_core.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_core_wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_core_wrappers.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_gl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_gl.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_gl_wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_gl_wrappers.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_svm_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_svm_20.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_svm_definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_svm_definitions.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_svm_hsa_extension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opencl/runtime/opencl_svm_hsa_extension.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/opengl.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/optim.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/ovx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/ovx.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/persistence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/persistence.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/ptr.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/ptr.inl.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/saturate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/saturate.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/softfloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/softfloat.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/sse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/sse_utils.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/traits.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/types.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/types_c.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/utility.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/utils/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/utils/filesystem.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/utils/logger.defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/utils/logger.defines.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/utils/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/utils/logger.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/utils/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/utils/trace.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/va_intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/va_intel.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/version.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/vsx_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/vsx_utils.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/cvconfig.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/imgcodecs.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/imgcodecs/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/imgcodecs/imgcodecs.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/imgcodecs/imgcodecs_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/imgcodecs/imgcodecs_c.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/imgcodecs/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/imgcodecs/ios.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/imgproc/detail/distortion_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/imgproc/detail/distortion_model.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/imgproc/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/imgproc/hal/hal.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/imgproc/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/imgproc/hal/interface.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/opencv.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/include/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/include/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/jniLibs/armeabi-v7a/libopencv_core.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/jniLibs/armeabi-v7a/libopencv_core.so -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/jniLibs/armeabi-v7a/libopencv_imgcodecs.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/jniLibs/armeabi-v7a/libopencv_imgcodecs.so -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/jniLibs/armeabi-v7a/libopencv_imgproc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/jniLibs/armeabi-v7a/libopencv_imgproc.so -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/utils/android_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/utils/android_log.h -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/cpp/utils/jni_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/cpp/utils/jni_lib.hpp -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/java/com/gavinandre/imageprocesslibrary/ImageProcess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/java/com/gavinandre/imageprocesslibrary/ImageProcess.java -------------------------------------------------------------------------------- /imageprocesslibrary/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/imageprocesslibrary/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /nativeloglibrary/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /nativeloglibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/nativeloglibrary/build.gradle -------------------------------------------------------------------------------- /nativeloglibrary/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/nativeloglibrary/proguard-rules.pro -------------------------------------------------------------------------------- /nativeloglibrary/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/nativeloglibrary/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /nativeloglibrary/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/nativeloglibrary/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /nativeloglibrary/src/main/cpp/jlog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/nativeloglibrary/src/main/cpp/jlog.hpp -------------------------------------------------------------------------------- /nativeloglibrary/src/main/cpp/jlog_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/nativeloglibrary/src/main/cpp/jlog_lib.cpp -------------------------------------------------------------------------------- /nativeloglibrary/src/main/java/com/gavinandre/nativeloglibrary/JLogLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/nativeloglibrary/src/main/java/com/gavinandre/nativeloglibrary/JLogLib.java -------------------------------------------------------------------------------- /rtsplibrary/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /rtsplibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/build.gradle -------------------------------------------------------------------------------- /rtsplibrary/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/proguard-rules.pro -------------------------------------------------------------------------------- /rtsplibrary/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/jni.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/vda.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/version.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavdevice/version.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavfilter/version.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavformat/avformat.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavformat/avio.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavformat/version.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/adler32.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/aes.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/attributes.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/avassert.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/avstring.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/avutil.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/base64.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/bprint.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/bswap.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/buffer.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/camellia.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/cast5.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/common.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/cpu.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/crc.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/des.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/dict.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/display.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/error.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/eval.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/fifo.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/file.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/frame.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/hash.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/hmac.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/lfg.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/log.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/lzo.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/macros.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/md5.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/mem.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/opt.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/rational.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/rc4.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/sha.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/sha512.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/tea.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/time.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/timecode.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/tree.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/twofish.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/version.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libavutil/xtea.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libpostproc/version.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libswresample/swresample.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libswresample/version.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libswscale/swscale.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/include/libswscale/version.h -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libavcodec-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libavcodec-57.so -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libavdevice-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libavdevice-57.so -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libavfilter-6.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libavfilter-6.so -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libavformat-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libavformat-57.so -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libavutil-55.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libavutil-55.so -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libpostproc-54.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libpostproc-54.so -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libswresample-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libswresample-2.so -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libswscale-4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/jniLibs/armeabi-v7a/libswscale-4.so -------------------------------------------------------------------------------- /rtsplibrary/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /rtsplibrary/src/main/java/com/gavinandre/rtsplibrary/NativeCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/java/com/gavinandre/rtsplibrary/NativeCallback.java -------------------------------------------------------------------------------- /rtsplibrary/src/main/java/com/gavinandre/rtsplibrary/RtspClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/java/com/gavinandre/rtsplibrary/RtspClient.java -------------------------------------------------------------------------------- /rtsplibrary/src/main/java/com/gavinandre/rtsplibrary/RtspEndpointInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/java/com/gavinandre/rtsplibrary/RtspEndpointInterface.java -------------------------------------------------------------------------------- /rtsplibrary/src/main/java/com/gavinandre/rtsplibrary/RtspPlayerView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/java/com/gavinandre/rtsplibrary/RtspPlayerView.kt -------------------------------------------------------------------------------- /rtsplibrary/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/rtsplibrary/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/settings.gradle -------------------------------------------------------------------------------- /uvccameralibrary/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /uvccameralibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/build.gradle -------------------------------------------------------------------------------- /uvccameralibrary/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/proguard-rules.pro -------------------------------------------------------------------------------- /uvccameralibrary/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/jpegUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/jpegUtil.hpp -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/Makefile.am -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/config.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/core.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/core_original.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/core_original.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/descriptor.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/descriptor_original.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/descriptor_original.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/hotplug.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/hotplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/hotplug.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/hotplug_original.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/hotplug_original.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/io.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/io_original.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/io_original.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/libusb-1.0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/libusb-1.0.def -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/libusb-1.0.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/libusb-1.0.rc -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/libusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/libusb.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/libusb_original.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/libusb_original.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/libusbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/libusbi.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/libusbi_original.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/libusbi_original.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/android_netlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/android_netlink.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/android_usbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/android_usbfs.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/android_usbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/android_usbfs.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/darwin_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/darwin_usb.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/darwin_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/darwin_usb.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/linux_netlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/linux_netlink.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/linux_udev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/linux_udev.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/linux_usbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/linux_usbfs.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/linux_usbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/linux_usbfs.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/netbsd_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/netbsd_usb.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/openbsd_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/openbsd_usb.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/poll_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/poll_posix.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/poll_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/poll_posix.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/poll_posix_original.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/poll_posix_original.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/poll_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/poll_windows.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/poll_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/poll_windows.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/threads_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/threads_posix.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/threads_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/threads_posix.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/threads_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/threads_windows.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/threads_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/threads_windows.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/wince_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/wince_usb.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/wince_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/wince_usb.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/windows_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/windows_common.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/windows_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/windows_usb.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/os/windows_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/os/windows_usb.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/strerror.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/sync.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/sync_original.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/sync_original.c -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libusb/version.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libusb/version_nano.h: -------------------------------------------------------------------------------- 1 | #define LIBUSB_NANO 10903 2 | -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libuvc/libuvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libuvc/libuvc.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libuvc/libuvc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libuvc/libuvc_config.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libuvc/libuvc_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libuvc/libuvc_config.h.in -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libuvc/libuvc_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libuvc/libuvc_internal.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libuvc/libuvc_internal_original.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libuvc/libuvc_internal_original.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/libuvc/libuvc_original.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/libuvc/libuvc_original.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/localdefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/localdefines.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/utilbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/utilbase.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/include/utlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/include/utlist.h -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/jniLibs/armeabi-v7a/libjpeg-turbo1500.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/jniLibs/armeabi-v7a/libjpeg-turbo1500.so -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/jniLibs/armeabi-v7a/libusb100.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/jniLibs/armeabi-v7a/libusb100.so -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/jniLibs/armeabi-v7a/libuvc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/jniLibs/armeabi-v7a/libuvc.so -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/uvc_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/uvc_camera.cpp -------------------------------------------------------------------------------- /uvccameralibrary/src/main/cpp/uvc_camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/cpp/uvc_camera.hpp -------------------------------------------------------------------------------- /uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/BuildCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/BuildCheck.java -------------------------------------------------------------------------------- /uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/CameraPreview.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/CameraPreview.java -------------------------------------------------------------------------------- /uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/CameraViewInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/CameraViewInterface.java -------------------------------------------------------------------------------- /uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/DeviceFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/DeviceFilter.java -------------------------------------------------------------------------------- /uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/HandlerThreadHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/HandlerThreadHandler.java -------------------------------------------------------------------------------- /uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/USBMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/USBMonitor.java -------------------------------------------------------------------------------- /uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/USBVendorId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/USBVendorId.java -------------------------------------------------------------------------------- /uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/UsbCameraLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/UsbCameraLib.java -------------------------------------------------------------------------------- /uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/UsbCameraManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/java/com/gavinandre/uvccameralibrary/UsbCameraManager.java -------------------------------------------------------------------------------- /uvccameralibrary/src/main/res/xml/device_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinAndre/AndroidJNIDemo/HEAD/uvccameralibrary/src/main/res/xml/device_filter.xml --------------------------------------------------------------------------------