├── .clang-format ├── .github ├── actions │ ├── install-dependencies │ │ ├── action.yml │ │ └── install-dependencies.sh │ └── run-action │ │ ├── action.yml │ │ └── run-action.sh └── workflows │ └── c-cpp.yml ├── .gitignore ├── .mailmap ├── COPYING ├── INSTALL ├── Makefile ├── acinclude.m4 ├── autogen.sh ├── config.h.meson ├── configure.ac ├── extra.mk.in ├── m4 └── buildsys.m4 ├── meson.build ├── meson_options.txt ├── mkrelease.sh ├── po ├── LINGUAS ├── Makefile ├── POTFILES.in ├── af.po ├── ar.po ├── audacious-plugins.pot ├── be.po ├── bg.po ├── ca.po ├── cmn.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en@boldquot.header ├── en@quot.header ├── en_GB.po ├── es.po ├── es_AR.po ├── es_MX.po ├── et.po ├── eu.po ├── fa_IR.po ├── fi.po ├── fr.po ├── gl.po ├── hu.po ├── id_ID.po ├── it.po ├── ja.po ├── ko.po ├── lt.po ├── lv.po ├── meson.build ├── ml_IN.po ├── ms.po ├── nl.po ├── pl.po ├── process-transifex-po ├── pt_BR.po ├── pt_PT.po ├── ro.po ├── ru.po ├── si.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sr_RS.po ├── sv.po ├── ta.po ├── tr.po ├── uk.po ├── update-potfiles.sh ├── uz.po ├── zh_CN.po └── zh_TW.po └── src ├── Makefile ├── aac ├── Makefile ├── aac.cc └── meson.build ├── adplug ├── Makefile ├── adplug-xmms.cc ├── adplug-xmms.h └── meson.build ├── albumart-qt ├── Makefile ├── albumart.cc └── meson.build ├── albumart ├── Makefile ├── albumart.cc └── meson.build ├── alsa ├── Makefile ├── alsa.cc ├── alsa.h ├── config.cc └── meson.build ├── amidiplug ├── Makefile ├── amidi-plug.cc ├── backend-fluidsynth │ └── b-fluidsynth.cc ├── i_backend.h ├── i_configure-fluidsynth.cc ├── i_configure-fluidsynth.h ├── i_configure.cc ├── i_configure.h ├── i_fileinfo.cc ├── i_fileinfo.h ├── i_midi.cc ├── i_midi.h ├── i_midievent.h └── meson.build ├── ampache ├── Makefile ├── ampache.cc └── meson.build ├── aosd ├── Makefile ├── aosd.cc ├── aosd.h ├── aosd_cfg.cc ├── aosd_cfg.h ├── aosd_osd.cc ├── aosd_osd.h ├── aosd_style.cc ├── aosd_style.h ├── aosd_style_private.h ├── aosd_trigger.cc ├── aosd_trigger.h ├── aosd_trigger_private.h ├── aosd_ui.cc ├── ghosd-internal.h ├── ghosd-license ├── ghosd-main.c ├── ghosd.c ├── ghosd.h └── meson.build ├── asx ├── Makefile ├── asx.cc └── meson.build ├── asx3 ├── Makefile ├── asx3.cc └── meson.build ├── audpl ├── Makefile ├── audpl.cc └── meson.build ├── background_music ├── FrameBasedEffectPlugin.h ├── Integrator.h ├── Loudness.h ├── LoudnessFrameProcessor.h ├── Makefile ├── background_music.cc ├── basic_config.h └── meson.build ├── bitcrusher ├── Makefile ├── bitcrusher.cc └── meson.build ├── blur_scope-qt ├── Makefile ├── blur_scope.cc └── meson.build ├── blur_scope ├── Makefile ├── blur_scope.cc └── meson.build ├── bs2b ├── Makefile ├── meson.build └── plugin.cc ├── cairo-spectrum ├── Makefile ├── cairo-spectrum.cc └── meson.build ├── cd-menu-items ├── Makefile ├── cd-menu-items.cc └── meson.build ├── cdaudio ├── Makefile ├── cdaudio-ng.cc └── meson.build ├── compressor ├── Makefile ├── compressor.cc └── meson.build ├── console ├── Audacious_Driver.cc ├── Ay_Apu.cc ├── Ay_Apu.h ├── Ay_Cpu.cc ├── Ay_Cpu.h ├── Ay_Emu.cc ├── Ay_Emu.h ├── Blip_Buffer.cc ├── Blip_Buffer.h ├── Classic_Emu.cc ├── Classic_Emu.h ├── Data_Reader.cc ├── Data_Reader.h ├── Dual_Resampler.cc ├── Dual_Resampler.h ├── Effects_Buffer.cc ├── Effects_Buffer.h ├── Fir_Resampler.cc ├── Fir_Resampler.h ├── Gb_Apu.cc ├── Gb_Apu.h ├── Gb_Cpu.cc ├── Gb_Cpu.h ├── Gb_Oscs.cc ├── Gb_Oscs.h ├── Gbs_Emu.cc ├── Gbs_Emu.h ├── Gme_File.cc ├── Gme_File.h ├── Gym_Emu.cc ├── Gym_Emu.h ├── Gzip_Reader.cc ├── Gzip_Reader.h ├── Hes_Apu.cc ├── Hes_Apu.h ├── Hes_Cpu.cc ├── Hes_Cpu.h ├── Hes_Emu.cc ├── Hes_Emu.h ├── Kss_Cpu.cc ├── Kss_Cpu.h ├── Kss_Emu.cc ├── Kss_Emu.h ├── Kss_Scc_Apu.cc ├── Kss_Scc_Apu.h ├── M3u_Playlist.cc ├── M3u_Playlist.h ├── Makefile ├── Multi_Buffer.cc ├── Multi_Buffer.h ├── Music_Emu.cc ├── Music_Emu.h ├── Nes_Apu.cc ├── Nes_Apu.h ├── Nes_Cpu.cc ├── Nes_Cpu.h ├── Nes_Fme7_Apu.cc ├── Nes_Fme7_Apu.h ├── Nes_Namco_Apu.cc ├── Nes_Namco_Apu.h ├── Nes_Oscs.cc ├── Nes_Oscs.h ├── Nes_Vrc6_Apu.cc ├── Nes_Vrc6_Apu.h ├── Nsf_Emu.cc ├── Nsf_Emu.h ├── Nsfe_Emu.cc ├── Nsfe_Emu.h ├── Sap_Apu.cc ├── Sap_Apu.h ├── Sap_Cpu.cc ├── Sap_Cpu.h ├── Sap_Emu.cc ├── Sap_Emu.h ├── Sms_Apu.cc ├── Sms_Apu.h ├── Sms_Oscs.h ├── Snes_Spc.cc ├── Snes_Spc.h ├── Spc_Cpu.cc ├── Spc_Cpu.h ├── Spc_Dsp.cc ├── Spc_Dsp.h ├── Spc_Emu.cc ├── Spc_Emu.h ├── Spc_Filter.cc ├── Spc_Filter.h ├── Track_Emu.cc ├── Track_Emu.h ├── Vfs_File.cc ├── Vfs_File.h ├── Vgm_Emu.cc ├── Vgm_Emu.h ├── Vgm_Emu_Impl.cc ├── Vgm_Emu_Impl.h ├── Ym2413_Emu.cc ├── Ym2413_Emu.h ├── Ym2612_Emu.cc ├── Ym2612_Emu.h ├── Zlib_Inflater.cc ├── Zlib_Inflater.h ├── blargg_common.h ├── blargg_endian.h ├── blargg_source.h ├── configure.cc ├── configure.h ├── gb_cpu_io.h ├── gme.cc ├── gme.h ├── gme_design.txt ├── gme_notes.txt ├── gme_readme.txt ├── gme_type_list.cc ├── gme_types.h ├── hes_cpu_io.h ├── meson.build ├── nes_cpu_io.h ├── notes.txt ├── plugin.cc ├── plugin.h ├── readme.txt └── sap_cpu_io.h ├── coreaudio ├── Makefile ├── audiodevice.h ├── audiodevice.mm ├── coreaudio.cc └── meson.build ├── crossfade ├── Makefile ├── crossfade.cc └── meson.build ├── crystalizer ├── Makefile ├── crystalizer.cc └── meson.build ├── cue ├── Makefile ├── cue.cc └── meson.build ├── delete-files ├── Makefile ├── delete-files.cc └── meson.build ├── echo_plugin ├── Makefile ├── echo.cc └── meson.build ├── ffaudio ├── Makefile ├── TODO ├── ffaudio-core.cc ├── ffaudio-io.cc ├── ffaudio-stdinc.h └── meson.build ├── filebrowser-qt ├── Makefile ├── filebrowser-qt.cc └── meson.build ├── filewriter ├── Makefile ├── convert.cc ├── convert.h ├── filewriter.cc ├── filewriter.h ├── flac.cc ├── meson.build ├── mp3.cc ├── vorbis.cc └── wav.cc ├── flac ├── Makefile ├── flacng.h ├── meson.build ├── metadata.cc ├── plugin.cc ├── seekable_stream_callbacks.cc └── tools.cc ├── gio ├── Makefile ├── gio.cc └── meson.build ├── glspectrum ├── Makefile ├── gl-spectrum.cc └── meson.build ├── gtkui ├── Makefile ├── columns.cc ├── gtkui.h ├── layout.cc ├── layout.h ├── menu-ops.cc ├── menus.cc ├── meson.build ├── settings.cc ├── ui_gtk.cc ├── ui_infoarea.cc ├── ui_infoarea.h ├── ui_playlist_notebook.cc ├── ui_playlist_notebook.h ├── ui_playlist_widget.cc ├── ui_playlist_widget.h ├── ui_statusbar.cc └── ui_statusbar.h ├── hotkey ├── Makefile ├── grab.cc ├── grab.h ├── gui.cc ├── gui.h ├── meson.build ├── plugin.cc └── plugin.h ├── jack ├── Makefile ├── jack-ng.cc └── meson.build ├── ladspa ├── Makefile ├── effect.cc ├── ladspa.h ├── loaded-list.cc ├── meson.build ├── plugin-list.cc ├── plugin.cc └── plugin.h ├── lirc ├── Makefile ├── lirc.cc └── meson.build ├── lyrics-common ├── chart_lyrics_provider.cc ├── file_provider.cc ├── lrclib_provider.cc ├── lyrics.h ├── lyrics_ovh_provider.cc ├── preferences.h └── utils.cc ├── lyrics-gtk ├── Makefile ├── lyrics-gtk.cc └── meson.build ├── lyrics-qt ├── Makefile ├── lyrics-qt.cc └── meson.build ├── m3u ├── Makefile ├── m3u.cc └── meson.build ├── mac-media-keys ├── MacMediaKeys.mm ├── Makefile ├── SPInvocationGrabbing.h ├── SPInvocationGrabbing.m ├── SPMediaKeyTap.h ├── SPMediaKeyTap.m └── meson.build ├── meson.build ├── metronom ├── Makefile ├── meson.build └── metronom.cc ├── mixer ├── Makefile ├── meson.build └── mixer.cc ├── mms ├── Makefile ├── meson.build └── mms.cc ├── modplug ├── Makefile ├── archive │ ├── arch_raw.cc │ ├── arch_raw.h │ ├── archive.cc │ ├── archive.h │ ├── open.cc │ └── open.h ├── meson.build ├── modplugbmp.cc ├── modplugbmp.h ├── plugin_main.cc └── settings.h ├── mpg123 ├── Makefile ├── meson.build └── mpg123.cc ├── mpris2 ├── Makefile ├── meson.build ├── mpris2-player.xml ├── mpris2.xml └── plugin.cc ├── neon ├── Makefile ├── cert_verification.cc ├── cert_verification.h ├── meson.build └── neon.cc ├── notify ├── Makefile ├── event.cc ├── event.h ├── meson.build ├── notify.cc ├── osd.cc └── osd.h ├── openmpt ├── Makefile ├── meson.build ├── mpt.cc ├── mptwrap.cc └── mptwrap.h ├── opus ├── Makefile ├── meson.build └── opus.cc ├── oss4 ├── Makefile ├── meson.build ├── oss.cc ├── oss.h ├── plugin.cc └── utils.cc ├── pipewire ├── Makefile ├── meson.build └── pipewire.cc ├── playback-history-qt ├── Makefile ├── meson.build └── playback-history.cc ├── playlist-manager-qt ├── Makefile ├── meson.build └── playlist-manager-qt.cc ├── playlist-manager ├── Makefile ├── meson.build └── playlist-manager.cc ├── pls ├── Makefile ├── meson.build └── pls.cc ├── psf ├── Makefile ├── README ├── ao.h ├── corlett.cc ├── corlett.h ├── cpuintrf.h ├── eng_psf.cc ├── eng_psf2.cc ├── eng_spx.cc ├── meson.build ├── osd_cpu.h ├── peops │ ├── License.txt │ ├── adsr.cc │ ├── adsr.h │ ├── dma.cc │ ├── dma.h │ ├── externals.h │ ├── gauss_i.h │ ├── registers.cc │ ├── registers.h │ ├── reverb.cc │ ├── spu.cc │ ├── spu.h │ └── stdafx.h ├── peops2 │ ├── .DS_Store │ ├── License.txt │ ├── adsr.cc │ ├── adsr.h │ ├── dma.cc │ ├── dma.h │ ├── externals.h │ ├── gauss_i.h │ ├── psemuxa.h │ ├── registers.cc │ ├── registers.h │ ├── regs.h │ ├── reverb.cc │ ├── reverb.h │ ├── spu.cc │ ├── spu.h │ ├── stdafx.h │ └── xa.cc ├── plugin.cc ├── psx.cc ├── psx.h └── psx_hw.cc ├── pulse ├── Makefile ├── meson.build └── pulse_audio.cc ├── qt-spectrum ├── Makefile ├── meson.build └── qt-spectrum.cc ├── qtaudio ├── Makefile ├── meson.build └── qtaudio.cc ├── qtglspectrum ├── Makefile ├── gl-spectrum.cc └── meson.build ├── qthotkey ├── Makefile ├── gui.cc ├── gui.h ├── meson.build ├── plugin.cc └── plugin.h ├── qtui ├── Makefile ├── dialogs-qt.cc ├── info_bar.cc ├── info_bar.h ├── main_window.cc ├── main_window.h ├── menu-ops.cc ├── menus.cc ├── menus.h ├── meson.build ├── playlist-qt.cc ├── playlist-qt.h ├── playlist_header.cc ├── playlist_header.h ├── playlist_model.cc ├── playlist_model.h ├── playlist_tabs.cc ├── playlist_tabs.h ├── qtui.cc ├── search_bar.cc ├── search_bar.h ├── settings.cc ├── settings.h ├── status_bar.cc ├── status_bar.h ├── time_slider.cc ├── time_slider.h ├── tool_bar.cc └── tool_bar.h ├── resample ├── Makefile ├── meson.build └── resample.cc ├── scrobbler2 ├── Makefile ├── config_window.cc ├── meson.build ├── scrobbler.cc ├── scrobbler.h ├── scrobbler_communication.cc └── scrobbler_xml_parsing.cc ├── sdlout ├── Makefile ├── meson.build └── sdlout.cc ├── search-tool-qt ├── Makefile ├── html-delegate.cc ├── html-delegate.h ├── library.cc ├── library.h ├── meson.build ├── search-model.cc ├── search-model.h └── search-tool-qt.cc ├── search-tool ├── Makefile ├── library.cc ├── library.h ├── meson.build ├── search-model.cc ├── search-model.h └── search-tool.cc ├── sid ├── Makefile ├── meson.build ├── xmms-sid.cc ├── xmms-sid.h ├── xs_config.cc ├── xs_config.h ├── xs_sidplay2.cc └── xs_sidplay2.h ├── silence-removal ├── Makefile ├── meson.build └── silence-removal.cc ├── skins-data ├── Makefile ├── Skins │ ├── Classic │ │ ├── balance.png │ │ ├── cbuttons.png │ │ ├── eq_ex.png │ │ ├── eqmain.png │ │ ├── main.png │ │ ├── monoster.png │ │ ├── nums_ex.png │ │ ├── playpaus.png │ │ ├── pledit.png │ │ ├── pledit.txt │ │ ├── posbar.png │ │ ├── shufrep.png │ │ ├── skin-classic.hints │ │ ├── skin.hints │ │ ├── text.png │ │ ├── titlebar.png │ │ ├── viscolor.txt │ │ └── volume.png │ ├── Classic1.3 │ │ ├── balance.png │ │ ├── cbuttons.png │ │ ├── eq_ex.png │ │ ├── eqmain.png │ │ ├── main.png │ │ ├── monoster.png │ │ ├── nums_ex.png │ │ ├── playpaus.png │ │ ├── pledit.png │ │ ├── pledit.txt │ │ ├── posbar.png │ │ ├── shufrep.png │ │ ├── skin-classic.hints │ │ ├── skin.hints │ │ ├── text.png │ │ ├── titlebar.png │ │ ├── viscolor.txt │ │ └── volume.png │ ├── Default │ │ ├── cbuttons.png │ │ ├── eq_ex.png │ │ ├── eqmain.png │ │ ├── main.png │ │ ├── monoster.png │ │ ├── nums_ex.png │ │ ├── playpaus.png │ │ ├── pledit.png │ │ ├── pledit.txt │ │ ├── posbar.png │ │ ├── shufrep.png │ │ ├── skin-classic.hints │ │ ├── skin.hints │ │ ├── text.png │ │ ├── titlebar.png │ │ ├── viscolor.txt │ │ └── volume.png │ ├── Glare │ │ ├── balance.png │ │ ├── cbuttons.png │ │ ├── eq_ex.png │ │ ├── eqmain.png │ │ ├── main.png │ │ ├── monoster.png │ │ ├── nums_ex.png │ │ ├── playpaus.png │ │ ├── pledit.png │ │ ├── pledit.txt │ │ ├── posbar.png │ │ ├── readme.txt │ │ ├── shufrep.png │ │ ├── text.png │ │ ├── titlebar.png │ │ ├── viscolor.txt │ │ └── volume.png │ ├── Ivory │ │ ├── balance.png │ │ ├── cbuttons.png │ │ ├── eq_ex.png │ │ ├── eqmain.png │ │ ├── main.png │ │ ├── monoster.png │ │ ├── nums_ex.png │ │ ├── playpaus.png │ │ ├── pledit.png │ │ ├── pledit.txt │ │ ├── posbar.png │ │ ├── shufrep.png │ │ ├── skin.hints │ │ ├── text.png │ │ ├── titlebar.png │ │ ├── viscolor.txt │ │ └── volume.png │ ├── Osmosis │ │ ├── balance.png │ │ ├── cbuttons.png │ │ ├── eq_ex.png │ │ ├── eqmain.png │ │ ├── main.png │ │ ├── monoster.png │ │ ├── nums_ex.png │ │ ├── playpaus.png │ │ ├── pledit.png │ │ ├── pledit.txt │ │ ├── posbar.png │ │ ├── shufrep.png │ │ ├── skin.hints │ │ ├── text.png │ │ ├── titlebar.png │ │ ├── viscolor.txt │ │ └── volume.png │ ├── Refugee │ │ ├── cbuttons.png │ │ ├── eq_ex.png │ │ ├── eqmain.png │ │ ├── main.png │ │ ├── monoster.png │ │ ├── nums_ex.png │ │ ├── playpaus.png │ │ ├── pledit.png │ │ ├── pledit.txt │ │ ├── posbar.png │ │ ├── shufrep.png │ │ ├── skin.hints │ │ ├── text.png │ │ ├── titlebar.png │ │ ├── viscolor.txt │ │ └── volume.png │ ├── TinyPlayer │ │ ├── balance.png │ │ ├── cbuttons.png │ │ ├── eq_ex.png │ │ ├── eqmain.png │ │ ├── main.png │ │ ├── monoster.png │ │ ├── nums_ex.png │ │ ├── playpaus.png │ │ ├── pledit.png │ │ ├── pledit.txt │ │ ├── posbar.png │ │ ├── shufrep.png │ │ ├── skin.hints │ │ ├── text.png │ │ ├── titlebar.png │ │ ├── viscolor.txt │ │ └── volume.png │ └── Winamp2.9 │ │ ├── balance.png │ │ ├── cbuttons.png │ │ ├── eq_ex.png │ │ ├── eqmain.png │ │ ├── main.png │ │ ├── monoster.png │ │ ├── nums_ex.png │ │ ├── playpaus.png │ │ ├── pledit.png │ │ ├── pledit.txt │ │ ├── posbar.png │ │ ├── readme.txt │ │ ├── shufrep.png │ │ ├── text.png │ │ ├── titlebar.png │ │ ├── viscolor.txt │ │ └── volume.png └── meson.build ├── skins-qt ├── Makefile ├── actions-mainwin.h ├── actions-playlist.h ├── actions.cc ├── button.cc ├── button.h ├── dialogs-qt.cc ├── dnd.h ├── dock.cc ├── drag-handle.cc ├── drag-handle.h ├── eq-graph.cc ├── eq-graph.h ├── eq-slider.cc ├── eq-slider.h ├── equalizer.cc ├── equalizer.h ├── hslider.cc ├── hslider.h ├── main.cc ├── main.h ├── menu-ops.cc ├── menurow.cc ├── menurow.h ├── menus.cc ├── menus.h ├── meson.build ├── monostereo.cc ├── monostereo.h ├── number.cc ├── number.h ├── playlist-slider.cc ├── playlist-slider.h ├── playlist-widget.cc ├── playlist-widget.h ├── playlistwin.cc ├── playlistwin.h ├── playstatus.cc ├── playstatus.h ├── plugin-window.cc ├── plugin-window.h ├── plugin.cc ├── plugin.h ├── search-select.cc ├── skin-ini.cc ├── skin.cc ├── skin.h ├── skins_cfg.cc ├── skins_cfg.h ├── skins_util.cc ├── skins_util.h ├── skinselector.cc ├── skinselector.h ├── svis.cc ├── textbox.cc ├── textbox.h ├── view.cc ├── view.h ├── vis-callbacks.cc ├── vis-callbacks.h ├── vis.cc ├── vis.h ├── widget.cc ├── widget.h ├── window.cc └── window.h ├── skins ├── Makefile ├── actions-mainwin.h ├── actions-playlist.h ├── actions.cc ├── button.cc ├── button.h ├── dnd.h ├── dock.cc ├── drag-handle.cc ├── drag-handle.h ├── eq-graph.cc ├── eq-graph.h ├── eq-slider.cc ├── eq-slider.h ├── equalizer.cc ├── equalizer.h ├── hslider.cc ├── hslider.h ├── main.cc ├── main.h ├── menu-ops.cc ├── menurow.cc ├── menurow.h ├── menus.cc ├── menus.h ├── meson.build ├── monostereo.cc ├── monostereo.h ├── number.cc ├── number.h ├── playlist-slider.cc ├── playlist-slider.h ├── playlist-widget.cc ├── playlist-widget.h ├── playlistwin.cc ├── playlistwin.h ├── playstatus.cc ├── playstatus.h ├── plugin-window.cc ├── plugin-window.h ├── plugin.cc ├── plugin.h ├── search-select.cc ├── skin-ini.cc ├── skin.cc ├── skin.h ├── skins_cfg.cc ├── skins_cfg.h ├── skins_util.cc ├── skins_util.h ├── skinselector.cc ├── skinselector.h ├── surface.cc ├── surface.h ├── svis.cc ├── textbox.cc ├── textbox.h ├── view.cc ├── view.h ├── vis-callbacks.cc ├── vis-callbacks.h ├── vis.cc ├── vis.h ├── widget.cc ├── widget.h ├── window.cc └── window.h ├── sndfile ├── Makefile ├── meson.build └── plugin.cc ├── sndio ├── Makefile ├── meson.build └── sndio.cc ├── song-info-qt ├── Makefile ├── meson.build └── song-info.cc ├── songchange ├── Makefile ├── formatter.cc ├── formatter.h ├── meson.build ├── song_change.cc └── songchange_crossplatform.h ├── soxr ├── Makefile ├── meson.build └── sox-resampler.cc ├── speedpitch ├── Makefile ├── meson.build └── speed-pitch.cc ├── statusicon-qt ├── Makefile ├── meson.build └── statusicon.cc ├── statusicon ├── Makefile ├── meson.build └── statusicon.cc ├── stereo_plugin ├── Makefile ├── meson.build └── stereo.cc ├── streamtuner ├── Makefile ├── icecast-model.cc ├── icecast-model.h ├── icecast-widget.cc ├── icecast-widget.h ├── ihr-model.cc ├── ihr-model.h ├── ihr-widget.cc ├── ihr-widget.h ├── meson.build ├── shoutcast-model.cc ├── shoutcast-model.h ├── shoutcast-widget.cc ├── shoutcast-widget.h └── streamtuner.cc ├── tonegen ├── Makefile ├── meson.build └── tonegen.cc ├── ui-common ├── dialogs-qt.cc ├── dialogs-qt.h ├── menu-ops-gtk.cc ├── menu-ops-qt.cc ├── menu-ops.cc ├── menu-ops.h └── qt-compat.h ├── voice_removal ├── Makefile ├── meson.build └── voice_removal.cc ├── vorbis ├── Makefile ├── meson.build ├── vcedit.cc ├── vcedit.h ├── vcupdate.cc ├── vorbis.cc └── vorbis.h ├── vtx ├── Makefile ├── ay8912.cc ├── ayemu_8912.h ├── ayemu_vtxfile.h ├── info.cc ├── lh5dec.cc ├── meson.build ├── vtx.cc ├── vtx.h └── vtxfile.cc ├── vumeter-qt ├── Makefile ├── meson.build ├── vumeter_qt.cc ├── vumeter_qt.h ├── vumeter_qt_widget.cc └── vumeter_qt_widget.h ├── vumeter ├── Makefile ├── meson.build └── vumeter.cc ├── waveout ├── Makefile ├── meson.build └── waveout.cc ├── wavpack ├── Makefile ├── meson.build └── wavpack.cc ├── xsf ├── Makefile ├── XSFFile.cc ├── XSFFile.h ├── desmume │ ├── ARM9.h │ ├── COPYING │ ├── FIFO.cc │ ├── FIFO.h │ ├── MMU.cc │ ├── MMU.h │ ├── MMU_timing.h │ ├── NDSSystem.cc │ ├── NDSSystem.h │ ├── PACKED.h │ ├── PACKED_END.h │ ├── SPU.cc │ ├── SPU.h │ ├── arm_instructions.cc │ ├── arm_instructions.h │ ├── armcpu.cc │ ├── armcpu.h │ ├── bios.cc │ ├── bios.h │ ├── bits.h │ ├── config.h │ ├── cp15.cc │ ├── cp15.h │ ├── debug.h │ ├── dscard.h │ ├── emufile.cc │ ├── emufile.h │ ├── firmware.cc │ ├── firmware.h │ ├── instruction_attributes.h │ ├── instruction_tabdef.inc │ ├── instructions.h │ ├── matrix.h │ ├── mc.cc │ ├── mc.h │ ├── mem.h │ ├── metaspu.cc │ ├── metaspu.h │ ├── readwrite.cc │ ├── readwrite.h │ ├── registers.h │ ├── slot1.cc │ ├── slot1.h │ ├── slot1_retail.cc │ ├── thumb_instructions.cc │ ├── thumb_instructions.h │ ├── thumb_tabdef.inc │ ├── types.h │ └── version.h ├── meson.build ├── plugin.cc ├── sndif2sf.cc ├── sndif2sf.h └── spu │ ├── adpcmdecoder.cc │ ├── adpcmdecoder.h │ ├── interpolator.cc │ ├── interpolator.h │ ├── samplecache.cc │ ├── samplecache.h │ ├── sampledata.cc │ └── sampledata.h └── xspf ├── Makefile ├── meson.build └── xspf.cc /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/.mailmap -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/Makefile -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.h.meson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/config.h.meson -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/configure.ac -------------------------------------------------------------------------------- /extra.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/extra.mk.in -------------------------------------------------------------------------------- /m4/buildsys.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/m4/buildsys.m4 -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/meson_options.txt -------------------------------------------------------------------------------- /mkrelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/mkrelease.sh -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/Makefile -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/af.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/audacious-plugins.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/audacious-plugins.pot -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cmn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/cmn.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en@boldquot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/en@boldquot.header -------------------------------------------------------------------------------- /po/en@quot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/en@quot.header -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/es.po -------------------------------------------------------------------------------- /po/es_AR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/es_AR.po -------------------------------------------------------------------------------- /po/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/es_MX.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa_IR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/fa_IR.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id_ID.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/id_ID.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/ml_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/ml_IN.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/process-transifex-po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/process-transifex-po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr_RS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/sr_RS.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/update-potfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/update-potfiles.sh -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/uz.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/aac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aac/Makefile -------------------------------------------------------------------------------- /src/aac/aac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aac/aac.cc -------------------------------------------------------------------------------- /src/aac/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aac/meson.build -------------------------------------------------------------------------------- /src/adplug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/adplug/Makefile -------------------------------------------------------------------------------- /src/adplug/adplug-xmms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/adplug/adplug-xmms.cc -------------------------------------------------------------------------------- /src/adplug/adplug-xmms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/adplug/adplug-xmms.h -------------------------------------------------------------------------------- /src/adplug/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/adplug/meson.build -------------------------------------------------------------------------------- /src/albumart-qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/albumart-qt/Makefile -------------------------------------------------------------------------------- /src/albumart-qt/albumart.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/albumart-qt/albumart.cc -------------------------------------------------------------------------------- /src/albumart-qt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/albumart-qt/meson.build -------------------------------------------------------------------------------- /src/albumart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/albumart/Makefile -------------------------------------------------------------------------------- /src/albumart/albumart.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/albumart/albumart.cc -------------------------------------------------------------------------------- /src/albumart/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/albumart/meson.build -------------------------------------------------------------------------------- /src/alsa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/alsa/Makefile -------------------------------------------------------------------------------- /src/alsa/alsa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/alsa/alsa.cc -------------------------------------------------------------------------------- /src/alsa/alsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/alsa/alsa.h -------------------------------------------------------------------------------- /src/alsa/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/alsa/config.cc -------------------------------------------------------------------------------- /src/alsa/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/alsa/meson.build -------------------------------------------------------------------------------- /src/amidiplug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/amidiplug/Makefile -------------------------------------------------------------------------------- /src/amidiplug/amidi-plug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/amidiplug/amidi-plug.cc -------------------------------------------------------------------------------- /src/amidiplug/i_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/amidiplug/i_backend.h -------------------------------------------------------------------------------- /src/amidiplug/i_configure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/amidiplug/i_configure.cc -------------------------------------------------------------------------------- /src/amidiplug/i_configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/amidiplug/i_configure.h -------------------------------------------------------------------------------- /src/amidiplug/i_fileinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/amidiplug/i_fileinfo.cc -------------------------------------------------------------------------------- /src/amidiplug/i_fileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/amidiplug/i_fileinfo.h -------------------------------------------------------------------------------- /src/amidiplug/i_midi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/amidiplug/i_midi.cc -------------------------------------------------------------------------------- /src/amidiplug/i_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/amidiplug/i_midi.h -------------------------------------------------------------------------------- /src/amidiplug/i_midievent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/amidiplug/i_midievent.h -------------------------------------------------------------------------------- /src/amidiplug/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/amidiplug/meson.build -------------------------------------------------------------------------------- /src/ampache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ampache/Makefile -------------------------------------------------------------------------------- /src/ampache/ampache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ampache/ampache.cc -------------------------------------------------------------------------------- /src/ampache/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ampache/meson.build -------------------------------------------------------------------------------- /src/aosd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/Makefile -------------------------------------------------------------------------------- /src/aosd/aosd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd.cc -------------------------------------------------------------------------------- /src/aosd/aosd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd.h -------------------------------------------------------------------------------- /src/aosd/aosd_cfg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd_cfg.cc -------------------------------------------------------------------------------- /src/aosd/aosd_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd_cfg.h -------------------------------------------------------------------------------- /src/aosd/aosd_osd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd_osd.cc -------------------------------------------------------------------------------- /src/aosd/aosd_osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd_osd.h -------------------------------------------------------------------------------- /src/aosd/aosd_style.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd_style.cc -------------------------------------------------------------------------------- /src/aosd/aosd_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd_style.h -------------------------------------------------------------------------------- /src/aosd/aosd_style_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd_style_private.h -------------------------------------------------------------------------------- /src/aosd/aosd_trigger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd_trigger.cc -------------------------------------------------------------------------------- /src/aosd/aosd_trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd_trigger.h -------------------------------------------------------------------------------- /src/aosd/aosd_trigger_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd_trigger_private.h -------------------------------------------------------------------------------- /src/aosd/aosd_ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/aosd_ui.cc -------------------------------------------------------------------------------- /src/aosd/ghosd-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/ghosd-internal.h -------------------------------------------------------------------------------- /src/aosd/ghosd-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/ghosd-license -------------------------------------------------------------------------------- /src/aosd/ghosd-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/ghosd-main.c -------------------------------------------------------------------------------- /src/aosd/ghosd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/ghosd.c -------------------------------------------------------------------------------- /src/aosd/ghosd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/ghosd.h -------------------------------------------------------------------------------- /src/aosd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/aosd/meson.build -------------------------------------------------------------------------------- /src/asx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/asx/Makefile -------------------------------------------------------------------------------- /src/asx/asx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/asx/asx.cc -------------------------------------------------------------------------------- /src/asx/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/asx/meson.build -------------------------------------------------------------------------------- /src/asx3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/asx3/Makefile -------------------------------------------------------------------------------- /src/asx3/asx3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/asx3/asx3.cc -------------------------------------------------------------------------------- /src/asx3/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/asx3/meson.build -------------------------------------------------------------------------------- /src/audpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/audpl/Makefile -------------------------------------------------------------------------------- /src/audpl/audpl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/audpl/audpl.cc -------------------------------------------------------------------------------- /src/audpl/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/audpl/meson.build -------------------------------------------------------------------------------- /src/background_music/Integrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/background_music/Integrator.h -------------------------------------------------------------------------------- /src/background_music/Loudness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/background_music/Loudness.h -------------------------------------------------------------------------------- /src/background_music/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/background_music/Makefile -------------------------------------------------------------------------------- /src/background_music/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/background_music/meson.build -------------------------------------------------------------------------------- /src/bitcrusher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/bitcrusher/Makefile -------------------------------------------------------------------------------- /src/bitcrusher/bitcrusher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/bitcrusher/bitcrusher.cc -------------------------------------------------------------------------------- /src/bitcrusher/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/bitcrusher/meson.build -------------------------------------------------------------------------------- /src/blur_scope-qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/blur_scope-qt/Makefile -------------------------------------------------------------------------------- /src/blur_scope-qt/blur_scope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/blur_scope-qt/blur_scope.cc -------------------------------------------------------------------------------- /src/blur_scope-qt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/blur_scope-qt/meson.build -------------------------------------------------------------------------------- /src/blur_scope/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/blur_scope/Makefile -------------------------------------------------------------------------------- /src/blur_scope/blur_scope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/blur_scope/blur_scope.cc -------------------------------------------------------------------------------- /src/blur_scope/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/blur_scope/meson.build -------------------------------------------------------------------------------- /src/bs2b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/bs2b/Makefile -------------------------------------------------------------------------------- /src/bs2b/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/bs2b/meson.build -------------------------------------------------------------------------------- /src/bs2b/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/bs2b/plugin.cc -------------------------------------------------------------------------------- /src/cairo-spectrum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/cairo-spectrum/Makefile -------------------------------------------------------------------------------- /src/cairo-spectrum/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/cairo-spectrum/meson.build -------------------------------------------------------------------------------- /src/cd-menu-items/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/cd-menu-items/Makefile -------------------------------------------------------------------------------- /src/cd-menu-items/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/cd-menu-items/meson.build -------------------------------------------------------------------------------- /src/cdaudio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/cdaudio/Makefile -------------------------------------------------------------------------------- /src/cdaudio/cdaudio-ng.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/cdaudio/cdaudio-ng.cc -------------------------------------------------------------------------------- /src/cdaudio/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/cdaudio/meson.build -------------------------------------------------------------------------------- /src/compressor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/compressor/Makefile -------------------------------------------------------------------------------- /src/compressor/compressor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/compressor/compressor.cc -------------------------------------------------------------------------------- /src/compressor/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/compressor/meson.build -------------------------------------------------------------------------------- /src/console/Audacious_Driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Audacious_Driver.cc -------------------------------------------------------------------------------- /src/console/Ay_Apu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Ay_Apu.cc -------------------------------------------------------------------------------- /src/console/Ay_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Ay_Apu.h -------------------------------------------------------------------------------- /src/console/Ay_Cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Ay_Cpu.cc -------------------------------------------------------------------------------- /src/console/Ay_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Ay_Cpu.h -------------------------------------------------------------------------------- /src/console/Ay_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Ay_Emu.cc -------------------------------------------------------------------------------- /src/console/Ay_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Ay_Emu.h -------------------------------------------------------------------------------- /src/console/Blip_Buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Blip_Buffer.cc -------------------------------------------------------------------------------- /src/console/Blip_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Blip_Buffer.h -------------------------------------------------------------------------------- /src/console/Classic_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Classic_Emu.cc -------------------------------------------------------------------------------- /src/console/Classic_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Classic_Emu.h -------------------------------------------------------------------------------- /src/console/Data_Reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Data_Reader.cc -------------------------------------------------------------------------------- /src/console/Data_Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Data_Reader.h -------------------------------------------------------------------------------- /src/console/Dual_Resampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Dual_Resampler.cc -------------------------------------------------------------------------------- /src/console/Dual_Resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Dual_Resampler.h -------------------------------------------------------------------------------- /src/console/Effects_Buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Effects_Buffer.cc -------------------------------------------------------------------------------- /src/console/Effects_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Effects_Buffer.h -------------------------------------------------------------------------------- /src/console/Fir_Resampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Fir_Resampler.cc -------------------------------------------------------------------------------- /src/console/Fir_Resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Fir_Resampler.h -------------------------------------------------------------------------------- /src/console/Gb_Apu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gb_Apu.cc -------------------------------------------------------------------------------- /src/console/Gb_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gb_Apu.h -------------------------------------------------------------------------------- /src/console/Gb_Cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gb_Cpu.cc -------------------------------------------------------------------------------- /src/console/Gb_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gb_Cpu.h -------------------------------------------------------------------------------- /src/console/Gb_Oscs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gb_Oscs.cc -------------------------------------------------------------------------------- /src/console/Gb_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gb_Oscs.h -------------------------------------------------------------------------------- /src/console/Gbs_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gbs_Emu.cc -------------------------------------------------------------------------------- /src/console/Gbs_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gbs_Emu.h -------------------------------------------------------------------------------- /src/console/Gme_File.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gme_File.cc -------------------------------------------------------------------------------- /src/console/Gme_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gme_File.h -------------------------------------------------------------------------------- /src/console/Gym_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gym_Emu.cc -------------------------------------------------------------------------------- /src/console/Gym_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gym_Emu.h -------------------------------------------------------------------------------- /src/console/Gzip_Reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gzip_Reader.cc -------------------------------------------------------------------------------- /src/console/Gzip_Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Gzip_Reader.h -------------------------------------------------------------------------------- /src/console/Hes_Apu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Hes_Apu.cc -------------------------------------------------------------------------------- /src/console/Hes_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Hes_Apu.h -------------------------------------------------------------------------------- /src/console/Hes_Cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Hes_Cpu.cc -------------------------------------------------------------------------------- /src/console/Hes_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Hes_Cpu.h -------------------------------------------------------------------------------- /src/console/Hes_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Hes_Emu.cc -------------------------------------------------------------------------------- /src/console/Hes_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Hes_Emu.h -------------------------------------------------------------------------------- /src/console/Kss_Cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Kss_Cpu.cc -------------------------------------------------------------------------------- /src/console/Kss_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Kss_Cpu.h -------------------------------------------------------------------------------- /src/console/Kss_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Kss_Emu.cc -------------------------------------------------------------------------------- /src/console/Kss_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Kss_Emu.h -------------------------------------------------------------------------------- /src/console/Kss_Scc_Apu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Kss_Scc_Apu.cc -------------------------------------------------------------------------------- /src/console/Kss_Scc_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Kss_Scc_Apu.h -------------------------------------------------------------------------------- /src/console/M3u_Playlist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/M3u_Playlist.cc -------------------------------------------------------------------------------- /src/console/M3u_Playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/M3u_Playlist.h -------------------------------------------------------------------------------- /src/console/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Makefile -------------------------------------------------------------------------------- /src/console/Multi_Buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Multi_Buffer.cc -------------------------------------------------------------------------------- /src/console/Multi_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Multi_Buffer.h -------------------------------------------------------------------------------- /src/console/Music_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Music_Emu.cc -------------------------------------------------------------------------------- /src/console/Music_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Music_Emu.h -------------------------------------------------------------------------------- /src/console/Nes_Apu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nes_Apu.cc -------------------------------------------------------------------------------- /src/console/Nes_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nes_Apu.h -------------------------------------------------------------------------------- /src/console/Nes_Cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nes_Cpu.cc -------------------------------------------------------------------------------- /src/console/Nes_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nes_Cpu.h -------------------------------------------------------------------------------- /src/console/Nes_Fme7_Apu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nes_Fme7_Apu.cc -------------------------------------------------------------------------------- /src/console/Nes_Fme7_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nes_Fme7_Apu.h -------------------------------------------------------------------------------- /src/console/Nes_Namco_Apu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nes_Namco_Apu.cc -------------------------------------------------------------------------------- /src/console/Nes_Namco_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nes_Namco_Apu.h -------------------------------------------------------------------------------- /src/console/Nes_Oscs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nes_Oscs.cc -------------------------------------------------------------------------------- /src/console/Nes_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nes_Oscs.h -------------------------------------------------------------------------------- /src/console/Nes_Vrc6_Apu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nes_Vrc6_Apu.cc -------------------------------------------------------------------------------- /src/console/Nes_Vrc6_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nes_Vrc6_Apu.h -------------------------------------------------------------------------------- /src/console/Nsf_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nsf_Emu.cc -------------------------------------------------------------------------------- /src/console/Nsf_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nsf_Emu.h -------------------------------------------------------------------------------- /src/console/Nsfe_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nsfe_Emu.cc -------------------------------------------------------------------------------- /src/console/Nsfe_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Nsfe_Emu.h -------------------------------------------------------------------------------- /src/console/Sap_Apu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Sap_Apu.cc -------------------------------------------------------------------------------- /src/console/Sap_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Sap_Apu.h -------------------------------------------------------------------------------- /src/console/Sap_Cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Sap_Cpu.cc -------------------------------------------------------------------------------- /src/console/Sap_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Sap_Cpu.h -------------------------------------------------------------------------------- /src/console/Sap_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Sap_Emu.cc -------------------------------------------------------------------------------- /src/console/Sap_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Sap_Emu.h -------------------------------------------------------------------------------- /src/console/Sms_Apu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Sms_Apu.cc -------------------------------------------------------------------------------- /src/console/Sms_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Sms_Apu.h -------------------------------------------------------------------------------- /src/console/Sms_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Sms_Oscs.h -------------------------------------------------------------------------------- /src/console/Snes_Spc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Snes_Spc.cc -------------------------------------------------------------------------------- /src/console/Snes_Spc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Snes_Spc.h -------------------------------------------------------------------------------- /src/console/Spc_Cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Spc_Cpu.cc -------------------------------------------------------------------------------- /src/console/Spc_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Spc_Cpu.h -------------------------------------------------------------------------------- /src/console/Spc_Dsp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Spc_Dsp.cc -------------------------------------------------------------------------------- /src/console/Spc_Dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Spc_Dsp.h -------------------------------------------------------------------------------- /src/console/Spc_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Spc_Emu.cc -------------------------------------------------------------------------------- /src/console/Spc_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Spc_Emu.h -------------------------------------------------------------------------------- /src/console/Spc_Filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Spc_Filter.cc -------------------------------------------------------------------------------- /src/console/Spc_Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Spc_Filter.h -------------------------------------------------------------------------------- /src/console/Track_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Track_Emu.cc -------------------------------------------------------------------------------- /src/console/Track_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Track_Emu.h -------------------------------------------------------------------------------- /src/console/Vfs_File.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Vfs_File.cc -------------------------------------------------------------------------------- /src/console/Vfs_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Vfs_File.h -------------------------------------------------------------------------------- /src/console/Vgm_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Vgm_Emu.cc -------------------------------------------------------------------------------- /src/console/Vgm_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Vgm_Emu.h -------------------------------------------------------------------------------- /src/console/Vgm_Emu_Impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Vgm_Emu_Impl.cc -------------------------------------------------------------------------------- /src/console/Vgm_Emu_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Vgm_Emu_Impl.h -------------------------------------------------------------------------------- /src/console/Ym2413_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Ym2413_Emu.cc -------------------------------------------------------------------------------- /src/console/Ym2413_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Ym2413_Emu.h -------------------------------------------------------------------------------- /src/console/Ym2612_Emu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Ym2612_Emu.cc -------------------------------------------------------------------------------- /src/console/Ym2612_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Ym2612_Emu.h -------------------------------------------------------------------------------- /src/console/Zlib_Inflater.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Zlib_Inflater.cc -------------------------------------------------------------------------------- /src/console/Zlib_Inflater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/Zlib_Inflater.h -------------------------------------------------------------------------------- /src/console/blargg_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/blargg_common.h -------------------------------------------------------------------------------- /src/console/blargg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/blargg_endian.h -------------------------------------------------------------------------------- /src/console/blargg_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/blargg_source.h -------------------------------------------------------------------------------- /src/console/configure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/configure.cc -------------------------------------------------------------------------------- /src/console/configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/configure.h -------------------------------------------------------------------------------- /src/console/gb_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/gb_cpu_io.h -------------------------------------------------------------------------------- /src/console/gme.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/gme.cc -------------------------------------------------------------------------------- /src/console/gme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/gme.h -------------------------------------------------------------------------------- /src/console/gme_design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/gme_design.txt -------------------------------------------------------------------------------- /src/console/gme_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/gme_notes.txt -------------------------------------------------------------------------------- /src/console/gme_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/gme_readme.txt -------------------------------------------------------------------------------- /src/console/gme_type_list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/gme_type_list.cc -------------------------------------------------------------------------------- /src/console/gme_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/gme_types.h -------------------------------------------------------------------------------- /src/console/hes_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/hes_cpu_io.h -------------------------------------------------------------------------------- /src/console/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/meson.build -------------------------------------------------------------------------------- /src/console/nes_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/nes_cpu_io.h -------------------------------------------------------------------------------- /src/console/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/notes.txt -------------------------------------------------------------------------------- /src/console/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/plugin.cc -------------------------------------------------------------------------------- /src/console/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/plugin.h -------------------------------------------------------------------------------- /src/console/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/readme.txt -------------------------------------------------------------------------------- /src/console/sap_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/console/sap_cpu_io.h -------------------------------------------------------------------------------- /src/coreaudio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/coreaudio/Makefile -------------------------------------------------------------------------------- /src/coreaudio/audiodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/coreaudio/audiodevice.h -------------------------------------------------------------------------------- /src/coreaudio/audiodevice.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/coreaudio/audiodevice.mm -------------------------------------------------------------------------------- /src/coreaudio/coreaudio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/coreaudio/coreaudio.cc -------------------------------------------------------------------------------- /src/coreaudio/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/coreaudio/meson.build -------------------------------------------------------------------------------- /src/crossfade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/crossfade/Makefile -------------------------------------------------------------------------------- /src/crossfade/crossfade.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/crossfade/crossfade.cc -------------------------------------------------------------------------------- /src/crossfade/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/crossfade/meson.build -------------------------------------------------------------------------------- /src/crystalizer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/crystalizer/Makefile -------------------------------------------------------------------------------- /src/crystalizer/crystalizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/crystalizer/crystalizer.cc -------------------------------------------------------------------------------- /src/crystalizer/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/crystalizer/meson.build -------------------------------------------------------------------------------- /src/cue/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/cue/Makefile -------------------------------------------------------------------------------- /src/cue/cue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/cue/cue.cc -------------------------------------------------------------------------------- /src/cue/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/cue/meson.build -------------------------------------------------------------------------------- /src/delete-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/delete-files/Makefile -------------------------------------------------------------------------------- /src/delete-files/delete-files.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/delete-files/delete-files.cc -------------------------------------------------------------------------------- /src/delete-files/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/delete-files/meson.build -------------------------------------------------------------------------------- /src/echo_plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/echo_plugin/Makefile -------------------------------------------------------------------------------- /src/echo_plugin/echo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/echo_plugin/echo.cc -------------------------------------------------------------------------------- /src/echo_plugin/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/echo_plugin/meson.build -------------------------------------------------------------------------------- /src/ffaudio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ffaudio/Makefile -------------------------------------------------------------------------------- /src/ffaudio/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ffaudio/TODO -------------------------------------------------------------------------------- /src/ffaudio/ffaudio-core.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ffaudio/ffaudio-core.cc -------------------------------------------------------------------------------- /src/ffaudio/ffaudio-io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ffaudio/ffaudio-io.cc -------------------------------------------------------------------------------- /src/ffaudio/ffaudio-stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ffaudio/ffaudio-stdinc.h -------------------------------------------------------------------------------- /src/ffaudio/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ffaudio/meson.build -------------------------------------------------------------------------------- /src/filebrowser-qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/filebrowser-qt/Makefile -------------------------------------------------------------------------------- /src/filebrowser-qt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/filebrowser-qt/meson.build -------------------------------------------------------------------------------- /src/filewriter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/filewriter/Makefile -------------------------------------------------------------------------------- /src/filewriter/convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/filewriter/convert.cc -------------------------------------------------------------------------------- /src/filewriter/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/filewriter/convert.h -------------------------------------------------------------------------------- /src/filewriter/filewriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/filewriter/filewriter.cc -------------------------------------------------------------------------------- /src/filewriter/filewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/filewriter/filewriter.h -------------------------------------------------------------------------------- /src/filewriter/flac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/filewriter/flac.cc -------------------------------------------------------------------------------- /src/filewriter/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/filewriter/meson.build -------------------------------------------------------------------------------- /src/filewriter/mp3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/filewriter/mp3.cc -------------------------------------------------------------------------------- /src/filewriter/vorbis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/filewriter/vorbis.cc -------------------------------------------------------------------------------- /src/filewriter/wav.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/filewriter/wav.cc -------------------------------------------------------------------------------- /src/flac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/flac/Makefile -------------------------------------------------------------------------------- /src/flac/flacng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/flac/flacng.h -------------------------------------------------------------------------------- /src/flac/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/flac/meson.build -------------------------------------------------------------------------------- /src/flac/metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/flac/metadata.cc -------------------------------------------------------------------------------- /src/flac/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/flac/plugin.cc -------------------------------------------------------------------------------- /src/flac/tools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/flac/tools.cc -------------------------------------------------------------------------------- /src/gio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gio/Makefile -------------------------------------------------------------------------------- /src/gio/gio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gio/gio.cc -------------------------------------------------------------------------------- /src/gio/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gio/meson.build -------------------------------------------------------------------------------- /src/glspectrum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/glspectrum/Makefile -------------------------------------------------------------------------------- /src/glspectrum/gl-spectrum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/glspectrum/gl-spectrum.cc -------------------------------------------------------------------------------- /src/glspectrum/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/glspectrum/meson.build -------------------------------------------------------------------------------- /src/gtkui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/Makefile -------------------------------------------------------------------------------- /src/gtkui/columns.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/columns.cc -------------------------------------------------------------------------------- /src/gtkui/gtkui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/gtkui.h -------------------------------------------------------------------------------- /src/gtkui/layout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/layout.cc -------------------------------------------------------------------------------- /src/gtkui/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/layout.h -------------------------------------------------------------------------------- /src/gtkui/menu-ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/menu-ops.cc -------------------------------------------------------------------------------- /src/gtkui/menus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/menus.cc -------------------------------------------------------------------------------- /src/gtkui/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/meson.build -------------------------------------------------------------------------------- /src/gtkui/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/settings.cc -------------------------------------------------------------------------------- /src/gtkui/ui_gtk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/ui_gtk.cc -------------------------------------------------------------------------------- /src/gtkui/ui_infoarea.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/ui_infoarea.cc -------------------------------------------------------------------------------- /src/gtkui/ui_infoarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/ui_infoarea.h -------------------------------------------------------------------------------- /src/gtkui/ui_playlist_notebook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/ui_playlist_notebook.cc -------------------------------------------------------------------------------- /src/gtkui/ui_playlist_notebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/ui_playlist_notebook.h -------------------------------------------------------------------------------- /src/gtkui/ui_playlist_widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/ui_playlist_widget.cc -------------------------------------------------------------------------------- /src/gtkui/ui_playlist_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/ui_playlist_widget.h -------------------------------------------------------------------------------- /src/gtkui/ui_statusbar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/ui_statusbar.cc -------------------------------------------------------------------------------- /src/gtkui/ui_statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/gtkui/ui_statusbar.h -------------------------------------------------------------------------------- /src/hotkey/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/hotkey/Makefile -------------------------------------------------------------------------------- /src/hotkey/grab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/hotkey/grab.cc -------------------------------------------------------------------------------- /src/hotkey/grab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/hotkey/grab.h -------------------------------------------------------------------------------- /src/hotkey/gui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/hotkey/gui.cc -------------------------------------------------------------------------------- /src/hotkey/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/hotkey/gui.h -------------------------------------------------------------------------------- /src/hotkey/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/hotkey/meson.build -------------------------------------------------------------------------------- /src/hotkey/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/hotkey/plugin.cc -------------------------------------------------------------------------------- /src/hotkey/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/hotkey/plugin.h -------------------------------------------------------------------------------- /src/jack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/jack/Makefile -------------------------------------------------------------------------------- /src/jack/jack-ng.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/jack/jack-ng.cc -------------------------------------------------------------------------------- /src/jack/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/jack/meson.build -------------------------------------------------------------------------------- /src/ladspa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ladspa/Makefile -------------------------------------------------------------------------------- /src/ladspa/effect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ladspa/effect.cc -------------------------------------------------------------------------------- /src/ladspa/ladspa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ladspa/ladspa.h -------------------------------------------------------------------------------- /src/ladspa/loaded-list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ladspa/loaded-list.cc -------------------------------------------------------------------------------- /src/ladspa/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ladspa/meson.build -------------------------------------------------------------------------------- /src/ladspa/plugin-list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ladspa/plugin-list.cc -------------------------------------------------------------------------------- /src/ladspa/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ladspa/plugin.cc -------------------------------------------------------------------------------- /src/ladspa/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ladspa/plugin.h -------------------------------------------------------------------------------- /src/lirc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/lirc/Makefile -------------------------------------------------------------------------------- /src/lirc/lirc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/lirc/lirc.cc -------------------------------------------------------------------------------- /src/lirc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/lirc/meson.build -------------------------------------------------------------------------------- /src/lyrics-common/lyrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/lyrics-common/lyrics.h -------------------------------------------------------------------------------- /src/lyrics-common/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/lyrics-common/preferences.h -------------------------------------------------------------------------------- /src/lyrics-common/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/lyrics-common/utils.cc -------------------------------------------------------------------------------- /src/lyrics-gtk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/lyrics-gtk/Makefile -------------------------------------------------------------------------------- /src/lyrics-gtk/lyrics-gtk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/lyrics-gtk/lyrics-gtk.cc -------------------------------------------------------------------------------- /src/lyrics-gtk/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/lyrics-gtk/meson.build -------------------------------------------------------------------------------- /src/lyrics-qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/lyrics-qt/Makefile -------------------------------------------------------------------------------- /src/lyrics-qt/lyrics-qt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/lyrics-qt/lyrics-qt.cc -------------------------------------------------------------------------------- /src/lyrics-qt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/lyrics-qt/meson.build -------------------------------------------------------------------------------- /src/m3u/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/m3u/Makefile -------------------------------------------------------------------------------- /src/m3u/m3u.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/m3u/m3u.cc -------------------------------------------------------------------------------- /src/m3u/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/m3u/meson.build -------------------------------------------------------------------------------- /src/mac-media-keys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mac-media-keys/Makefile -------------------------------------------------------------------------------- /src/mac-media-keys/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mac-media-keys/meson.build -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/metronom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/metronom/Makefile -------------------------------------------------------------------------------- /src/metronom/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/metronom/meson.build -------------------------------------------------------------------------------- /src/metronom/metronom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/metronom/metronom.cc -------------------------------------------------------------------------------- /src/mixer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mixer/Makefile -------------------------------------------------------------------------------- /src/mixer/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mixer/meson.build -------------------------------------------------------------------------------- /src/mixer/mixer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mixer/mixer.cc -------------------------------------------------------------------------------- /src/mms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mms/Makefile -------------------------------------------------------------------------------- /src/mms/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mms/meson.build -------------------------------------------------------------------------------- /src/mms/mms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mms/mms.cc -------------------------------------------------------------------------------- /src/modplug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/modplug/Makefile -------------------------------------------------------------------------------- /src/modplug/archive/arch_raw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/modplug/archive/arch_raw.cc -------------------------------------------------------------------------------- /src/modplug/archive/arch_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/modplug/archive/arch_raw.h -------------------------------------------------------------------------------- /src/modplug/archive/archive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/modplug/archive/archive.cc -------------------------------------------------------------------------------- /src/modplug/archive/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/modplug/archive/archive.h -------------------------------------------------------------------------------- /src/modplug/archive/open.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/modplug/archive/open.cc -------------------------------------------------------------------------------- /src/modplug/archive/open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/modplug/archive/open.h -------------------------------------------------------------------------------- /src/modplug/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/modplug/meson.build -------------------------------------------------------------------------------- /src/modplug/modplugbmp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/modplug/modplugbmp.cc -------------------------------------------------------------------------------- /src/modplug/modplugbmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/modplug/modplugbmp.h -------------------------------------------------------------------------------- /src/modplug/plugin_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/modplug/plugin_main.cc -------------------------------------------------------------------------------- /src/modplug/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/modplug/settings.h -------------------------------------------------------------------------------- /src/mpg123/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mpg123/Makefile -------------------------------------------------------------------------------- /src/mpg123/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mpg123/meson.build -------------------------------------------------------------------------------- /src/mpg123/mpg123.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mpg123/mpg123.cc -------------------------------------------------------------------------------- /src/mpris2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mpris2/Makefile -------------------------------------------------------------------------------- /src/mpris2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mpris2/meson.build -------------------------------------------------------------------------------- /src/mpris2/mpris2-player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mpris2/mpris2-player.xml -------------------------------------------------------------------------------- /src/mpris2/mpris2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mpris2/mpris2.xml -------------------------------------------------------------------------------- /src/mpris2/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/mpris2/plugin.cc -------------------------------------------------------------------------------- /src/neon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/neon/Makefile -------------------------------------------------------------------------------- /src/neon/cert_verification.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/neon/cert_verification.cc -------------------------------------------------------------------------------- /src/neon/cert_verification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/neon/cert_verification.h -------------------------------------------------------------------------------- /src/neon/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/neon/meson.build -------------------------------------------------------------------------------- /src/neon/neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/neon/neon.cc -------------------------------------------------------------------------------- /src/notify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/notify/Makefile -------------------------------------------------------------------------------- /src/notify/event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/notify/event.cc -------------------------------------------------------------------------------- /src/notify/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/notify/event.h -------------------------------------------------------------------------------- /src/notify/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/notify/meson.build -------------------------------------------------------------------------------- /src/notify/notify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/notify/notify.cc -------------------------------------------------------------------------------- /src/notify/osd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/notify/osd.cc -------------------------------------------------------------------------------- /src/notify/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/notify/osd.h -------------------------------------------------------------------------------- /src/openmpt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/openmpt/Makefile -------------------------------------------------------------------------------- /src/openmpt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/openmpt/meson.build -------------------------------------------------------------------------------- /src/openmpt/mpt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/openmpt/mpt.cc -------------------------------------------------------------------------------- /src/openmpt/mptwrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/openmpt/mptwrap.cc -------------------------------------------------------------------------------- /src/openmpt/mptwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/openmpt/mptwrap.h -------------------------------------------------------------------------------- /src/opus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/opus/Makefile -------------------------------------------------------------------------------- /src/opus/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/opus/meson.build -------------------------------------------------------------------------------- /src/opus/opus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/opus/opus.cc -------------------------------------------------------------------------------- /src/oss4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/oss4/Makefile -------------------------------------------------------------------------------- /src/oss4/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/oss4/meson.build -------------------------------------------------------------------------------- /src/oss4/oss.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/oss4/oss.cc -------------------------------------------------------------------------------- /src/oss4/oss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/oss4/oss.h -------------------------------------------------------------------------------- /src/oss4/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/oss4/plugin.cc -------------------------------------------------------------------------------- /src/oss4/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/oss4/utils.cc -------------------------------------------------------------------------------- /src/pipewire/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/pipewire/Makefile -------------------------------------------------------------------------------- /src/pipewire/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/pipewire/meson.build -------------------------------------------------------------------------------- /src/pipewire/pipewire.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/pipewire/pipewire.cc -------------------------------------------------------------------------------- /src/playback-history-qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/playback-history-qt/Makefile -------------------------------------------------------------------------------- /src/playlist-manager-qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/playlist-manager-qt/Makefile -------------------------------------------------------------------------------- /src/playlist-manager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/playlist-manager/Makefile -------------------------------------------------------------------------------- /src/playlist-manager/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/playlist-manager/meson.build -------------------------------------------------------------------------------- /src/pls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/pls/Makefile -------------------------------------------------------------------------------- /src/pls/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/pls/meson.build -------------------------------------------------------------------------------- /src/pls/pls.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/pls/pls.cc -------------------------------------------------------------------------------- /src/psf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/Makefile -------------------------------------------------------------------------------- /src/psf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/README -------------------------------------------------------------------------------- /src/psf/ao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/ao.h -------------------------------------------------------------------------------- /src/psf/corlett.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/corlett.cc -------------------------------------------------------------------------------- /src/psf/corlett.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/corlett.h -------------------------------------------------------------------------------- /src/psf/cpuintrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/cpuintrf.h -------------------------------------------------------------------------------- /src/psf/eng_psf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/eng_psf.cc -------------------------------------------------------------------------------- /src/psf/eng_psf2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/eng_psf2.cc -------------------------------------------------------------------------------- /src/psf/eng_spx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/eng_spx.cc -------------------------------------------------------------------------------- /src/psf/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/meson.build -------------------------------------------------------------------------------- /src/psf/osd_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/osd_cpu.h -------------------------------------------------------------------------------- /src/psf/peops/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/License.txt -------------------------------------------------------------------------------- /src/psf/peops/adsr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/adsr.cc -------------------------------------------------------------------------------- /src/psf/peops/adsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/adsr.h -------------------------------------------------------------------------------- /src/psf/peops/dma.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/dma.cc -------------------------------------------------------------------------------- /src/psf/peops/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/dma.h -------------------------------------------------------------------------------- /src/psf/peops/externals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/externals.h -------------------------------------------------------------------------------- /src/psf/peops/gauss_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/gauss_i.h -------------------------------------------------------------------------------- /src/psf/peops/registers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/registers.cc -------------------------------------------------------------------------------- /src/psf/peops/registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/registers.h -------------------------------------------------------------------------------- /src/psf/peops/reverb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/reverb.cc -------------------------------------------------------------------------------- /src/psf/peops/spu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/spu.cc -------------------------------------------------------------------------------- /src/psf/peops/spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/spu.h -------------------------------------------------------------------------------- /src/psf/peops/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops/stdafx.h -------------------------------------------------------------------------------- /src/psf/peops2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/.DS_Store -------------------------------------------------------------------------------- /src/psf/peops2/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/License.txt -------------------------------------------------------------------------------- /src/psf/peops2/adsr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/adsr.cc -------------------------------------------------------------------------------- /src/psf/peops2/adsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/adsr.h -------------------------------------------------------------------------------- /src/psf/peops2/dma.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/dma.cc -------------------------------------------------------------------------------- /src/psf/peops2/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/dma.h -------------------------------------------------------------------------------- /src/psf/peops2/externals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/externals.h -------------------------------------------------------------------------------- /src/psf/peops2/gauss_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/gauss_i.h -------------------------------------------------------------------------------- /src/psf/peops2/psemuxa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/psemuxa.h -------------------------------------------------------------------------------- /src/psf/peops2/registers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/registers.cc -------------------------------------------------------------------------------- /src/psf/peops2/registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/registers.h -------------------------------------------------------------------------------- /src/psf/peops2/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/regs.h -------------------------------------------------------------------------------- /src/psf/peops2/reverb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/reverb.cc -------------------------------------------------------------------------------- /src/psf/peops2/reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/reverb.h -------------------------------------------------------------------------------- /src/psf/peops2/spu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/spu.cc -------------------------------------------------------------------------------- /src/psf/peops2/spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/spu.h -------------------------------------------------------------------------------- /src/psf/peops2/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/stdafx.h -------------------------------------------------------------------------------- /src/psf/peops2/xa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/peops2/xa.cc -------------------------------------------------------------------------------- /src/psf/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/plugin.cc -------------------------------------------------------------------------------- /src/psf/psx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/psx.cc -------------------------------------------------------------------------------- /src/psf/psx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/psx.h -------------------------------------------------------------------------------- /src/psf/psx_hw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/psf/psx_hw.cc -------------------------------------------------------------------------------- /src/pulse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/pulse/Makefile -------------------------------------------------------------------------------- /src/pulse/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/pulse/meson.build -------------------------------------------------------------------------------- /src/pulse/pulse_audio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/pulse/pulse_audio.cc -------------------------------------------------------------------------------- /src/qt-spectrum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qt-spectrum/Makefile -------------------------------------------------------------------------------- /src/qt-spectrum/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qt-spectrum/meson.build -------------------------------------------------------------------------------- /src/qt-spectrum/qt-spectrum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qt-spectrum/qt-spectrum.cc -------------------------------------------------------------------------------- /src/qtaudio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtaudio/Makefile -------------------------------------------------------------------------------- /src/qtaudio/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtaudio/meson.build -------------------------------------------------------------------------------- /src/qtaudio/qtaudio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtaudio/qtaudio.cc -------------------------------------------------------------------------------- /src/qtglspectrum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtglspectrum/Makefile -------------------------------------------------------------------------------- /src/qtglspectrum/gl-spectrum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtglspectrum/gl-spectrum.cc -------------------------------------------------------------------------------- /src/qtglspectrum/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtglspectrum/meson.build -------------------------------------------------------------------------------- /src/qthotkey/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qthotkey/Makefile -------------------------------------------------------------------------------- /src/qthotkey/gui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qthotkey/gui.cc -------------------------------------------------------------------------------- /src/qthotkey/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qthotkey/gui.h -------------------------------------------------------------------------------- /src/qthotkey/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qthotkey/meson.build -------------------------------------------------------------------------------- /src/qthotkey/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qthotkey/plugin.cc -------------------------------------------------------------------------------- /src/qthotkey/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qthotkey/plugin.h -------------------------------------------------------------------------------- /src/qtui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/Makefile -------------------------------------------------------------------------------- /src/qtui/dialogs-qt.cc: -------------------------------------------------------------------------------- 1 | #include "../ui-common/dialogs-qt.cc" 2 | -------------------------------------------------------------------------------- /src/qtui/info_bar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/info_bar.cc -------------------------------------------------------------------------------- /src/qtui/info_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/info_bar.h -------------------------------------------------------------------------------- /src/qtui/main_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/main_window.cc -------------------------------------------------------------------------------- /src/qtui/main_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/main_window.h -------------------------------------------------------------------------------- /src/qtui/menu-ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/menu-ops.cc -------------------------------------------------------------------------------- /src/qtui/menus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/menus.cc -------------------------------------------------------------------------------- /src/qtui/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/menus.h -------------------------------------------------------------------------------- /src/qtui/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/meson.build -------------------------------------------------------------------------------- /src/qtui/playlist-qt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/playlist-qt.cc -------------------------------------------------------------------------------- /src/qtui/playlist-qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/playlist-qt.h -------------------------------------------------------------------------------- /src/qtui/playlist_header.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/playlist_header.cc -------------------------------------------------------------------------------- /src/qtui/playlist_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/playlist_header.h -------------------------------------------------------------------------------- /src/qtui/playlist_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/playlist_model.cc -------------------------------------------------------------------------------- /src/qtui/playlist_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/playlist_model.h -------------------------------------------------------------------------------- /src/qtui/playlist_tabs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/playlist_tabs.cc -------------------------------------------------------------------------------- /src/qtui/playlist_tabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/playlist_tabs.h -------------------------------------------------------------------------------- /src/qtui/qtui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/qtui.cc -------------------------------------------------------------------------------- /src/qtui/search_bar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/search_bar.cc -------------------------------------------------------------------------------- /src/qtui/search_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/search_bar.h -------------------------------------------------------------------------------- /src/qtui/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/settings.cc -------------------------------------------------------------------------------- /src/qtui/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/settings.h -------------------------------------------------------------------------------- /src/qtui/status_bar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/status_bar.cc -------------------------------------------------------------------------------- /src/qtui/status_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/status_bar.h -------------------------------------------------------------------------------- /src/qtui/time_slider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/time_slider.cc -------------------------------------------------------------------------------- /src/qtui/time_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/time_slider.h -------------------------------------------------------------------------------- /src/qtui/tool_bar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/tool_bar.cc -------------------------------------------------------------------------------- /src/qtui/tool_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/qtui/tool_bar.h -------------------------------------------------------------------------------- /src/resample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/resample/Makefile -------------------------------------------------------------------------------- /src/resample/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/resample/meson.build -------------------------------------------------------------------------------- /src/resample/resample.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/resample/resample.cc -------------------------------------------------------------------------------- /src/scrobbler2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/scrobbler2/Makefile -------------------------------------------------------------------------------- /src/scrobbler2/config_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/scrobbler2/config_window.cc -------------------------------------------------------------------------------- /src/scrobbler2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/scrobbler2/meson.build -------------------------------------------------------------------------------- /src/scrobbler2/scrobbler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/scrobbler2/scrobbler.cc -------------------------------------------------------------------------------- /src/scrobbler2/scrobbler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/scrobbler2/scrobbler.h -------------------------------------------------------------------------------- /src/sdlout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sdlout/Makefile -------------------------------------------------------------------------------- /src/sdlout/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sdlout/meson.build -------------------------------------------------------------------------------- /src/sdlout/sdlout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sdlout/sdlout.cc -------------------------------------------------------------------------------- /src/search-tool-qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/search-tool-qt/Makefile -------------------------------------------------------------------------------- /src/search-tool-qt/library.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/search-tool-qt/library.cc -------------------------------------------------------------------------------- /src/search-tool-qt/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/search-tool-qt/library.h -------------------------------------------------------------------------------- /src/search-tool-qt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/search-tool-qt/meson.build -------------------------------------------------------------------------------- /src/search-tool-qt/search-model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/search-tool-qt/search-model.h -------------------------------------------------------------------------------- /src/search-tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/search-tool/Makefile -------------------------------------------------------------------------------- /src/search-tool/library.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/search-tool/library.cc -------------------------------------------------------------------------------- /src/search-tool/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/search-tool/library.h -------------------------------------------------------------------------------- /src/search-tool/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/search-tool/meson.build -------------------------------------------------------------------------------- /src/search-tool/search-model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/search-tool/search-model.cc -------------------------------------------------------------------------------- /src/search-tool/search-model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/search-tool/search-model.h -------------------------------------------------------------------------------- /src/search-tool/search-tool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/search-tool/search-tool.cc -------------------------------------------------------------------------------- /src/sid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sid/Makefile -------------------------------------------------------------------------------- /src/sid/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sid/meson.build -------------------------------------------------------------------------------- /src/sid/xmms-sid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sid/xmms-sid.cc -------------------------------------------------------------------------------- /src/sid/xmms-sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sid/xmms-sid.h -------------------------------------------------------------------------------- /src/sid/xs_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sid/xs_config.cc -------------------------------------------------------------------------------- /src/sid/xs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sid/xs_config.h -------------------------------------------------------------------------------- /src/sid/xs_sidplay2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sid/xs_sidplay2.cc -------------------------------------------------------------------------------- /src/sid/xs_sidplay2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sid/xs_sidplay2.h -------------------------------------------------------------------------------- /src/silence-removal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/silence-removal/Makefile -------------------------------------------------------------------------------- /src/silence-removal/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/silence-removal/meson.build -------------------------------------------------------------------------------- /src/skins-data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-data/Makefile -------------------------------------------------------------------------------- /src/skins-data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-data/meson.build -------------------------------------------------------------------------------- /src/skins-qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/Makefile -------------------------------------------------------------------------------- /src/skins-qt/actions-mainwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/actions-mainwin.h -------------------------------------------------------------------------------- /src/skins-qt/actions-playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/actions-playlist.h -------------------------------------------------------------------------------- /src/skins-qt/actions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/actions.cc -------------------------------------------------------------------------------- /src/skins-qt/button.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/button.cc -------------------------------------------------------------------------------- /src/skins-qt/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/button.h -------------------------------------------------------------------------------- /src/skins-qt/dialogs-qt.cc: -------------------------------------------------------------------------------- 1 | #include "../ui-common/dialogs-qt.cc" 2 | -------------------------------------------------------------------------------- /src/skins-qt/dnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/dnd.h -------------------------------------------------------------------------------- /src/skins-qt/dock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/dock.cc -------------------------------------------------------------------------------- /src/skins-qt/drag-handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/drag-handle.cc -------------------------------------------------------------------------------- /src/skins-qt/drag-handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/drag-handle.h -------------------------------------------------------------------------------- /src/skins-qt/eq-graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/eq-graph.cc -------------------------------------------------------------------------------- /src/skins-qt/eq-graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/eq-graph.h -------------------------------------------------------------------------------- /src/skins-qt/eq-slider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/eq-slider.cc -------------------------------------------------------------------------------- /src/skins-qt/eq-slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/eq-slider.h -------------------------------------------------------------------------------- /src/skins-qt/equalizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/equalizer.cc -------------------------------------------------------------------------------- /src/skins-qt/equalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/equalizer.h -------------------------------------------------------------------------------- /src/skins-qt/hslider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/hslider.cc -------------------------------------------------------------------------------- /src/skins-qt/hslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/hslider.h -------------------------------------------------------------------------------- /src/skins-qt/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/main.cc -------------------------------------------------------------------------------- /src/skins-qt/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/main.h -------------------------------------------------------------------------------- /src/skins-qt/menu-ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/menu-ops.cc -------------------------------------------------------------------------------- /src/skins-qt/menurow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/menurow.cc -------------------------------------------------------------------------------- /src/skins-qt/menurow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/menurow.h -------------------------------------------------------------------------------- /src/skins-qt/menus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/menus.cc -------------------------------------------------------------------------------- /src/skins-qt/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/menus.h -------------------------------------------------------------------------------- /src/skins-qt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/meson.build -------------------------------------------------------------------------------- /src/skins-qt/monostereo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/monostereo.cc -------------------------------------------------------------------------------- /src/skins-qt/monostereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/monostereo.h -------------------------------------------------------------------------------- /src/skins-qt/number.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/number.cc -------------------------------------------------------------------------------- /src/skins-qt/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/number.h -------------------------------------------------------------------------------- /src/skins-qt/playlist-slider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/playlist-slider.cc -------------------------------------------------------------------------------- /src/skins-qt/playlist-slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/playlist-slider.h -------------------------------------------------------------------------------- /src/skins-qt/playlist-widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/playlist-widget.cc -------------------------------------------------------------------------------- /src/skins-qt/playlist-widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/playlist-widget.h -------------------------------------------------------------------------------- /src/skins-qt/playlistwin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/playlistwin.cc -------------------------------------------------------------------------------- /src/skins-qt/playlistwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/playlistwin.h -------------------------------------------------------------------------------- /src/skins-qt/playstatus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/playstatus.cc -------------------------------------------------------------------------------- /src/skins-qt/playstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/playstatus.h -------------------------------------------------------------------------------- /src/skins-qt/plugin-window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/plugin-window.cc -------------------------------------------------------------------------------- /src/skins-qt/plugin-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/plugin-window.h -------------------------------------------------------------------------------- /src/skins-qt/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/plugin.cc -------------------------------------------------------------------------------- /src/skins-qt/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/plugin.h -------------------------------------------------------------------------------- /src/skins-qt/search-select.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/search-select.cc -------------------------------------------------------------------------------- /src/skins-qt/skin-ini.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/skin-ini.cc -------------------------------------------------------------------------------- /src/skins-qt/skin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/skin.cc -------------------------------------------------------------------------------- /src/skins-qt/skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/skin.h -------------------------------------------------------------------------------- /src/skins-qt/skins_cfg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/skins_cfg.cc -------------------------------------------------------------------------------- /src/skins-qt/skins_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/skins_cfg.h -------------------------------------------------------------------------------- /src/skins-qt/skins_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/skins_util.cc -------------------------------------------------------------------------------- /src/skins-qt/skins_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/skins_util.h -------------------------------------------------------------------------------- /src/skins-qt/skinselector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/skinselector.cc -------------------------------------------------------------------------------- /src/skins-qt/skinselector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/skinselector.h -------------------------------------------------------------------------------- /src/skins-qt/svis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/svis.cc -------------------------------------------------------------------------------- /src/skins-qt/textbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/textbox.cc -------------------------------------------------------------------------------- /src/skins-qt/textbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/textbox.h -------------------------------------------------------------------------------- /src/skins-qt/view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/view.cc -------------------------------------------------------------------------------- /src/skins-qt/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/view.h -------------------------------------------------------------------------------- /src/skins-qt/vis-callbacks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/vis-callbacks.cc -------------------------------------------------------------------------------- /src/skins-qt/vis-callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/vis-callbacks.h -------------------------------------------------------------------------------- /src/skins-qt/vis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/vis.cc -------------------------------------------------------------------------------- /src/skins-qt/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/vis.h -------------------------------------------------------------------------------- /src/skins-qt/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/widget.cc -------------------------------------------------------------------------------- /src/skins-qt/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/widget.h -------------------------------------------------------------------------------- /src/skins-qt/window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/window.cc -------------------------------------------------------------------------------- /src/skins-qt/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins-qt/window.h -------------------------------------------------------------------------------- /src/skins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/Makefile -------------------------------------------------------------------------------- /src/skins/actions-mainwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/actions-mainwin.h -------------------------------------------------------------------------------- /src/skins/actions-playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/actions-playlist.h -------------------------------------------------------------------------------- /src/skins/actions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/actions.cc -------------------------------------------------------------------------------- /src/skins/button.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/button.cc -------------------------------------------------------------------------------- /src/skins/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/button.h -------------------------------------------------------------------------------- /src/skins/dnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/dnd.h -------------------------------------------------------------------------------- /src/skins/dock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/dock.cc -------------------------------------------------------------------------------- /src/skins/drag-handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/drag-handle.cc -------------------------------------------------------------------------------- /src/skins/drag-handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/drag-handle.h -------------------------------------------------------------------------------- /src/skins/eq-graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/eq-graph.cc -------------------------------------------------------------------------------- /src/skins/eq-graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/eq-graph.h -------------------------------------------------------------------------------- /src/skins/eq-slider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/eq-slider.cc -------------------------------------------------------------------------------- /src/skins/eq-slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/eq-slider.h -------------------------------------------------------------------------------- /src/skins/equalizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/equalizer.cc -------------------------------------------------------------------------------- /src/skins/equalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/equalizer.h -------------------------------------------------------------------------------- /src/skins/hslider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/hslider.cc -------------------------------------------------------------------------------- /src/skins/hslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/hslider.h -------------------------------------------------------------------------------- /src/skins/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/main.cc -------------------------------------------------------------------------------- /src/skins/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/main.h -------------------------------------------------------------------------------- /src/skins/menu-ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/menu-ops.cc -------------------------------------------------------------------------------- /src/skins/menurow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/menurow.cc -------------------------------------------------------------------------------- /src/skins/menurow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/menurow.h -------------------------------------------------------------------------------- /src/skins/menus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/menus.cc -------------------------------------------------------------------------------- /src/skins/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/menus.h -------------------------------------------------------------------------------- /src/skins/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/meson.build -------------------------------------------------------------------------------- /src/skins/monostereo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/monostereo.cc -------------------------------------------------------------------------------- /src/skins/monostereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/monostereo.h -------------------------------------------------------------------------------- /src/skins/number.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/number.cc -------------------------------------------------------------------------------- /src/skins/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/number.h -------------------------------------------------------------------------------- /src/skins/playlist-slider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/playlist-slider.cc -------------------------------------------------------------------------------- /src/skins/playlist-slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/playlist-slider.h -------------------------------------------------------------------------------- /src/skins/playlist-widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/playlist-widget.cc -------------------------------------------------------------------------------- /src/skins/playlist-widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/playlist-widget.h -------------------------------------------------------------------------------- /src/skins/playlistwin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/playlistwin.cc -------------------------------------------------------------------------------- /src/skins/playlistwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/playlistwin.h -------------------------------------------------------------------------------- /src/skins/playstatus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/playstatus.cc -------------------------------------------------------------------------------- /src/skins/playstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/playstatus.h -------------------------------------------------------------------------------- /src/skins/plugin-window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/plugin-window.cc -------------------------------------------------------------------------------- /src/skins/plugin-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/plugin-window.h -------------------------------------------------------------------------------- /src/skins/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/plugin.cc -------------------------------------------------------------------------------- /src/skins/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/plugin.h -------------------------------------------------------------------------------- /src/skins/search-select.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/search-select.cc -------------------------------------------------------------------------------- /src/skins/skin-ini.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/skin-ini.cc -------------------------------------------------------------------------------- /src/skins/skin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/skin.cc -------------------------------------------------------------------------------- /src/skins/skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/skin.h -------------------------------------------------------------------------------- /src/skins/skins_cfg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/skins_cfg.cc -------------------------------------------------------------------------------- /src/skins/skins_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/skins_cfg.h -------------------------------------------------------------------------------- /src/skins/skins_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/skins_util.cc -------------------------------------------------------------------------------- /src/skins/skins_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/skins_util.h -------------------------------------------------------------------------------- /src/skins/skinselector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/skinselector.cc -------------------------------------------------------------------------------- /src/skins/skinselector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/skinselector.h -------------------------------------------------------------------------------- /src/skins/surface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/surface.cc -------------------------------------------------------------------------------- /src/skins/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/surface.h -------------------------------------------------------------------------------- /src/skins/svis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/svis.cc -------------------------------------------------------------------------------- /src/skins/textbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/textbox.cc -------------------------------------------------------------------------------- /src/skins/textbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/textbox.h -------------------------------------------------------------------------------- /src/skins/view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/view.cc -------------------------------------------------------------------------------- /src/skins/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/view.h -------------------------------------------------------------------------------- /src/skins/vis-callbacks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/vis-callbacks.cc -------------------------------------------------------------------------------- /src/skins/vis-callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/vis-callbacks.h -------------------------------------------------------------------------------- /src/skins/vis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/vis.cc -------------------------------------------------------------------------------- /src/skins/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/vis.h -------------------------------------------------------------------------------- /src/skins/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/widget.cc -------------------------------------------------------------------------------- /src/skins/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/widget.h -------------------------------------------------------------------------------- /src/skins/window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/window.cc -------------------------------------------------------------------------------- /src/skins/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/skins/window.h -------------------------------------------------------------------------------- /src/sndfile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sndfile/Makefile -------------------------------------------------------------------------------- /src/sndfile/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sndfile/meson.build -------------------------------------------------------------------------------- /src/sndfile/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sndfile/plugin.cc -------------------------------------------------------------------------------- /src/sndio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sndio/Makefile -------------------------------------------------------------------------------- /src/sndio/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sndio/meson.build -------------------------------------------------------------------------------- /src/sndio/sndio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/sndio/sndio.cc -------------------------------------------------------------------------------- /src/song-info-qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/song-info-qt/Makefile -------------------------------------------------------------------------------- /src/song-info-qt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/song-info-qt/meson.build -------------------------------------------------------------------------------- /src/song-info-qt/song-info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/song-info-qt/song-info.cc -------------------------------------------------------------------------------- /src/songchange/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/songchange/Makefile -------------------------------------------------------------------------------- /src/songchange/formatter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/songchange/formatter.cc -------------------------------------------------------------------------------- /src/songchange/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/songchange/formatter.h -------------------------------------------------------------------------------- /src/songchange/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/songchange/meson.build -------------------------------------------------------------------------------- /src/songchange/song_change.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/songchange/song_change.cc -------------------------------------------------------------------------------- /src/soxr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/soxr/Makefile -------------------------------------------------------------------------------- /src/soxr/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/soxr/meson.build -------------------------------------------------------------------------------- /src/soxr/sox-resampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/soxr/sox-resampler.cc -------------------------------------------------------------------------------- /src/speedpitch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/speedpitch/Makefile -------------------------------------------------------------------------------- /src/speedpitch/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/speedpitch/meson.build -------------------------------------------------------------------------------- /src/speedpitch/speed-pitch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/speedpitch/speed-pitch.cc -------------------------------------------------------------------------------- /src/statusicon-qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/statusicon-qt/Makefile -------------------------------------------------------------------------------- /src/statusicon-qt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/statusicon-qt/meson.build -------------------------------------------------------------------------------- /src/statusicon-qt/statusicon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/statusicon-qt/statusicon.cc -------------------------------------------------------------------------------- /src/statusicon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/statusicon/Makefile -------------------------------------------------------------------------------- /src/statusicon/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/statusicon/meson.build -------------------------------------------------------------------------------- /src/statusicon/statusicon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/statusicon/statusicon.cc -------------------------------------------------------------------------------- /src/stereo_plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/stereo_plugin/Makefile -------------------------------------------------------------------------------- /src/stereo_plugin/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/stereo_plugin/meson.build -------------------------------------------------------------------------------- /src/stereo_plugin/stereo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/stereo_plugin/stereo.cc -------------------------------------------------------------------------------- /src/streamtuner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/streamtuner/Makefile -------------------------------------------------------------------------------- /src/streamtuner/icecast-model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/streamtuner/icecast-model.h -------------------------------------------------------------------------------- /src/streamtuner/ihr-model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/streamtuner/ihr-model.cc -------------------------------------------------------------------------------- /src/streamtuner/ihr-model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/streamtuner/ihr-model.h -------------------------------------------------------------------------------- /src/streamtuner/ihr-widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/streamtuner/ihr-widget.cc -------------------------------------------------------------------------------- /src/streamtuner/ihr-widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/streamtuner/ihr-widget.h -------------------------------------------------------------------------------- /src/streamtuner/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/streamtuner/meson.build -------------------------------------------------------------------------------- /src/streamtuner/streamtuner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/streamtuner/streamtuner.cc -------------------------------------------------------------------------------- /src/tonegen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/tonegen/Makefile -------------------------------------------------------------------------------- /src/tonegen/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/tonegen/meson.build -------------------------------------------------------------------------------- /src/tonegen/tonegen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/tonegen/tonegen.cc -------------------------------------------------------------------------------- /src/ui-common/dialogs-qt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ui-common/dialogs-qt.cc -------------------------------------------------------------------------------- /src/ui-common/dialogs-qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ui-common/dialogs-qt.h -------------------------------------------------------------------------------- /src/ui-common/menu-ops-gtk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ui-common/menu-ops-gtk.cc -------------------------------------------------------------------------------- /src/ui-common/menu-ops-qt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ui-common/menu-ops-qt.cc -------------------------------------------------------------------------------- /src/ui-common/menu-ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ui-common/menu-ops.cc -------------------------------------------------------------------------------- /src/ui-common/menu-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ui-common/menu-ops.h -------------------------------------------------------------------------------- /src/ui-common/qt-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/ui-common/qt-compat.h -------------------------------------------------------------------------------- /src/voice_removal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/voice_removal/Makefile -------------------------------------------------------------------------------- /src/voice_removal/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/voice_removal/meson.build -------------------------------------------------------------------------------- /src/vorbis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vorbis/Makefile -------------------------------------------------------------------------------- /src/vorbis/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vorbis/meson.build -------------------------------------------------------------------------------- /src/vorbis/vcedit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vorbis/vcedit.cc -------------------------------------------------------------------------------- /src/vorbis/vcedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vorbis/vcedit.h -------------------------------------------------------------------------------- /src/vorbis/vcupdate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vorbis/vcupdate.cc -------------------------------------------------------------------------------- /src/vorbis/vorbis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vorbis/vorbis.cc -------------------------------------------------------------------------------- /src/vorbis/vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vorbis/vorbis.h -------------------------------------------------------------------------------- /src/vtx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vtx/Makefile -------------------------------------------------------------------------------- /src/vtx/ay8912.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vtx/ay8912.cc -------------------------------------------------------------------------------- /src/vtx/ayemu_8912.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vtx/ayemu_8912.h -------------------------------------------------------------------------------- /src/vtx/ayemu_vtxfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vtx/ayemu_vtxfile.h -------------------------------------------------------------------------------- /src/vtx/info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vtx/info.cc -------------------------------------------------------------------------------- /src/vtx/lh5dec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vtx/lh5dec.cc -------------------------------------------------------------------------------- /src/vtx/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vtx/meson.build -------------------------------------------------------------------------------- /src/vtx/vtx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vtx/vtx.cc -------------------------------------------------------------------------------- /src/vtx/vtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vtx/vtx.h -------------------------------------------------------------------------------- /src/vtx/vtxfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vtx/vtxfile.cc -------------------------------------------------------------------------------- /src/vumeter-qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vumeter-qt/Makefile -------------------------------------------------------------------------------- /src/vumeter-qt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vumeter-qt/meson.build -------------------------------------------------------------------------------- /src/vumeter-qt/vumeter_qt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vumeter-qt/vumeter_qt.cc -------------------------------------------------------------------------------- /src/vumeter-qt/vumeter_qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vumeter-qt/vumeter_qt.h -------------------------------------------------------------------------------- /src/vumeter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vumeter/Makefile -------------------------------------------------------------------------------- /src/vumeter/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vumeter/meson.build -------------------------------------------------------------------------------- /src/vumeter/vumeter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/vumeter/vumeter.cc -------------------------------------------------------------------------------- /src/waveout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/waveout/Makefile -------------------------------------------------------------------------------- /src/waveout/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/waveout/meson.build -------------------------------------------------------------------------------- /src/waveout/waveout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/waveout/waveout.cc -------------------------------------------------------------------------------- /src/wavpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/wavpack/Makefile -------------------------------------------------------------------------------- /src/wavpack/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/wavpack/meson.build -------------------------------------------------------------------------------- /src/wavpack/wavpack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/wavpack/wavpack.cc -------------------------------------------------------------------------------- /src/xsf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/Makefile -------------------------------------------------------------------------------- /src/xsf/XSFFile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/XSFFile.cc -------------------------------------------------------------------------------- /src/xsf/XSFFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/XSFFile.h -------------------------------------------------------------------------------- /src/xsf/desmume/ARM9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/ARM9.h -------------------------------------------------------------------------------- /src/xsf/desmume/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/COPYING -------------------------------------------------------------------------------- /src/xsf/desmume/FIFO.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/FIFO.cc -------------------------------------------------------------------------------- /src/xsf/desmume/FIFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/FIFO.h -------------------------------------------------------------------------------- /src/xsf/desmume/MMU.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/MMU.cc -------------------------------------------------------------------------------- /src/xsf/desmume/MMU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/MMU.h -------------------------------------------------------------------------------- /src/xsf/desmume/MMU_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/MMU_timing.h -------------------------------------------------------------------------------- /src/xsf/desmume/NDSSystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/NDSSystem.cc -------------------------------------------------------------------------------- /src/xsf/desmume/NDSSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/NDSSystem.h -------------------------------------------------------------------------------- /src/xsf/desmume/PACKED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/PACKED.h -------------------------------------------------------------------------------- /src/xsf/desmume/PACKED_END.h: -------------------------------------------------------------------------------- 1 | #ifndef __GNUC__ 2 | #pragma pack(pop) 3 | #endif 4 | -------------------------------------------------------------------------------- /src/xsf/desmume/SPU.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/SPU.cc -------------------------------------------------------------------------------- /src/xsf/desmume/SPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/SPU.h -------------------------------------------------------------------------------- /src/xsf/desmume/armcpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/armcpu.cc -------------------------------------------------------------------------------- /src/xsf/desmume/armcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/armcpu.h -------------------------------------------------------------------------------- /src/xsf/desmume/bios.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/bios.cc -------------------------------------------------------------------------------- /src/xsf/desmume/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/bios.h -------------------------------------------------------------------------------- /src/xsf/desmume/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/bits.h -------------------------------------------------------------------------------- /src/xsf/desmume/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/config.h -------------------------------------------------------------------------------- /src/xsf/desmume/cp15.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/cp15.cc -------------------------------------------------------------------------------- /src/xsf/desmume/cp15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/cp15.h -------------------------------------------------------------------------------- /src/xsf/desmume/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/debug.h -------------------------------------------------------------------------------- /src/xsf/desmume/dscard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/dscard.h -------------------------------------------------------------------------------- /src/xsf/desmume/emufile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/emufile.cc -------------------------------------------------------------------------------- /src/xsf/desmume/emufile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/emufile.h -------------------------------------------------------------------------------- /src/xsf/desmume/firmware.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/firmware.cc -------------------------------------------------------------------------------- /src/xsf/desmume/firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/firmware.h -------------------------------------------------------------------------------- /src/xsf/desmume/instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/instructions.h -------------------------------------------------------------------------------- /src/xsf/desmume/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/matrix.h -------------------------------------------------------------------------------- /src/xsf/desmume/mc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/mc.cc -------------------------------------------------------------------------------- /src/xsf/desmume/mc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/mc.h -------------------------------------------------------------------------------- /src/xsf/desmume/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/mem.h -------------------------------------------------------------------------------- /src/xsf/desmume/metaspu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/metaspu.cc -------------------------------------------------------------------------------- /src/xsf/desmume/metaspu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/metaspu.h -------------------------------------------------------------------------------- /src/xsf/desmume/readwrite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/readwrite.cc -------------------------------------------------------------------------------- /src/xsf/desmume/readwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/readwrite.h -------------------------------------------------------------------------------- /src/xsf/desmume/registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/registers.h -------------------------------------------------------------------------------- /src/xsf/desmume/slot1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/slot1.cc -------------------------------------------------------------------------------- /src/xsf/desmume/slot1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/slot1.h -------------------------------------------------------------------------------- /src/xsf/desmume/slot1_retail.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/slot1_retail.cc -------------------------------------------------------------------------------- /src/xsf/desmume/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/types.h -------------------------------------------------------------------------------- /src/xsf/desmume/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/desmume/version.h -------------------------------------------------------------------------------- /src/xsf/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/meson.build -------------------------------------------------------------------------------- /src/xsf/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/plugin.cc -------------------------------------------------------------------------------- /src/xsf/sndif2sf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/sndif2sf.cc -------------------------------------------------------------------------------- /src/xsf/sndif2sf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/sndif2sf.h -------------------------------------------------------------------------------- /src/xsf/spu/adpcmdecoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/spu/adpcmdecoder.cc -------------------------------------------------------------------------------- /src/xsf/spu/adpcmdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/spu/adpcmdecoder.h -------------------------------------------------------------------------------- /src/xsf/spu/interpolator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/spu/interpolator.cc -------------------------------------------------------------------------------- /src/xsf/spu/interpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/spu/interpolator.h -------------------------------------------------------------------------------- /src/xsf/spu/samplecache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/spu/samplecache.cc -------------------------------------------------------------------------------- /src/xsf/spu/samplecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/spu/samplecache.h -------------------------------------------------------------------------------- /src/xsf/spu/sampledata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/spu/sampledata.cc -------------------------------------------------------------------------------- /src/xsf/spu/sampledata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xsf/spu/sampledata.h -------------------------------------------------------------------------------- /src/xspf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xspf/Makefile -------------------------------------------------------------------------------- /src/xspf/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xspf/meson.build -------------------------------------------------------------------------------- /src/xspf/xspf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacious-media-player/audacious-plugins/HEAD/src/xspf/xspf.cc --------------------------------------------------------------------------------