├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── COPYING.txt ├── History.txt ├── README.md ├── README_old.md ├── cmake_uninstall.cmake.in ├── msvc ├── D2VSource.sln ├── D2VSource.vcxproj └── D2VSource.vcxproj.filters └── src ├── AVISynthAPI.cpp ├── AVISynthAPI.h ├── MPEG2Decoder.cpp ├── MPEG2Decoder.h ├── color_convert.cpp ├── color_convert.h ├── d2vsource.rc ├── getbit.cpp ├── gethdr.cpp ├── getpic.cpp ├── global.cpp ├── global.h ├── idct.h ├── idct_ap922_sse2.cpp ├── idct_llm_float_avx2.cpp ├── idct_llm_float_sse2.cpp ├── idct_ref_sse3.cpp ├── mc.cpp ├── mc.h ├── misc.cpp ├── misc.h ├── store.cpp ├── win_import_min.h ├── yv12pict.cpp └── yv12pict.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/COPYING.txt -------------------------------------------------------------------------------- /History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/History.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/README.md -------------------------------------------------------------------------------- /README_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/README_old.md -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /msvc/D2VSource.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/msvc/D2VSource.sln -------------------------------------------------------------------------------- /msvc/D2VSource.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/msvc/D2VSource.vcxproj -------------------------------------------------------------------------------- /msvc/D2VSource.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/msvc/D2VSource.vcxproj.filters -------------------------------------------------------------------------------- /src/AVISynthAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/AVISynthAPI.cpp -------------------------------------------------------------------------------- /src/AVISynthAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/AVISynthAPI.h -------------------------------------------------------------------------------- /src/MPEG2Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/MPEG2Decoder.cpp -------------------------------------------------------------------------------- /src/MPEG2Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/MPEG2Decoder.h -------------------------------------------------------------------------------- /src/color_convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/color_convert.cpp -------------------------------------------------------------------------------- /src/color_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/color_convert.h -------------------------------------------------------------------------------- /src/d2vsource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/d2vsource.rc -------------------------------------------------------------------------------- /src/getbit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/getbit.cpp -------------------------------------------------------------------------------- /src/gethdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/gethdr.cpp -------------------------------------------------------------------------------- /src/getpic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/getpic.cpp -------------------------------------------------------------------------------- /src/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/global.cpp -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/global.h -------------------------------------------------------------------------------- /src/idct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/idct.h -------------------------------------------------------------------------------- /src/idct_ap922_sse2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/idct_ap922_sse2.cpp -------------------------------------------------------------------------------- /src/idct_llm_float_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/idct_llm_float_avx2.cpp -------------------------------------------------------------------------------- /src/idct_llm_float_sse2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/idct_llm_float_sse2.cpp -------------------------------------------------------------------------------- /src/idct_ref_sse3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/idct_ref_sse3.cpp -------------------------------------------------------------------------------- /src/mc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/mc.cpp -------------------------------------------------------------------------------- /src/mc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/mc.h -------------------------------------------------------------------------------- /src/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/misc.cpp -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/store.cpp -------------------------------------------------------------------------------- /src/win_import_min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/win_import_min.h -------------------------------------------------------------------------------- /src/yv12pict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/yv12pict.cpp -------------------------------------------------------------------------------- /src/yv12pict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/MPEG2DecPlus/HEAD/src/yv12pict.h --------------------------------------------------------------------------------