├── .gitignore ├── .tfignore ├── LICENSE ├── README.md ├── SPDIFKA.sln ├── SPDIFKA ├── App.config ├── AudioControl.cs ├── ILMerge.props ├── ILMergeOrder.txt ├── Lib │ ├── DeviceNotification.cs │ ├── LoopStream.cs │ └── ShortcutToolbox.cs ├── NLog.config ├── NLog.xsd ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── SPDIFGUI.Designer.cs ├── SPDIFGUI.cs ├── SPDIFGUI.resx ├── SPDIFKA.cs ├── SPDIFKA.csproj ├── UserPreferences.cs ├── bar-chart-64-green.ico ├── bar-chart-64-red.ico ├── media │ ├── blank.wav │ └── inaudible.wav ├── packages.config └── spdifka-sn-key.pfx └── screen-captures ├── spdif-ka_sc1.jpg ├── spdif-ka_sc2.jpg ├── spdif-ka_sc3.jpg ├── spdif-ka_sc4.jpg └── spdif-ka_sc5.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/.gitignore -------------------------------------------------------------------------------- /.tfignore: -------------------------------------------------------------------------------- 1 | \.git -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/README.md -------------------------------------------------------------------------------- /SPDIFKA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA.sln -------------------------------------------------------------------------------- /SPDIFKA/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/App.config -------------------------------------------------------------------------------- /SPDIFKA/AudioControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/AudioControl.cs -------------------------------------------------------------------------------- /SPDIFKA/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/ILMerge.props -------------------------------------------------------------------------------- /SPDIFKA/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/ILMergeOrder.txt -------------------------------------------------------------------------------- /SPDIFKA/Lib/DeviceNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/Lib/DeviceNotification.cs -------------------------------------------------------------------------------- /SPDIFKA/Lib/LoopStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/Lib/LoopStream.cs -------------------------------------------------------------------------------- /SPDIFKA/Lib/ShortcutToolbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/Lib/ShortcutToolbox.cs -------------------------------------------------------------------------------- /SPDIFKA/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/NLog.config -------------------------------------------------------------------------------- /SPDIFKA/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/NLog.xsd -------------------------------------------------------------------------------- /SPDIFKA/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SPDIFKA/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SPDIFKA/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/Properties/Resources.resx -------------------------------------------------------------------------------- /SPDIFKA/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SPDIFKA/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/Properties/Settings.settings -------------------------------------------------------------------------------- /SPDIFKA/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/Properties/app.manifest -------------------------------------------------------------------------------- /SPDIFKA/SPDIFGUI.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/SPDIFGUI.Designer.cs -------------------------------------------------------------------------------- /SPDIFKA/SPDIFGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/SPDIFGUI.cs -------------------------------------------------------------------------------- /SPDIFKA/SPDIFGUI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/SPDIFGUI.resx -------------------------------------------------------------------------------- /SPDIFKA/SPDIFKA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/SPDIFKA.cs -------------------------------------------------------------------------------- /SPDIFKA/SPDIFKA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/SPDIFKA.csproj -------------------------------------------------------------------------------- /SPDIFKA/UserPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/UserPreferences.cs -------------------------------------------------------------------------------- /SPDIFKA/bar-chart-64-green.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/bar-chart-64-green.ico -------------------------------------------------------------------------------- /SPDIFKA/bar-chart-64-red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/bar-chart-64-red.ico -------------------------------------------------------------------------------- /SPDIFKA/media/blank.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/media/blank.wav -------------------------------------------------------------------------------- /SPDIFKA/media/inaudible.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/media/inaudible.wav -------------------------------------------------------------------------------- /SPDIFKA/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/packages.config -------------------------------------------------------------------------------- /SPDIFKA/spdifka-sn-key.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/SPDIFKA/spdifka-sn-key.pfx -------------------------------------------------------------------------------- /screen-captures/spdif-ka_sc1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/screen-captures/spdif-ka_sc1.jpg -------------------------------------------------------------------------------- /screen-captures/spdif-ka_sc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/screen-captures/spdif-ka_sc2.jpg -------------------------------------------------------------------------------- /screen-captures/spdif-ka_sc3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/screen-captures/spdif-ka_sc3.jpg -------------------------------------------------------------------------------- /screen-captures/spdif-ka_sc4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/screen-captures/spdif-ka_sc4.jpg -------------------------------------------------------------------------------- /screen-captures/spdif-ka_sc5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handruin/spdif-ka/HEAD/screen-captures/spdif-ka_sc5.jpg --------------------------------------------------------------------------------