gitextract_ut8lc7lf/ ├── AUTHORS ├── COPYING ├── ChangeLog ├── Doxyfile ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── README.md ├── README_equalizer ├── THANKS ├── TODO ├── alsa.c ├── alsa.h ├── audio.c ├── audio.h ├── audio_conversion.c ├── audio_conversion.h ├── common.c ├── common.h ├── compat.c ├── compat.h ├── compiler.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 ├── 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_c___attribute__.m4 │ ├── ax_cflags_gcc_option.m4 │ ├── ax_compare_version.m4 │ ├── ax_gcc_func_attribute.m4 │ ├── ax_gcc_var_attribute.m4 │ ├── ax_path_bdb.m4 │ ├── ax_pthread.m4 │ ├── ax_require_defined.m4 │ └── ax_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/ │ ├── Makefile.am │ ├── black_theme │ ├── darkdot_theme │ ├── example_theme │ ├── green_theme │ ├── moca_theme │ ├── nightly_theme │ ├── red_theme │ ├── transparent-background │ ├── variant_red_theme │ └── yellow_red_theme ├── themes.c ├── themes.h ├── tools/ │ ├── README │ ├── maketests.sh │ └── md5check.sh ├── utf8.c └── utf8.h