├── .gitignore ├── CodecCommander.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── CodecCommander.xcscheme ├── CodecCommander ├── Client.cpp ├── CodecCommander-Info.plist ├── CodecCommander-Prefix.pch ├── CodecCommander.cpp ├── CodecCommander.h ├── Common.h ├── Configuration.cpp ├── Configuration.h ├── IntelHDA.cpp ├── IntelHDA.h └── PIOReadme ├── CodecCommanderClient ├── hdaverb.h └── main.c ├── LICENSE ├── README.md ├── SSDT-ALC1220.dsl ├── SSDT-ALC256-insanelydeepak.dsl ├── SSDT-ALC256-vbourachot.dsl ├── SSDT-ALC280.dsl ├── SSDT-ALC283.dsl ├── SSDT-ALC298.dsl ├── SSDT-ALC298a.dsl ├── SSDT-ALC668.dsl ├── SSDT-AppleALC.dsl ├── SSDT-CX20752.dsl ├── config_dump.sh ├── convert.sh ├── eapd_dump.sh ├── extract_hda.sh ├── gen_ahhcd.sh ├── makefile ├── node_dump.sh ├── print_version.sh └── widget_dump.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/.gitignore -------------------------------------------------------------------------------- /CodecCommander.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CodecCommander.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CodecCommander.xcodeproj/xcshareddata/xcschemes/CodecCommander.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander.xcodeproj/xcshareddata/xcschemes/CodecCommander.xcscheme -------------------------------------------------------------------------------- /CodecCommander/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander/Client.cpp -------------------------------------------------------------------------------- /CodecCommander/CodecCommander-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander/CodecCommander-Info.plist -------------------------------------------------------------------------------- /CodecCommander/CodecCommander-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander/CodecCommander-Prefix.pch -------------------------------------------------------------------------------- /CodecCommander/CodecCommander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander/CodecCommander.cpp -------------------------------------------------------------------------------- /CodecCommander/CodecCommander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander/CodecCommander.h -------------------------------------------------------------------------------- /CodecCommander/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander/Common.h -------------------------------------------------------------------------------- /CodecCommander/Configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander/Configuration.cpp -------------------------------------------------------------------------------- /CodecCommander/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander/Configuration.h -------------------------------------------------------------------------------- /CodecCommander/IntelHDA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander/IntelHDA.cpp -------------------------------------------------------------------------------- /CodecCommander/IntelHDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander/IntelHDA.h -------------------------------------------------------------------------------- /CodecCommander/PIOReadme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommander/PIOReadme -------------------------------------------------------------------------------- /CodecCommanderClient/hdaverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommanderClient/hdaverb.h -------------------------------------------------------------------------------- /CodecCommanderClient/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/CodecCommanderClient/main.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/README.md -------------------------------------------------------------------------------- /SSDT-ALC1220.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/SSDT-ALC1220.dsl -------------------------------------------------------------------------------- /SSDT-ALC256-insanelydeepak.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/SSDT-ALC256-insanelydeepak.dsl -------------------------------------------------------------------------------- /SSDT-ALC256-vbourachot.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/SSDT-ALC256-vbourachot.dsl -------------------------------------------------------------------------------- /SSDT-ALC280.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/SSDT-ALC280.dsl -------------------------------------------------------------------------------- /SSDT-ALC283.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/SSDT-ALC283.dsl -------------------------------------------------------------------------------- /SSDT-ALC298.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/SSDT-ALC298.dsl -------------------------------------------------------------------------------- /SSDT-ALC298a.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/SSDT-ALC298a.dsl -------------------------------------------------------------------------------- /SSDT-ALC668.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/SSDT-ALC668.dsl -------------------------------------------------------------------------------- /SSDT-AppleALC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/SSDT-AppleALC.dsl -------------------------------------------------------------------------------- /SSDT-CX20752.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/SSDT-CX20752.dsl -------------------------------------------------------------------------------- /config_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/config_dump.sh -------------------------------------------------------------------------------- /convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/convert.sh -------------------------------------------------------------------------------- /eapd_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/eapd_dump.sh -------------------------------------------------------------------------------- /extract_hda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/extract_hda.sh -------------------------------------------------------------------------------- /gen_ahhcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/gen_ahhcd.sh -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/makefile -------------------------------------------------------------------------------- /node_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/node_dump.sh -------------------------------------------------------------------------------- /print_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/print_version.sh -------------------------------------------------------------------------------- /widget_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehabMan/EAPD-Codec-Commander/HEAD/widget_dump.sh --------------------------------------------------------------------------------