├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.ac ├── doc ├── Makefile.am ├── README ├── aqualung-doc.css ├── aqualung-doc.dtd ├── aqualung-doc.xml ├── aqualung-latex.xsl ├── aqualung-man.xsl ├── aqualung-xhtml-multipage.xsl ├── aqualung-xhtml-view.xsl ├── aqualung-xhtml.xsl ├── aqualung.1 ├── external.eps ├── external.png ├── jack.png ├── main.png ├── playlist.png ├── settings.png ├── split.sh ├── store.png ├── systray.png ├── timer.eps ├── timer.fig └── timer.png ├── gettext.h ├── ladspa.h ├── po ├── LINGUAS ├── Makevars ├── POTFILES.in ├── README ├── cs.po ├── de.po ├── es.po ├── fr.po ├── hu.po ├── it.po ├── ja.po ├── nl.po ├── pl.po ├── ru.po ├── sv.po ├── uk.po └── zh.po └── src ├── Makefile.am ├── about.c ├── about.h ├── athread.c ├── athread.h ├── build_store.c ├── build_store.h ├── cd_ripper.c ├── cd_ripper.h ├── cdda.c ├── cdda.h ├── cddb_lookup.c ├── cddb_lookup.h ├── common.h ├── core.c ├── core.h ├── cover.c ├── cover.h ├── decoder ├── dec_cdda.c ├── dec_cdda.h ├── dec_flac.c ├── dec_flac.h ├── dec_lavc.c ├── dec_lavc.h ├── dec_mac.cpp ├── dec_mac.h ├── dec_mod.c ├── dec_mod.h ├── dec_mpc.c ├── dec_mpc.h ├── dec_mpeg.c ├── dec_mpeg.h ├── dec_null.c ├── dec_null.h ├── dec_sndfile.c ├── dec_sndfile.h ├── dec_speex.c ├── dec_speex.h ├── dec_vorbis.c ├── dec_vorbis.h ├── dec_wavpack.c ├── dec_wavpack.h ├── file_decoder.c └── file_decoder.h ├── encoder ├── enc_flac.c ├── enc_flac.h ├── enc_lame.c ├── enc_lame.h ├── enc_sndfile.c ├── enc_sndfile.h ├── enc_vorbis.c ├── enc_vorbis.h ├── file_encoder.c └── file_encoder.h ├── export.c ├── export.h ├── ext_lua.c ├── ext_lua.h ├── file_info.c ├── file_info.h ├── gui_main.c ├── gui_main.h ├── httpc.c ├── httpc.h ├── i18n.h ├── ifp_device.c ├── ifp_device.h ├── img ├── appearance.png ├── cdda.png ├── cddb.png ├── drag.png ├── dsp.png ├── general.png ├── icon_16.png ├── icon_24.png ├── icon_32.png ├── icon_48.png ├── icon_64.png ├── inet.png ├── logo.png ├── metadata.png ├── ms-artist.png ├── ms-cdda-disk.png ├── ms-cdda-nodisk.png ├── ms-cdda.png ├── ms-feed.png ├── ms-podcast.png ├── ms-record.png ├── ms-store.png ├── ms-track.png ├── music_store.png ├── playlist.png ├── rva.png ├── tab-close.png └── theme │ ├── dark │ ├── next.png │ ├── pause.png │ ├── play.png │ ├── play_pause.png │ ├── prev.png │ ├── repeat.png │ ├── repeat_all.png │ ├── shuffle.png │ ├── stop.png │ └── theme.css │ └── default │ ├── next.png │ ├── pause.png │ ├── play.png │ ├── play_pause.png │ ├── prev.png │ ├── repeat.png │ ├── repeat_all.png │ ├── shuffle.png │ ├── stop.png │ └── theme.css ├── loop_bar.c ├── loop_bar.h ├── metadata.c ├── metadata.h ├── metadata_ape.c ├── metadata_ape.h ├── metadata_api.c ├── metadata_api.h ├── metadata_flac.c ├── metadata_flac.h ├── metadata_id3v1.c ├── metadata_id3v1.h ├── metadata_id3v2.c ├── metadata_id3v2.h ├── metadata_ogg.c ├── metadata_ogg.h ├── music_browser.c ├── music_browser.h ├── options.c ├── options.h ├── playlist.c ├── playlist.h ├── plugin.c ├── plugin.h ├── podcast.c ├── podcast.h ├── ports.c ├── ports.h ├── rb.c ├── rb.h ├── search.c ├── search.h ├── search_playlist.c ├── search_playlist.h ├── segv.c ├── segv.h ├── store_cdda.c ├── store_cdda.h ├── store_file.c ├── store_file.h ├── store_podcast.c ├── store_podcast.h ├── transceiver.c ├── transceiver.h ├── trashlist.c ├── trashlist.h ├── undef_ac_pkg.h ├── utils.c ├── utils.h ├── utils_gui.c ├── utils_gui.h ├── utils_xml.c ├── utils_xml.h ├── version.h ├── volume.c └── volume.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/README -------------------------------------------------------------------------------- /doc/aqualung-doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/aqualung-doc.css -------------------------------------------------------------------------------- /doc/aqualung-doc.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/aqualung-doc.dtd -------------------------------------------------------------------------------- /doc/aqualung-doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/aqualung-doc.xml -------------------------------------------------------------------------------- /doc/aqualung-latex.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/aqualung-latex.xsl -------------------------------------------------------------------------------- /doc/aqualung-man.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/aqualung-man.xsl -------------------------------------------------------------------------------- /doc/aqualung-xhtml-multipage.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/aqualung-xhtml-multipage.xsl -------------------------------------------------------------------------------- /doc/aqualung-xhtml-view.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/aqualung-xhtml-view.xsl -------------------------------------------------------------------------------- /doc/aqualung-xhtml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/aqualung-xhtml.xsl -------------------------------------------------------------------------------- /doc/aqualung.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/aqualung.1 -------------------------------------------------------------------------------- /doc/external.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/external.eps -------------------------------------------------------------------------------- /doc/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/external.png -------------------------------------------------------------------------------- /doc/jack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/jack.png -------------------------------------------------------------------------------- /doc/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/main.png -------------------------------------------------------------------------------- /doc/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/playlist.png -------------------------------------------------------------------------------- /doc/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/settings.png -------------------------------------------------------------------------------- /doc/split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/split.sh -------------------------------------------------------------------------------- /doc/store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/store.png -------------------------------------------------------------------------------- /doc/systray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/systray.png -------------------------------------------------------------------------------- /doc/timer.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/timer.eps -------------------------------------------------------------------------------- /doc/timer.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/timer.fig -------------------------------------------------------------------------------- /doc/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/doc/timer.png -------------------------------------------------------------------------------- /gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/gettext.h -------------------------------------------------------------------------------- /ladspa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/ladspa.h -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | cs de es fr hu it ja nl pl ru sv uk zh 2 | -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/README -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/po/zh.po -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/about.c -------------------------------------------------------------------------------- /src/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/about.h -------------------------------------------------------------------------------- /src/athread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/athread.c -------------------------------------------------------------------------------- /src/athread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/athread.h -------------------------------------------------------------------------------- /src/build_store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/build_store.c -------------------------------------------------------------------------------- /src/build_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/build_store.h -------------------------------------------------------------------------------- /src/cd_ripper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/cd_ripper.c -------------------------------------------------------------------------------- /src/cd_ripper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/cd_ripper.h -------------------------------------------------------------------------------- /src/cdda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/cdda.c -------------------------------------------------------------------------------- /src/cdda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/cdda.h -------------------------------------------------------------------------------- /src/cddb_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/cddb_lookup.c -------------------------------------------------------------------------------- /src/cddb_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/cddb_lookup.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/common.h -------------------------------------------------------------------------------- /src/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/core.c -------------------------------------------------------------------------------- /src/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/core.h -------------------------------------------------------------------------------- /src/cover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/cover.c -------------------------------------------------------------------------------- /src/cover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/cover.h -------------------------------------------------------------------------------- /src/decoder/dec_cdda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_cdda.c -------------------------------------------------------------------------------- /src/decoder/dec_cdda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_cdda.h -------------------------------------------------------------------------------- /src/decoder/dec_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_flac.c -------------------------------------------------------------------------------- /src/decoder/dec_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_flac.h -------------------------------------------------------------------------------- /src/decoder/dec_lavc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_lavc.c -------------------------------------------------------------------------------- /src/decoder/dec_lavc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_lavc.h -------------------------------------------------------------------------------- /src/decoder/dec_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_mac.cpp -------------------------------------------------------------------------------- /src/decoder/dec_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_mac.h -------------------------------------------------------------------------------- /src/decoder/dec_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_mod.c -------------------------------------------------------------------------------- /src/decoder/dec_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_mod.h -------------------------------------------------------------------------------- /src/decoder/dec_mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_mpc.c -------------------------------------------------------------------------------- /src/decoder/dec_mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_mpc.h -------------------------------------------------------------------------------- /src/decoder/dec_mpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_mpeg.c -------------------------------------------------------------------------------- /src/decoder/dec_mpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_mpeg.h -------------------------------------------------------------------------------- /src/decoder/dec_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_null.c -------------------------------------------------------------------------------- /src/decoder/dec_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_null.h -------------------------------------------------------------------------------- /src/decoder/dec_sndfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_sndfile.c -------------------------------------------------------------------------------- /src/decoder/dec_sndfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_sndfile.h -------------------------------------------------------------------------------- /src/decoder/dec_speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_speex.c -------------------------------------------------------------------------------- /src/decoder/dec_speex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_speex.h -------------------------------------------------------------------------------- /src/decoder/dec_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_vorbis.c -------------------------------------------------------------------------------- /src/decoder/dec_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_vorbis.h -------------------------------------------------------------------------------- /src/decoder/dec_wavpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_wavpack.c -------------------------------------------------------------------------------- /src/decoder/dec_wavpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/dec_wavpack.h -------------------------------------------------------------------------------- /src/decoder/file_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/file_decoder.c -------------------------------------------------------------------------------- /src/decoder/file_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/decoder/file_decoder.h -------------------------------------------------------------------------------- /src/encoder/enc_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/encoder/enc_flac.c -------------------------------------------------------------------------------- /src/encoder/enc_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/encoder/enc_flac.h -------------------------------------------------------------------------------- /src/encoder/enc_lame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/encoder/enc_lame.c -------------------------------------------------------------------------------- /src/encoder/enc_lame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/encoder/enc_lame.h -------------------------------------------------------------------------------- /src/encoder/enc_sndfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/encoder/enc_sndfile.c -------------------------------------------------------------------------------- /src/encoder/enc_sndfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/encoder/enc_sndfile.h -------------------------------------------------------------------------------- /src/encoder/enc_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/encoder/enc_vorbis.c -------------------------------------------------------------------------------- /src/encoder/enc_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/encoder/enc_vorbis.h -------------------------------------------------------------------------------- /src/encoder/file_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/encoder/file_encoder.c -------------------------------------------------------------------------------- /src/encoder/file_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/encoder/file_encoder.h -------------------------------------------------------------------------------- /src/export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/export.c -------------------------------------------------------------------------------- /src/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/export.h -------------------------------------------------------------------------------- /src/ext_lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/ext_lua.c -------------------------------------------------------------------------------- /src/ext_lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/ext_lua.h -------------------------------------------------------------------------------- /src/file_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/file_info.c -------------------------------------------------------------------------------- /src/file_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/file_info.h -------------------------------------------------------------------------------- /src/gui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/gui_main.c -------------------------------------------------------------------------------- /src/gui_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/gui_main.h -------------------------------------------------------------------------------- /src/httpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/httpc.c -------------------------------------------------------------------------------- /src/httpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/httpc.h -------------------------------------------------------------------------------- /src/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/i18n.h -------------------------------------------------------------------------------- /src/ifp_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/ifp_device.c -------------------------------------------------------------------------------- /src/ifp_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/ifp_device.h -------------------------------------------------------------------------------- /src/img/appearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/appearance.png -------------------------------------------------------------------------------- /src/img/cdda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/cdda.png -------------------------------------------------------------------------------- /src/img/cddb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/cddb.png -------------------------------------------------------------------------------- /src/img/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/drag.png -------------------------------------------------------------------------------- /src/img/dsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/dsp.png -------------------------------------------------------------------------------- /src/img/general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/general.png -------------------------------------------------------------------------------- /src/img/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/icon_16.png -------------------------------------------------------------------------------- /src/img/icon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/icon_24.png -------------------------------------------------------------------------------- /src/img/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/icon_32.png -------------------------------------------------------------------------------- /src/img/icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/icon_48.png -------------------------------------------------------------------------------- /src/img/icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/icon_64.png -------------------------------------------------------------------------------- /src/img/inet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/inet.png -------------------------------------------------------------------------------- /src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/logo.png -------------------------------------------------------------------------------- /src/img/metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/metadata.png -------------------------------------------------------------------------------- /src/img/ms-artist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/ms-artist.png -------------------------------------------------------------------------------- /src/img/ms-cdda-disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/ms-cdda-disk.png -------------------------------------------------------------------------------- /src/img/ms-cdda-nodisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/ms-cdda-nodisk.png -------------------------------------------------------------------------------- /src/img/ms-cdda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/ms-cdda.png -------------------------------------------------------------------------------- /src/img/ms-feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/ms-feed.png -------------------------------------------------------------------------------- /src/img/ms-podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/ms-podcast.png -------------------------------------------------------------------------------- /src/img/ms-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/ms-record.png -------------------------------------------------------------------------------- /src/img/ms-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/ms-store.png -------------------------------------------------------------------------------- /src/img/ms-track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/ms-track.png -------------------------------------------------------------------------------- /src/img/music_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/music_store.png -------------------------------------------------------------------------------- /src/img/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/playlist.png -------------------------------------------------------------------------------- /src/img/rva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/rva.png -------------------------------------------------------------------------------- /src/img/tab-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/tab-close.png -------------------------------------------------------------------------------- /src/img/theme/dark/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/dark/next.png -------------------------------------------------------------------------------- /src/img/theme/dark/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/dark/pause.png -------------------------------------------------------------------------------- /src/img/theme/dark/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/dark/play.png -------------------------------------------------------------------------------- /src/img/theme/dark/play_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/dark/play_pause.png -------------------------------------------------------------------------------- /src/img/theme/dark/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/dark/prev.png -------------------------------------------------------------------------------- /src/img/theme/dark/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/dark/repeat.png -------------------------------------------------------------------------------- /src/img/theme/dark/repeat_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/dark/repeat_all.png -------------------------------------------------------------------------------- /src/img/theme/dark/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/dark/shuffle.png -------------------------------------------------------------------------------- /src/img/theme/dark/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/dark/stop.png -------------------------------------------------------------------------------- /src/img/theme/dark/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/dark/theme.css -------------------------------------------------------------------------------- /src/img/theme/default/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/default/next.png -------------------------------------------------------------------------------- /src/img/theme/default/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/default/pause.png -------------------------------------------------------------------------------- /src/img/theme/default/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/default/play.png -------------------------------------------------------------------------------- /src/img/theme/default/play_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/default/play_pause.png -------------------------------------------------------------------------------- /src/img/theme/default/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/default/prev.png -------------------------------------------------------------------------------- /src/img/theme/default/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/default/repeat.png -------------------------------------------------------------------------------- /src/img/theme/default/repeat_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/default/repeat_all.png -------------------------------------------------------------------------------- /src/img/theme/default/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/default/shuffle.png -------------------------------------------------------------------------------- /src/img/theme/default/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/default/stop.png -------------------------------------------------------------------------------- /src/img/theme/default/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/img/theme/default/theme.css -------------------------------------------------------------------------------- /src/loop_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/loop_bar.c -------------------------------------------------------------------------------- /src/loop_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/loop_bar.h -------------------------------------------------------------------------------- /src/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata.c -------------------------------------------------------------------------------- /src/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata.h -------------------------------------------------------------------------------- /src/metadata_ape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata_ape.c -------------------------------------------------------------------------------- /src/metadata_ape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata_ape.h -------------------------------------------------------------------------------- /src/metadata_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata_api.c -------------------------------------------------------------------------------- /src/metadata_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata_api.h -------------------------------------------------------------------------------- /src/metadata_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata_flac.c -------------------------------------------------------------------------------- /src/metadata_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata_flac.h -------------------------------------------------------------------------------- /src/metadata_id3v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata_id3v1.c -------------------------------------------------------------------------------- /src/metadata_id3v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata_id3v1.h -------------------------------------------------------------------------------- /src/metadata_id3v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata_id3v2.c -------------------------------------------------------------------------------- /src/metadata_id3v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata_id3v2.h -------------------------------------------------------------------------------- /src/metadata_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata_ogg.c -------------------------------------------------------------------------------- /src/metadata_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/metadata_ogg.h -------------------------------------------------------------------------------- /src/music_browser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/music_browser.c -------------------------------------------------------------------------------- /src/music_browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/music_browser.h -------------------------------------------------------------------------------- /src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/options.c -------------------------------------------------------------------------------- /src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/options.h -------------------------------------------------------------------------------- /src/playlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/playlist.c -------------------------------------------------------------------------------- /src/playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/playlist.h -------------------------------------------------------------------------------- /src/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/plugin.c -------------------------------------------------------------------------------- /src/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/plugin.h -------------------------------------------------------------------------------- /src/podcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/podcast.c -------------------------------------------------------------------------------- /src/podcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/podcast.h -------------------------------------------------------------------------------- /src/ports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/ports.c -------------------------------------------------------------------------------- /src/ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/ports.h -------------------------------------------------------------------------------- /src/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/rb.c -------------------------------------------------------------------------------- /src/rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/rb.h -------------------------------------------------------------------------------- /src/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/search.c -------------------------------------------------------------------------------- /src/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/search.h -------------------------------------------------------------------------------- /src/search_playlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/search_playlist.c -------------------------------------------------------------------------------- /src/search_playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/search_playlist.h -------------------------------------------------------------------------------- /src/segv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/segv.c -------------------------------------------------------------------------------- /src/segv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/segv.h -------------------------------------------------------------------------------- /src/store_cdda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/store_cdda.c -------------------------------------------------------------------------------- /src/store_cdda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/store_cdda.h -------------------------------------------------------------------------------- /src/store_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/store_file.c -------------------------------------------------------------------------------- /src/store_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/store_file.h -------------------------------------------------------------------------------- /src/store_podcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/store_podcast.c -------------------------------------------------------------------------------- /src/store_podcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/store_podcast.h -------------------------------------------------------------------------------- /src/transceiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/transceiver.c -------------------------------------------------------------------------------- /src/transceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/transceiver.h -------------------------------------------------------------------------------- /src/trashlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/trashlist.c -------------------------------------------------------------------------------- /src/trashlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/trashlist.h -------------------------------------------------------------------------------- /src/undef_ac_pkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/undef_ac_pkg.h -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/utils_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/utils_gui.c -------------------------------------------------------------------------------- /src/utils_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/utils_gui.h -------------------------------------------------------------------------------- /src/utils_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/utils_xml.c -------------------------------------------------------------------------------- /src/utils_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/utils_xml.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- 1 | #define AQUALUNG_VERSION "2.0" 2 | -------------------------------------------------------------------------------- /src/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/volume.c -------------------------------------------------------------------------------- /src/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyevans/aqualung/HEAD/src/volume.h --------------------------------------------------------------------------------