├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── android ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lib │ ├── .gitignore │ ├── CMakeLists.txt │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── BayerDithererWithRs.cpp │ │ ├── BayerDithererWithRs.h │ │ ├── BurstLinker.cpp │ │ ├── DisableDithererWithRs.cpp │ │ ├── DisableDithererWithRs.h │ │ ├── DithererWithRs.cpp │ │ ├── DithererWithRs.h │ │ ├── NoDithererWithRs.cpp │ │ └── NoDithererWithRs.h │ │ └── java │ │ └── com │ │ └── bilibili │ │ └── burstlinker │ │ ├── BurstLinker.java │ │ └── GifEncodeException.java ├── sample │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── bilibili │ │ │ └── burstlinker │ │ │ └── sample │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-nodpi │ │ ├── bilibili.png │ │ └── tcr.jpg │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── settings.gradle └── upload.gradle ├── example └── Main.cpp ├── screenshot ├── bilibili-octree-default.gif ├── bilibili-octree-ignore.gif ├── bilibili.png ├── k-means.gif ├── lenna-original.png ├── media-cut.gif ├── neu-quant-1.gif ├── neu-quant-10.gif ├── octree-bayer.gif ├── octree-floyd-steinberg.gif ├── octree-m2.gif ├── octree.gif ├── random.gif └── uniform.gif ├── src ├── BayerDitherer.cpp ├── BayerDitherer.h ├── BurstLinker.cpp ├── BurstLinker.h ├── ColorQuantizer.h ├── Ditherer.h ├── FloydSteinbergDitherer.cpp ├── FloydSteinbergDitherer.h ├── GifAnalyzer.cpp ├── GifAnalyzer.h ├── GifBlockWriter.cpp ├── GifBlockWriter.h ├── GifEncoder.cpp ├── GifEncoder.h ├── KDTree.cpp ├── KDTree.h ├── KMeansQuantizer.cpp ├── KMeansQuantizer.h ├── Logger.cpp ├── Logger.h ├── LzwEncoder.cpp ├── LzwEncoder.h ├── M2Ditherer.cpp ├── M2Ditherer.h ├── Main.cpp ├── MedianCutQuantizer.cpp ├── MedianCutQuantizer.h ├── NeuQuant.cpp ├── NeuQuant.h ├── NeuQuantQuantizer.cpp ├── NeuQuantQuantizer.h ├── NoDitherer.cpp ├── NoDitherer.h ├── OctreeQuantizer.cpp ├── OctreeQuantizer.h ├── RandomQuantizer.cpp ├── RandomQuantizer.h ├── ThreadPool.h ├── UniformQuantizer.cpp └── UniformQuantizer.h └── third_part └── stb_image.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/.gitignore -------------------------------------------------------------------------------- /android/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/CMakeLists.txt -------------------------------------------------------------------------------- /android/lib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/build.gradle -------------------------------------------------------------------------------- /android/lib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/proguard-rules.pro -------------------------------------------------------------------------------- /android/lib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/lib/src/main/cpp/BayerDithererWithRs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/src/main/cpp/BayerDithererWithRs.cpp -------------------------------------------------------------------------------- /android/lib/src/main/cpp/BayerDithererWithRs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/src/main/cpp/BayerDithererWithRs.h -------------------------------------------------------------------------------- /android/lib/src/main/cpp/BurstLinker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/src/main/cpp/BurstLinker.cpp -------------------------------------------------------------------------------- /android/lib/src/main/cpp/DisableDithererWithRs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/src/main/cpp/DisableDithererWithRs.cpp -------------------------------------------------------------------------------- /android/lib/src/main/cpp/DisableDithererWithRs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/src/main/cpp/DisableDithererWithRs.h -------------------------------------------------------------------------------- /android/lib/src/main/cpp/DithererWithRs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/src/main/cpp/DithererWithRs.cpp -------------------------------------------------------------------------------- /android/lib/src/main/cpp/DithererWithRs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/src/main/cpp/DithererWithRs.h -------------------------------------------------------------------------------- /android/lib/src/main/cpp/NoDithererWithRs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/src/main/cpp/NoDithererWithRs.cpp -------------------------------------------------------------------------------- /android/lib/src/main/cpp/NoDithererWithRs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/src/main/cpp/NoDithererWithRs.h -------------------------------------------------------------------------------- /android/lib/src/main/java/com/bilibili/burstlinker/BurstLinker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/src/main/java/com/bilibili/burstlinker/BurstLinker.java -------------------------------------------------------------------------------- /android/lib/src/main/java/com/bilibili/burstlinker/GifEncodeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/lib/src/main/java/com/bilibili/burstlinker/GifEncodeException.java -------------------------------------------------------------------------------- /android/sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/sample/build.gradle -------------------------------------------------------------------------------- /android/sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/sample/proguard-rules.pro -------------------------------------------------------------------------------- /android/sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/sample/src/main/java/com/bilibili/burstlinker/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/sample/src/main/java/com/bilibili/burstlinker/sample/MainActivity.java -------------------------------------------------------------------------------- /android/sample/src/main/res/drawable-nodpi/bilibili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/sample/src/main/res/drawable-nodpi/bilibili.png -------------------------------------------------------------------------------- /android/sample/src/main/res/drawable-nodpi/tcr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/sample/src/main/res/drawable-nodpi/tcr.jpg -------------------------------------------------------------------------------- /android/sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':lib', ':sample' 2 | -------------------------------------------------------------------------------- /android/upload.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/android/upload.gradle -------------------------------------------------------------------------------- /example/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/example/Main.cpp -------------------------------------------------------------------------------- /screenshot/bilibili-octree-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/bilibili-octree-default.gif -------------------------------------------------------------------------------- /screenshot/bilibili-octree-ignore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/bilibili-octree-ignore.gif -------------------------------------------------------------------------------- /screenshot/bilibili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/bilibili.png -------------------------------------------------------------------------------- /screenshot/k-means.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/k-means.gif -------------------------------------------------------------------------------- /screenshot/lenna-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/lenna-original.png -------------------------------------------------------------------------------- /screenshot/media-cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/media-cut.gif -------------------------------------------------------------------------------- /screenshot/neu-quant-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/neu-quant-1.gif -------------------------------------------------------------------------------- /screenshot/neu-quant-10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/neu-quant-10.gif -------------------------------------------------------------------------------- /screenshot/octree-bayer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/octree-bayer.gif -------------------------------------------------------------------------------- /screenshot/octree-floyd-steinberg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/octree-floyd-steinberg.gif -------------------------------------------------------------------------------- /screenshot/octree-m2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/octree-m2.gif -------------------------------------------------------------------------------- /screenshot/octree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/octree.gif -------------------------------------------------------------------------------- /screenshot/random.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/random.gif -------------------------------------------------------------------------------- /screenshot/uniform.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/screenshot/uniform.gif -------------------------------------------------------------------------------- /src/BayerDitherer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/BayerDitherer.cpp -------------------------------------------------------------------------------- /src/BayerDitherer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/BayerDitherer.h -------------------------------------------------------------------------------- /src/BurstLinker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/BurstLinker.cpp -------------------------------------------------------------------------------- /src/BurstLinker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/BurstLinker.h -------------------------------------------------------------------------------- /src/ColorQuantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/ColorQuantizer.h -------------------------------------------------------------------------------- /src/Ditherer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/Ditherer.h -------------------------------------------------------------------------------- /src/FloydSteinbergDitherer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/FloydSteinbergDitherer.cpp -------------------------------------------------------------------------------- /src/FloydSteinbergDitherer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/FloydSteinbergDitherer.h -------------------------------------------------------------------------------- /src/GifAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/GifAnalyzer.cpp -------------------------------------------------------------------------------- /src/GifAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/GifAnalyzer.h -------------------------------------------------------------------------------- /src/GifBlockWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/GifBlockWriter.cpp -------------------------------------------------------------------------------- /src/GifBlockWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/GifBlockWriter.h -------------------------------------------------------------------------------- /src/GifEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/GifEncoder.cpp -------------------------------------------------------------------------------- /src/GifEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/GifEncoder.h -------------------------------------------------------------------------------- /src/KDTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/KDTree.cpp -------------------------------------------------------------------------------- /src/KDTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/KDTree.h -------------------------------------------------------------------------------- /src/KMeansQuantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/KMeansQuantizer.cpp -------------------------------------------------------------------------------- /src/KMeansQuantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/KMeansQuantizer.h -------------------------------------------------------------------------------- /src/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/Logger.cpp -------------------------------------------------------------------------------- /src/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/Logger.h -------------------------------------------------------------------------------- /src/LzwEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/LzwEncoder.cpp -------------------------------------------------------------------------------- /src/LzwEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/LzwEncoder.h -------------------------------------------------------------------------------- /src/M2Ditherer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/M2Ditherer.cpp -------------------------------------------------------------------------------- /src/M2Ditherer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/M2Ditherer.h -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/MedianCutQuantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/MedianCutQuantizer.cpp -------------------------------------------------------------------------------- /src/MedianCutQuantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/MedianCutQuantizer.h -------------------------------------------------------------------------------- /src/NeuQuant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/NeuQuant.cpp -------------------------------------------------------------------------------- /src/NeuQuant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/NeuQuant.h -------------------------------------------------------------------------------- /src/NeuQuantQuantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/NeuQuantQuantizer.cpp -------------------------------------------------------------------------------- /src/NeuQuantQuantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/NeuQuantQuantizer.h -------------------------------------------------------------------------------- /src/NoDitherer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/NoDitherer.cpp -------------------------------------------------------------------------------- /src/NoDitherer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/NoDitherer.h -------------------------------------------------------------------------------- /src/OctreeQuantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/OctreeQuantizer.cpp -------------------------------------------------------------------------------- /src/OctreeQuantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/OctreeQuantizer.h -------------------------------------------------------------------------------- /src/RandomQuantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/RandomQuantizer.cpp -------------------------------------------------------------------------------- /src/RandomQuantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/RandomQuantizer.h -------------------------------------------------------------------------------- /src/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/ThreadPool.h -------------------------------------------------------------------------------- /src/UniformQuantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/UniformQuantizer.cpp -------------------------------------------------------------------------------- /src/UniformQuantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/src/UniformQuantizer.h -------------------------------------------------------------------------------- /third_part/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/BurstLinker/HEAD/third_part/stb_image.h --------------------------------------------------------------------------------