├── AUTHORS ├── COPYING ├── ChangeLog ├── Doxyfile ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── README_equalizer ├── THANKS ├── TODO ├── alsa.c ├── alsa.h ├── audio.c ├── audio.h ├── audio_conversion.c ├── audio_conversion.h ├── audio_helper.c ├── audio_helper.h ├── autogen.sh ├── common.c ├── common.h ├── compat.c ├── compat.h ├── config.example.in ├── config.rpath ├── configure.in ├── decoder.c ├── decoder.h ├── decoder_plugins ├── Makefile.am ├── aac │ ├── Makefile.am │ ├── aac.c │ └── aac.m4 ├── decoders.m4 ├── ffmpeg │ ├── Makefile.am │ ├── ffmpeg.c │ └── ffmpeg.m4 ├── flac │ ├── Makefile.am │ ├── flac.c │ └── flac.m4 ├── modplug │ ├── Makefile.am │ ├── modplug.c │ └── modplug.m4 ├── mp3 │ ├── Makefile.am │ ├── mp3.c │ ├── mp3.m4 │ ├── xing.c │ └── xing.h ├── musepack │ ├── Makefile.am │ ├── musepack.c │ └── musepack.m4 ├── sidplay2 │ ├── Makefile.am │ ├── sidplay2.cc │ ├── sidplay2.h │ └── sidplay2.m4 ├── sndfile │ ├── Makefile.am │ ├── sndfile.c │ └── sndfile.m4 ├── speex │ ├── Makefile.am │ ├── speex.c │ └── speex.m4 ├── timidity │ ├── Makefile.am │ ├── timidity.c │ └── timidity.m4 ├── vorbis │ ├── Makefile.am │ ├── vorbis.c │ └── vorbis.m4 └── wavpack │ ├── Makefile.am │ ├── wavpack.c │ └── wavpack.m4 ├── doxy_pages ├── decoder_api.doxy ├── main_page.doxy └── sound_output_driver_api.doxy ├── equalizer.c ├── equalizer.h ├── fifo_buf.c ├── fifo_buf.h ├── files.c ├── files.h ├── getopt.c ├── getopt1.c ├── gnugetopt.h ├── interface.c ├── interface.h ├── interface_elements.c ├── interface_elements.h ├── io.c ├── io.h ├── io_curl.c ├── io_curl.h ├── jack.c ├── jack.h ├── keymap.example ├── keys.c ├── keys.h ├── lists.c ├── lists.h ├── log.c ├── log.h ├── lyrics.c ├── lyrics.h ├── m4 ├── ax_cflags_gcc_option.m4 ├── ax_check_uname_syscall.m4 ├── ax_compare_version.m4 ├── ax_path_bdb.m4 ├── ax_pthread.m4 ├── lrintf.m4 └── mp_with_curses.m4 ├── main.c ├── md5.c ├── md5.h ├── menu.c ├── menu.h ├── mocp.1 ├── null_out.c ├── null_out.h ├── options.c ├── options.h ├── oss.c ├── oss.h ├── out_buf.c ├── out_buf.h ├── player.c ├── player.h ├── playlist.c ├── playlist.h ├── playlist_file.c ├── playlist_file.h ├── protocol.c ├── protocol.h ├── rbtree.c ├── rbtree.h ├── rcc.c ├── rcc.h ├── server.c ├── server.h ├── sndio_out.c ├── sndio_out.h ├── softmixer.c ├── softmixer.h ├── tags_cache.c ├── tags_cache.h ├── themes.c ├── themes.h ├── themes ├── Makefile.am ├── black_theme ├── darkdot_theme ├── example_theme ├── green_theme ├── moca_theme ├── nightly_theme ├── red_theme ├── transparent-background ├── variant_red_theme └── yellow_red_theme ├── tools ├── README ├── maketests.sh └── md5check.sh ├── utf8.c └── utf8.h /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | See the NEWS file. 2 | -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/Doxyfile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/README -------------------------------------------------------------------------------- /README_equalizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/README_equalizer -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/TODO -------------------------------------------------------------------------------- /alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/alsa.c -------------------------------------------------------------------------------- /alsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/alsa.h -------------------------------------------------------------------------------- /audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/audio.c -------------------------------------------------------------------------------- /audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/audio.h -------------------------------------------------------------------------------- /audio_conversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/audio_conversion.c -------------------------------------------------------------------------------- /audio_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/audio_conversion.h -------------------------------------------------------------------------------- /audio_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/audio_helper.c -------------------------------------------------------------------------------- /audio_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/audio_helper.h -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/autogen.sh -------------------------------------------------------------------------------- /common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/common.c -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/common.h -------------------------------------------------------------------------------- /compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/compat.c -------------------------------------------------------------------------------- /compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/compat.h -------------------------------------------------------------------------------- /config.example.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/config.example.in -------------------------------------------------------------------------------- /config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/config.rpath -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/configure.in -------------------------------------------------------------------------------- /decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder.c -------------------------------------------------------------------------------- /decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder.h -------------------------------------------------------------------------------- /decoder_plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/aac/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/aac/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/aac/aac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/aac/aac.c -------------------------------------------------------------------------------- /decoder_plugins/aac/aac.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/aac/aac.m4 -------------------------------------------------------------------------------- /decoder_plugins/decoders.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/decoders.m4 -------------------------------------------------------------------------------- /decoder_plugins/ffmpeg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/ffmpeg/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/ffmpeg/ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/ffmpeg/ffmpeg.c -------------------------------------------------------------------------------- /decoder_plugins/ffmpeg/ffmpeg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/ffmpeg/ffmpeg.m4 -------------------------------------------------------------------------------- /decoder_plugins/flac/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/flac/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/flac/flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/flac/flac.c -------------------------------------------------------------------------------- /decoder_plugins/flac/flac.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/flac/flac.m4 -------------------------------------------------------------------------------- /decoder_plugins/modplug/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/modplug/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/modplug/modplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/modplug/modplug.c -------------------------------------------------------------------------------- /decoder_plugins/modplug/modplug.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/modplug/modplug.m4 -------------------------------------------------------------------------------- /decoder_plugins/mp3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/mp3/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/mp3/mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/mp3/mp3.c -------------------------------------------------------------------------------- /decoder_plugins/mp3/mp3.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/mp3/mp3.m4 -------------------------------------------------------------------------------- /decoder_plugins/mp3/xing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/mp3/xing.c -------------------------------------------------------------------------------- /decoder_plugins/mp3/xing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/mp3/xing.h -------------------------------------------------------------------------------- /decoder_plugins/musepack/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/musepack/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/musepack/musepack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/musepack/musepack.c -------------------------------------------------------------------------------- /decoder_plugins/musepack/musepack.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/musepack/musepack.m4 -------------------------------------------------------------------------------- /decoder_plugins/sidplay2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/sidplay2/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/sidplay2/sidplay2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/sidplay2/sidplay2.cc -------------------------------------------------------------------------------- /decoder_plugins/sidplay2/sidplay2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/sidplay2/sidplay2.h -------------------------------------------------------------------------------- /decoder_plugins/sidplay2/sidplay2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/sidplay2/sidplay2.m4 -------------------------------------------------------------------------------- /decoder_plugins/sndfile/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/sndfile/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/sndfile/sndfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/sndfile/sndfile.c -------------------------------------------------------------------------------- /decoder_plugins/sndfile/sndfile.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/sndfile/sndfile.m4 -------------------------------------------------------------------------------- /decoder_plugins/speex/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/speex/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/speex/speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/speex/speex.c -------------------------------------------------------------------------------- /decoder_plugins/speex/speex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/speex/speex.m4 -------------------------------------------------------------------------------- /decoder_plugins/timidity/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/timidity/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/timidity/timidity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/timidity/timidity.c -------------------------------------------------------------------------------- /decoder_plugins/timidity/timidity.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/timidity/timidity.m4 -------------------------------------------------------------------------------- /decoder_plugins/vorbis/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/vorbis/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/vorbis/vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/vorbis/vorbis.c -------------------------------------------------------------------------------- /decoder_plugins/vorbis/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/vorbis/vorbis.m4 -------------------------------------------------------------------------------- /decoder_plugins/wavpack/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/wavpack/Makefile.am -------------------------------------------------------------------------------- /decoder_plugins/wavpack/wavpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/wavpack/wavpack.c -------------------------------------------------------------------------------- /decoder_plugins/wavpack/wavpack.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/decoder_plugins/wavpack/wavpack.m4 -------------------------------------------------------------------------------- /doxy_pages/decoder_api.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/doxy_pages/decoder_api.doxy -------------------------------------------------------------------------------- /doxy_pages/main_page.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/doxy_pages/main_page.doxy -------------------------------------------------------------------------------- /doxy_pages/sound_output_driver_api.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/doxy_pages/sound_output_driver_api.doxy -------------------------------------------------------------------------------- /equalizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/equalizer.c -------------------------------------------------------------------------------- /equalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/equalizer.h -------------------------------------------------------------------------------- /fifo_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/fifo_buf.c -------------------------------------------------------------------------------- /fifo_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/fifo_buf.h -------------------------------------------------------------------------------- /files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/files.c -------------------------------------------------------------------------------- /files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/files.h -------------------------------------------------------------------------------- /getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/getopt.c -------------------------------------------------------------------------------- /getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/getopt1.c -------------------------------------------------------------------------------- /gnugetopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/gnugetopt.h -------------------------------------------------------------------------------- /interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/interface.c -------------------------------------------------------------------------------- /interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/interface.h -------------------------------------------------------------------------------- /interface_elements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/interface_elements.c -------------------------------------------------------------------------------- /interface_elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/interface_elements.h -------------------------------------------------------------------------------- /io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/io.c -------------------------------------------------------------------------------- /io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/io.h -------------------------------------------------------------------------------- /io_curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/io_curl.c -------------------------------------------------------------------------------- /io_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/io_curl.h -------------------------------------------------------------------------------- /jack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/jack.c -------------------------------------------------------------------------------- /jack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/jack.h -------------------------------------------------------------------------------- /keymap.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/keymap.example -------------------------------------------------------------------------------- /keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/keys.c -------------------------------------------------------------------------------- /keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/keys.h -------------------------------------------------------------------------------- /lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/lists.c -------------------------------------------------------------------------------- /lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/lists.h -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/log.c -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/log.h -------------------------------------------------------------------------------- /lyrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/lyrics.c -------------------------------------------------------------------------------- /lyrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/lyrics.h -------------------------------------------------------------------------------- /m4/ax_cflags_gcc_option.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/m4/ax_cflags_gcc_option.m4 -------------------------------------------------------------------------------- /m4/ax_check_uname_syscall.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/m4/ax_check_uname_syscall.m4 -------------------------------------------------------------------------------- /m4/ax_compare_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/m4/ax_compare_version.m4 -------------------------------------------------------------------------------- /m4/ax_path_bdb.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/m4/ax_path_bdb.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/lrintf.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/m4/lrintf.m4 -------------------------------------------------------------------------------- /m4/mp_with_curses.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/m4/mp_with_curses.m4 -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/main.c -------------------------------------------------------------------------------- /md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/md5.c -------------------------------------------------------------------------------- /md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/md5.h -------------------------------------------------------------------------------- /menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/menu.c -------------------------------------------------------------------------------- /menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/menu.h -------------------------------------------------------------------------------- /mocp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/mocp.1 -------------------------------------------------------------------------------- /null_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/null_out.c -------------------------------------------------------------------------------- /null_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/null_out.h -------------------------------------------------------------------------------- /options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/options.c -------------------------------------------------------------------------------- /options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/options.h -------------------------------------------------------------------------------- /oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/oss.c -------------------------------------------------------------------------------- /oss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/oss.h -------------------------------------------------------------------------------- /out_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/out_buf.c -------------------------------------------------------------------------------- /out_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/out_buf.h -------------------------------------------------------------------------------- /player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/player.c -------------------------------------------------------------------------------- /player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/player.h -------------------------------------------------------------------------------- /playlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/playlist.c -------------------------------------------------------------------------------- /playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/playlist.h -------------------------------------------------------------------------------- /playlist_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/playlist_file.c -------------------------------------------------------------------------------- /playlist_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/playlist_file.h -------------------------------------------------------------------------------- /protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/protocol.c -------------------------------------------------------------------------------- /protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/protocol.h -------------------------------------------------------------------------------- /rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/rbtree.c -------------------------------------------------------------------------------- /rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/rbtree.h -------------------------------------------------------------------------------- /rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/rcc.c -------------------------------------------------------------------------------- /rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/rcc.h -------------------------------------------------------------------------------- /server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/server.c -------------------------------------------------------------------------------- /server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/server.h -------------------------------------------------------------------------------- /sndio_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/sndio_out.c -------------------------------------------------------------------------------- /sndio_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/sndio_out.h -------------------------------------------------------------------------------- /softmixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/softmixer.c -------------------------------------------------------------------------------- /softmixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/softmixer.h -------------------------------------------------------------------------------- /tags_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/tags_cache.c -------------------------------------------------------------------------------- /tags_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/tags_cache.h -------------------------------------------------------------------------------- /themes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes.c -------------------------------------------------------------------------------- /themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes.h -------------------------------------------------------------------------------- /themes/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes/Makefile.am -------------------------------------------------------------------------------- /themes/black_theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes/black_theme -------------------------------------------------------------------------------- /themes/darkdot_theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes/darkdot_theme -------------------------------------------------------------------------------- /themes/example_theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes/example_theme -------------------------------------------------------------------------------- /themes/green_theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes/green_theme -------------------------------------------------------------------------------- /themes/moca_theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes/moca_theme -------------------------------------------------------------------------------- /themes/nightly_theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes/nightly_theme -------------------------------------------------------------------------------- /themes/red_theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes/red_theme -------------------------------------------------------------------------------- /themes/transparent-background: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes/transparent-background -------------------------------------------------------------------------------- /themes/variant_red_theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes/variant_red_theme -------------------------------------------------------------------------------- /themes/yellow_red_theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/themes/yellow_red_theme -------------------------------------------------------------------------------- /tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/tools/README -------------------------------------------------------------------------------- /tools/maketests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/tools/maketests.sh -------------------------------------------------------------------------------- /tools/md5check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/tools/md5check.sh -------------------------------------------------------------------------------- /utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/utf8.c -------------------------------------------------------------------------------- /utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcoder/mocp/HEAD/utf8.h --------------------------------------------------------------------------------