├── .gitattributes ├── .gitignore ├── DCM.drawio ├── GolombCode.sln ├── GolombCode ├── BitStream.cpp ├── BitStream.h ├── GolombCode.vcxproj ├── GolombCode.vcxproj.filters ├── GolombDecoder.h ├── GolombEncoder.h ├── mian.cpp └── 未命名绘图.drawio └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/.gitignore -------------------------------------------------------------------------------- /DCM.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/DCM.drawio -------------------------------------------------------------------------------- /GolombCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/GolombCode.sln -------------------------------------------------------------------------------- /GolombCode/BitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/GolombCode/BitStream.cpp -------------------------------------------------------------------------------- /GolombCode/BitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/GolombCode/BitStream.h -------------------------------------------------------------------------------- /GolombCode/GolombCode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/GolombCode/GolombCode.vcxproj -------------------------------------------------------------------------------- /GolombCode/GolombCode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/GolombCode/GolombCode.vcxproj.filters -------------------------------------------------------------------------------- /GolombCode/GolombDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/GolombCode/GolombDecoder.h -------------------------------------------------------------------------------- /GolombCode/GolombEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/GolombCode/GolombEncoder.h -------------------------------------------------------------------------------- /GolombCode/mian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/GolombCode/mian.cpp -------------------------------------------------------------------------------- /GolombCode/未命名绘图.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/GolombCode/未命名绘图.drawio -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brookicv/GolombCode/HEAD/README.md --------------------------------------------------------------------------------