├── .gitignore ├── .gitmodules ├── LICENSE ├── QuintetPlayer.pro ├── QuintetPlayer_ja.qm ├── QuintetPlayer_ja.ts ├── README.md ├── bass └── PLACE BASS HEADERS AND LIBS HERE ├── mainwindow.ui └── src ├── HCAStreamChannel.cpp ├── HCAStreamChannel.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── utils.cpp └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/LICENSE -------------------------------------------------------------------------------- /QuintetPlayer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/QuintetPlayer.pro -------------------------------------------------------------------------------- /QuintetPlayer_ja.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/QuintetPlayer_ja.qm -------------------------------------------------------------------------------- /QuintetPlayer_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/QuintetPlayer_ja.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/README.md -------------------------------------------------------------------------------- /bass/PLACE BASS HEADERS AND LIBS HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /src/HCAStreamChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/src/HCAStreamChannel.cpp -------------------------------------------------------------------------------- /src/HCAStreamChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/src/HCAStreamChannel.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinoMyu/Million-Live-Quintet-Player/HEAD/src/utils.h --------------------------------------------------------------------------------