├── .clang-format ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── id_ed25519.enc └── workflows │ ├── linuxbuild.yml │ ├── linuxdebugbuild.yml │ ├── macbuild.yml │ └── windowsbuild.yml ├── .gitignore ├── .gitmodules ├── .tx └── config ├── .vscode ├── launch.json ├── linux-build ├── settings.json └── tasks.json ├── ABOUT-NLS ├── AUTHORS ├── CONTRIBUTING.md ├── COPYING ├── COPYING.GPLv2 ├── COPYING.LGPLv2.1 ├── ChangeLog ├── ISSUE_TEMPLATE.md ├── Makefile.am ├── NEWS ├── README ├── README.md ├── Tests.mk ├── Tests ├── AlbumNavigationTests.cpp ├── CoreAudioTests.m ├── CuesheetTests.cpp ├── DDBTestInitializer.h ├── DDBTestInitializer.m ├── FormatConversionTests.cpp ├── GoogleTestRunner │ └── GTMGoogleTestRunner.mm ├── GrowableBufferTests.cpp ├── Info.plist ├── JunklibTests.cpp ├── M3UTests.cpp ├── MP3DecoderTests.cpp ├── MP3ParserTests.cpp ├── MediaLibTests.m ├── MetacacheTests.cpp ├── PlaylistTests.cpp ├── PresetManagerData │ └── presets │ │ ├── dsp │ │ └── dsppreset.txt │ │ └── encoders │ │ └── encpreset.txt ├── ResamplerTests.cpp ├── RingBufTests.cpp ├── ScriptableTests.cpp ├── ShellexecTests.cpp ├── StreamerTests.cpp ├── TaggingTests.mm ├── TestData │ ├── AlbumNavigation.csv │ ├── MediaLibrary │ │ └── MultiArtist │ │ │ └── MultipleArtists_NoAlbumArtist.mp3 │ ├── RelativePaths.dbpl │ ├── artist_multiline_apev2.mp3 │ ├── artist_multivalue_apev2.mp3 │ ├── bogus_emb_cue.mp3 │ ├── chirp-1sec.mp3 │ ├── comm_id3v2.3.mp3 │ ├── empty.mp3 │ ├── image+cue │ │ ├── file.cue │ │ └── file.mp3 │ ├── mp3parser │ │ ├── 2sec-square-lamehdr.mp3 │ │ ├── 2sec-square-nolamehdr-garbage.mp3 │ │ ├── 2sec-square-nolamehdr.mp3 │ │ ├── cbr_rhytm_30sec.mp3 │ │ ├── cbr_rhytm_30sec_lamehdr.mp3 │ │ ├── vbr_rhytm_30sec.mp3 │ │ └── vbr_rhytm_30sec_lamehdr.mp3 │ ├── opus.mp4 │ ├── tone1sec_apev2.mp3 │ ├── tone1sec_id3v1.mp3 │ ├── tone1sec_id3v1_apev2.mp3 │ ├── tpe1_multiline.mp3 │ ├── tpe1_multivalue_id3v2.3.mp3 │ ├── tpe1_multivalue_id3v2.4.mp3 │ ├── tpe1_nonprintable_id3v2.mp3 │ ├── trck_num_with_total_id3v2.3.mp3 │ └── txxx_album_artist_id3v2.3.mp3 ├── TitleFormattingTests.cpp ├── TrackSwitchingTests.cpp ├── VfsCurlTests.cpp ├── fakein.c ├── fakein.h ├── fakeout.c ├── fakeout.h ├── gtest-runner.cpp └── testbootstrap.c ├── about.txt ├── acinclude.m4 ├── autogen.sh ├── ci_scripts ├── build.sh ├── download-linux-static-deps.sh ├── id_rsa.enc └── upload.sh ├── configure.ac ├── deadbeef.desktop.in ├── deadbeef_enqueue.desktop.in ├── examples ├── decoder_template.c ├── dsp_template.c └── eventhandler.c ├── external ├── Makefile.am ├── jansson │ └── jansson.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── wcwidth │ ├── wcwidth.c │ └── wcwidth.h ├── gettext.h ├── help.txt ├── icons ├── 1024x1024 │ └── deadbeef.png ├── 128x128 │ └── deadbeef.png ├── 16x16 │ └── deadbeef.png ├── 192x192 │ └── deadbeef.png ├── 22x22 │ └── deadbeef.png ├── 24x24 │ └── deadbeef.png ├── 256x256 │ └── deadbeef.png ├── 32x32 │ └── deadbeef.png ├── 36x36 │ └── deadbeef.png ├── 48x48 │ └── deadbeef.png ├── 512x512 │ └── deadbeef.png ├── 64x64 │ └── deadbeef.png ├── 72x72 │ └── deadbeef.png ├── 96x96 │ └── deadbeef.png ├── Makefile.am ├── deadbeef-icon.rc ├── deadbeef.ico ├── deadbeef.idraw ├── make_png_icons.pl └── scalable │ └── deadbeef.svg ├── images ├── icons_24.png ├── next_24.png ├── pause_16.png ├── pause_24.png ├── play_16.png ├── play_24.png ├── prev_24.png ├── random_24.png └── stop_24.png ├── include └── deadbeef │ ├── common.h │ ├── deadbeef.h │ ├── fastftoi.h │ └── strdupa.h ├── osx ├── Credits.rtf ├── DeaDBeeF GTK2.plist ├── DeaDBeeF GTK3.plist ├── IntegrationTests │ └── ActionTests.m ├── curl_config.h ├── deadbeef.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ ├── IDETemplateMacros.plist │ │ └── xcschemes │ │ ├── DeaDBeeF GTK2.xcscheme │ │ ├── DeaDBeeF GTK3.xcscheme │ │ ├── Integration Tests.xcscheme │ │ ├── Tests.xcscheme │ │ ├── aac.xcscheme │ │ ├── ddb_gui_GTK2.xcscheme │ │ ├── ddbcore.xcscheme │ │ ├── deadbeef.xcscheme │ │ └── googletest.xcscheme ├── libsidplay2_config │ └── config.h └── xcodeconfig │ ├── ApplyVersion.xcconfig │ ├── gtk2.xcconfig │ └── gtk3.xcconfig ├── pixmaps ├── Makefile.am ├── buffering_16.png ├── noartwork.png ├── pause_16.png └── play_16.png ├── plugins ├── aac │ ├── COPYING │ ├── Makefile.am │ ├── aac.c │ ├── aac_decoder_faad2.c │ ├── aac_decoder_faad2.h │ ├── aac_decoder_fdk.c │ ├── aac_decoder_fdk.h │ ├── aac_decoder_protocol.h │ ├── aac_decoder_wrap.c │ ├── aac_parser.c │ └── aac_parser.h ├── adplug │ ├── COPYING │ ├── Makefile.am │ ├── adplug-db.cpp │ ├── adplug │ │ ├── AUTHORS │ │ ├── README │ │ ├── a2m-v2.cpp │ │ ├── a2m-v2.h │ │ ├── a2m.cpp │ │ ├── a2m.h │ │ ├── adl.cpp │ │ ├── adl.h │ │ ├── adlibemu.c │ │ ├── adlibemu.h │ │ ├── adplug.cpp │ │ ├── adplug.h │ │ ├── adtrack.cpp │ │ ├── adtrack.h │ │ ├── amd.cpp │ │ ├── amd.h │ │ ├── analopl.cpp │ │ ├── analopl.h │ │ ├── bam.cpp │ │ ├── bam.h │ │ ├── bmf.cpp │ │ ├── bmf.h │ │ ├── cff.cpp │ │ ├── cff.h │ │ ├── cmf.cpp │ │ ├── cmf.h │ │ ├── cmfmcsop.cpp │ │ ├── cmfmcsop.h │ │ ├── coktel.cpp │ │ ├── coktel.h │ │ ├── composer.cpp │ │ ├── composer.h │ │ ├── d00.cpp │ │ ├── d00.h │ │ ├── database.cpp │ │ ├── database.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── depack.c │ │ ├── depack.h │ │ ├── dfm.cpp │ │ ├── dfm.h │ │ ├── diskopl.cpp │ │ ├── diskopl.h │ │ ├── dmo.cpp │ │ ├── dmo.h │ │ ├── dro.cpp │ │ ├── dro.h │ │ ├── dro2.cpp │ │ ├── dro2.h │ │ ├── dtm.cpp │ │ ├── dtm.h │ │ ├── emuopl.cpp │ │ ├── emuopl.h │ │ ├── flash.cpp │ │ ├── flash.h │ │ ├── fmc.cpp │ │ ├── fmc.h │ │ ├── fmopl.c │ │ ├── fmopl.h │ │ ├── fprovide.cpp │ │ ├── fprovide.h │ │ ├── got.cpp │ │ ├── got.h │ │ ├── herad.cpp │ │ ├── herad.h │ │ ├── hsc.cpp │ │ ├── hsc.h │ │ ├── hsp.cpp │ │ ├── hsp.h │ │ ├── hybrid.cpp │ │ ├── hybrid.h │ │ ├── hyp.cpp │ │ ├── hyp.h │ │ ├── imf.cpp │ │ ├── imf.h │ │ ├── jbm.cpp │ │ ├── jbm.h │ │ ├── kemuopl.cpp │ │ ├── kemuopl.h │ │ ├── ksm.cpp │ │ ├── ksm.h │ │ ├── lds.cpp │ │ ├── lds.h │ │ ├── load_helper.h │ │ ├── mad.cpp │ │ ├── mad.h │ │ ├── mdi.cpp │ │ ├── mdi.h │ │ ├── mid.cpp │ │ ├── mid.h │ │ ├── mididata.h │ │ ├── mkj.cpp │ │ ├── mkj.h │ │ ├── msc.cpp │ │ ├── msc.h │ │ ├── mtk.cpp │ │ ├── mtk.h │ │ ├── mtr.cpp │ │ ├── mtr.h │ │ ├── mus.cpp │ │ ├── mus.h │ │ ├── nemuopl.cpp │ │ ├── nemuopl.h │ │ ├── nukedopl.c │ │ ├── nukedopl.h │ │ ├── opl.h │ │ ├── pch.h │ │ ├── pis.cpp │ │ ├── pis.h │ │ ├── player.cpp │ │ ├── player.h │ │ ├── players.cpp │ │ ├── players.h │ │ ├── protrack.cpp │ │ ├── protrack.h │ │ ├── psi.cpp │ │ ├── psi.h │ │ ├── rad2.cpp │ │ ├── rad2.h │ │ ├── rat.cpp │ │ ├── rat.h │ │ ├── raw.cpp │ │ ├── raw.h │ │ ├── realopl.cpp │ │ ├── realopl.h │ │ ├── rix.cpp │ │ ├── rix.h │ │ ├── rol.cpp │ │ ├── rol.h │ │ ├── s3m.cpp │ │ ├── s3m.h │ │ ├── sa2.cpp │ │ ├── sa2.h │ │ ├── silentopl.h │ │ ├── sixdepack.cpp │ │ ├── sixdepack.h │ │ ├── sng.cpp │ │ ├── sng.h │ │ ├── sop.cpp │ │ ├── sop.h │ │ ├── strnlen.h │ │ ├── surroundopl.cpp │ │ ├── surroundopl.h │ │ ├── temuopl.cpp │ │ ├── temuopl.h │ │ ├── u6m.cpp │ │ ├── u6m.h │ │ ├── unlzh.c │ │ ├── unlzh.h │ │ ├── unlzss.c │ │ ├── unlzss.h │ │ ├── unlzw.c │ │ ├── unlzw.h │ │ ├── version.h │ │ ├── vgm.cpp │ │ ├── vgm.h │ │ ├── wemuopl.h │ │ ├── woodyopl.cpp │ │ ├── woodyopl.h │ │ ├── xad.cpp │ │ ├── xad.h │ │ ├── xsm.cpp │ │ └── xsm.h │ ├── libbinio │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── binfile.cpp │ │ ├── binfile.h │ │ ├── binio.cpp │ │ ├── binio.h │ │ ├── binstr.cpp │ │ ├── binstr.h │ │ ├── binwrap.cpp │ │ └── binwrap.h │ └── plugin.c ├── alac │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── alac.c │ ├── alac_plugin.c │ ├── decomp.h │ └── stdint_win.h ├── alsa │ ├── COPYING │ ├── Makefile.am │ └── alsa.c ├── artwork │ ├── COPYING │ ├── Makefile.am │ ├── albumartorg.c │ ├── albumartorg.h │ ├── artwork.c │ ├── artwork.h │ ├── artwork_flac.c │ ├── artwork_flac.h │ ├── artwork_internal.c │ ├── artwork_internal.h │ ├── artwork_ogg.c │ ├── artwork_ogg.h │ ├── artwork_opus.c │ ├── artwork_opus.h │ ├── base64.c │ ├── base64.h │ ├── cache.c │ ├── cache.h │ ├── coverinfo.c │ ├── coverinfo.h │ ├── escape.c │ ├── escape.h │ ├── lastfm.c │ ├── lastfm.h │ ├── musicbrainz.c │ ├── musicbrainz.h │ ├── ogg_shared.c │ ├── ogg_shared.h │ ├── wos.c │ └── wos.h ├── cdda │ ├── COPYING │ ├── Makefile.am │ └── cdda.c ├── cocoaui │ ├── .clang-format │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── AppIcon.icon │ │ ├── Assets │ │ │ ├── frame.svg │ │ │ └── logo.svg │ │ └── icon.json │ ├── ConverterWindowController.h │ ├── ConverterWindowController.m │ ├── CoverManager.h │ ├── CoverManager.m │ ├── DdbTabStrip │ │ ├── DdbTabStrip.h │ │ ├── DdbTabStrip.m │ │ ├── DdbTabStripViewController.h │ │ ├── DdbTabStripViewController.m │ │ └── DdbTabStripViewController.xib │ ├── DesignMode │ │ ├── DesignModeDefs.h │ │ ├── DesignModeDeps.h │ │ ├── DesignModeDeps.m │ │ ├── DesignModeEventHandler.h │ │ ├── DesignModeEventHandler.m │ │ ├── DesignModeState.h │ │ ├── DesignModeState.m │ │ ├── WidgetBase.h │ │ ├── WidgetBase.m │ │ ├── WidgetFactory.h │ │ ├── WidgetFactory.m │ │ ├── WidgetMenuBuilder.h │ │ ├── WidgetMenuBuilder.m │ │ ├── WidgetSerializer.h │ │ ├── WidgetSerializer.m │ │ ├── WidgetTopLevelView.h │ │ ├── WidgetTopLevelView.m │ │ └── Widgets │ │ │ ├── AlbumArt │ │ │ ├── AlbumArtWidget.h │ │ │ ├── AlbumArtWidget.m │ │ │ ├── AlbumArtWidgetViewController.h │ │ │ └── AlbumArtWidgetViewController.m │ │ │ ├── ChiptuneVoices │ │ │ ├── ChiptuneVoicesViewController.h │ │ │ ├── ChiptuneVoicesViewController.m │ │ │ ├── ChiptuneVoicesViewController.xib │ │ │ ├── ChiptuneVoicesWidget.h │ │ │ └── ChiptuneVoicesWidget.m │ │ │ ├── HolderWidget.h │ │ │ ├── HolderWidget.m │ │ │ ├── Lyrics │ │ │ ├── LyricsViewController.h │ │ │ ├── LyricsViewController.m │ │ │ ├── LyricsViewController.xib │ │ │ ├── LyricsWidget.h │ │ │ └── LyricsWidget.m │ │ │ ├── PlaceholderWidget.h │ │ │ ├── PlaceholderWidget.m │ │ │ ├── PlaylistBrowser │ │ │ ├── PlaylistBrowserViewController.h │ │ │ ├── PlaylistBrowserViewController.m │ │ │ └── PlaylistBrowserViewController.xib │ │ │ ├── PlaylistBrowserWidget.h │ │ │ ├── PlaylistBrowserWidget.m │ │ │ ├── PlaylistWidget.h │ │ │ ├── PlaylistWidget.m │ │ │ ├── PlaylistWithTabsWidget.h │ │ │ ├── PlaylistWithTabsWidget.m │ │ │ ├── ScopeWidget.h │ │ │ ├── ScopeWidget.m │ │ │ ├── SelectionPropertiesWidget.h │ │ │ ├── SelectionPropertiesWidget.m │ │ │ ├── SpectrumAnalyzerWidget.h │ │ │ ├── SpectrumAnalyzerWidget.m │ │ │ ├── SplitterWidget.h │ │ │ ├── SplitterWidget.m │ │ │ └── Tabs │ │ │ ├── RenameTabViewController.h │ │ │ ├── RenameTabViewController.m │ │ │ ├── RenameTabViewController.xib │ │ │ ├── TabsWidget.h │ │ │ └── TabsWidget.m │ ├── EditColumnWindowController.h │ ├── EditColumnWindowController.m │ ├── EqualizerWindowController.h │ ├── EqualizerWindowController.m │ ├── GroupByCustomWindowController.h │ ├── GroupByCustomWindowController.m │ ├── HelpWindowController.h │ ├── HelpWindowController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── deadbeef-1.png │ │ │ ├── deadbeef-2.png │ │ │ ├── deadbeef-3.png │ │ │ ├── deadbeef-4.png │ │ │ ├── deadbeef-5.png │ │ │ ├── deadbeef-6.png │ │ │ ├── deadbeef-7.png │ │ │ ├── deadbeef-8.png │ │ │ ├── deadbeef-9.png │ │ │ └── deadbeef.png │ │ └── Contents.json │ ├── KeyboardShortcuts │ │ ├── KeyboardShortcutConverter.h │ │ ├── KeyboardShortcutConverter.m │ │ ├── KeyboardShortcutEditorViewController.h │ │ ├── KeyboardShortcutEditorViewController.m │ │ ├── KeyboardShortcutEditorViewController.xib │ │ ├── KeyboardShortcutEditorWindowController.h │ │ ├── KeyboardShortcutEditorWindowController.m │ │ ├── KeyboardShortcutEditorWindowController.xib │ │ ├── KeyboardShortcutManager+ViewController.h │ │ ├── KeyboardShortcutManager.h │ │ ├── KeyboardShortcutManager.m │ │ ├── KeyboardShortcutTextField.h │ │ ├── KeyboardShortcutTextField.m │ │ ├── KeyboardShortcutViewItem.h │ │ ├── KeyboardShortcutViewItem.m │ │ ├── keyboard_shortcut_serializer.c │ │ ├── keyboard_shortcut_serializer.h │ │ ├── keyboard_shortcuts.c │ │ └── keyboard_shortcuts.h │ ├── LogWindowController.h │ ├── LogWindowController.m │ ├── MainContentViewController.h │ ├── MainContentViewController.m │ ├── MainWindow.h │ ├── MainWindow.m │ ├── MainWindowController.h │ ├── MainWindowController.m │ ├── MediaLibrary │ │ ├── MediaLibraryItem.h │ │ ├── MediaLibraryItem.m │ │ ├── MediaLibraryManager.h │ │ ├── MediaLibraryManager.m │ │ ├── MediaLibraryOutlineView.h │ │ ├── MediaLibraryOutlineView.m │ │ ├── MediaLibraryOutlineViewController.h │ │ └── MediaLibraryOutlineViewController.m │ ├── NowPlayable │ │ ├── NowPlayable.h │ │ └── NowPlayable.m │ ├── Playlist │ │ ├── DdbListviewDelegate.h │ │ ├── DdbPlayItemPasteboardSerializer.h │ │ ├── DdbPlayItemPasteboardSerializer.m │ │ ├── PinnedGroupTitleView.h │ │ ├── PinnedGroupTitleView.m │ │ ├── PlaylistContentView.h │ │ ├── PlaylistContentView.m │ │ ├── PlaylistDataModel.h │ │ ├── PlaylistDataModel.m │ │ ├── PlaylistGroup.h │ │ ├── PlaylistGroup.m │ │ ├── PlaylistHeaderView.h │ │ ├── PlaylistHeaderView.m │ │ ├── PlaylistLocalDragDropHolder.h │ │ ├── PlaylistLocalDragDropHolder.m │ │ ├── PlaylistView.h │ │ ├── PlaylistView.m │ │ ├── PlaylistViewController.h │ │ ├── PlaylistViewController.m │ │ ├── SearchViewController.h │ │ ├── SearchViewController.m │ │ ├── SearchWindowController.h │ │ └── SearchWindowController.m │ ├── Preferences │ │ ├── AppearancePreferencesViewController.h │ │ ├── AppearancePreferencesViewController.m │ │ ├── DspPreferencesViewController.h │ │ ├── DspPreferencesViewController.m │ │ ├── GuiPreferencesWindowController.h │ │ ├── GuiPreferencesWindowController.m │ │ ├── MediaLibraryPreferencesViewController.h │ │ ├── MediaLibraryPreferencesViewController.m │ │ ├── NetworkPreferencesViewController.h │ │ ├── NetworkPreferencesViewController.m │ │ ├── PlaybackPreferencesViewController.h │ │ ├── PlaybackPreferencesViewController.m │ │ ├── PluginsPreferencesViewController.h │ │ ├── PluginsPreferencesViewController.m │ │ ├── PreferencesPluginEntry.h │ │ ├── PreferencesPluginEntry.m │ │ ├── PreferencesWindowController.h │ │ ├── PreferencesWindowController.m │ │ ├── SoundPreferencesViewController.h │ │ └── SoundPreferencesViewController.m │ ├── PropertySheetContentView.h │ ├── PropertySheetContentView.m │ ├── PropertySheetViewController.h │ ├── PropertySheetViewController.m │ ├── ReplayGainScannerController.h │ ├── ReplayGainScannerController.m │ ├── Scriptable │ │ ├── ScriptableErrorViewer.h │ │ ├── ScriptableErrorViewer.m │ │ ├── ScriptableNodeEditorViewController.h │ │ ├── ScriptableNodeEditorViewController.m │ │ ├── ScriptableNodeEditorWindowController.h │ │ ├── ScriptableNodeEditorWindowController.m │ │ ├── ScriptablePropertySheetDataSource.h │ │ ├── ScriptablePropertySheetDataSource.m │ │ ├── ScriptableProtocols.h │ │ ├── ScriptableSelectViewController.h │ │ ├── ScriptableSelectViewController.m │ │ ├── ScriptableTableDataSource.h │ │ └── ScriptableTableDataSource.m │ ├── SplitViewMainWindow │ │ ├── MainWindowSidebarViewController.h │ │ ├── MainWindowSidebarViewController.m │ │ ├── SidebarSplitViewController.h │ │ ├── SidebarSplitViewController.m │ │ ├── SidebarSplitViewItem.h │ │ └── SidebarSplitViewItem.m │ ├── TrackProperties │ │ ├── AddField │ │ │ ├── AddNewFieldWindowController.h │ │ │ ├── AddNewFieldWindowController.m │ │ │ └── AddNewFieldWindowController.xib │ │ ├── EditMultipleValues │ │ │ ├── EditMultipleValuesWindowController.h │ │ │ ├── EditMultipleValuesWindowController.m │ │ │ └── EditMultipleValuesWindowController.xib │ │ ├── EditSingleValue │ │ │ ├── EditSingleValueWindowController.h │ │ │ ├── EditSingleValueWindowController.m │ │ │ └── EditSingleValueWindowController.xib │ │ ├── TrackProperties.xib │ │ ├── TrackPropertiesListItem.h │ │ ├── TrackPropertiesListItem.m │ │ ├── TrackPropertiesListViewController.h │ │ ├── TrackPropertiesListViewController.m │ │ ├── TrackPropertiesManager.h │ │ ├── TrackPropertiesManager.m │ │ ├── TrackPropertiesMultipleFieldsTableData.h │ │ ├── TrackPropertiesMultipleFieldsTableData.m │ │ ├── TrackPropertiesNullFormatter.h │ │ ├── TrackPropertiesNullFormatter.m │ │ ├── TrackPropertiesSingleLineFormatter.h │ │ ├── TrackPropertiesSingleLineFormatter.m │ │ ├── TrackPropertiesWindowController.h │ │ └── TrackPropertiesWindowController.m │ ├── Undo │ │ ├── DdbUndoBuffer.h │ │ ├── DdbUndoBuffer.m │ │ ├── DdbUndoBufferRetainer.h │ │ ├── DdbUndoBufferRetainer.m │ │ ├── NSUndoManager+DdbUndoBuffer.h │ │ ├── NSUndoManager+DdbUndoBuffer.m │ │ ├── UndoIntegration.h │ │ └── UndoIntegration.m │ ├── Utility │ │ ├── AlbumArtImageView.h │ │ ├── AlbumArtImageView.m │ │ ├── BorderedTableRowView.h │ │ ├── BorderedTableRowView.m │ │ ├── BrowseButton.h │ │ ├── BrowseButton.m │ │ ├── DdbShared.h │ │ ├── DdbShared.m │ │ ├── DdbTableViewRightClickActivate.h │ │ ├── DdbTableViewRightClickActivate.m │ │ ├── DdbTitleFormattingHelpButton.h │ │ ├── DdbTitleFormattingHelpButton.m │ │ ├── DeletePlaylistConfirmationController.h │ │ ├── DeletePlaylistConfirmationController.m │ │ ├── FlippedClipView.h │ │ ├── FlippedClipView.m │ │ ├── NSImage+Additions.h │ │ ├── NSImage+Additions.m │ │ ├── NSMenu+ActionItems.h │ │ ├── NSMenu+ActionItems.m │ │ ├── PlaylistContextMenu.h │ │ ├── PlaylistContextMenu.m │ │ ├── PluginActionMenuItem.h │ │ ├── PluginActionMenuItem.m │ │ ├── RenamePlaylistViewController.h │ │ ├── RenamePlaylistViewController.m │ │ ├── RenamePlaylistViewController.xib │ │ ├── SegmentedTabView.h │ │ ├── SegmentedTabView.m │ │ ├── TableViewWithReturnAction.h │ │ ├── TableViewWithReturnAction.m │ │ ├── TrackContextMenu.h │ │ ├── TrackContextMenu.m │ │ ├── TrackPositionFormatter.h │ │ ├── TrackPositionFormatter.m │ │ ├── WeakRefWrapper.h │ │ ├── WeakRefWrapper.m │ │ └── Weakify.h │ ├── Visualization │ │ ├── Scope │ │ │ ├── Models │ │ │ │ ├── ScopeSettings.h │ │ │ │ └── ScopeSettings.m │ │ │ ├── Preferences │ │ │ │ ├── ScopePreferencesViewController.h │ │ │ │ ├── ScopePreferencesViewController.m │ │ │ │ ├── ScopePreferencesViewController.xib │ │ │ │ ├── ScopePreferencesWindowController.h │ │ │ │ ├── ScopePreferencesWindowController.m │ │ │ │ └── ScopePreferencesWindowController.xib │ │ │ ├── ScopeVisualizationViewController.h │ │ │ └── ScopeVisualizationViewController.m │ │ ├── Shared │ │ │ ├── MetalBufferLoop.h │ │ │ ├── MetalBufferLoop.m │ │ │ ├── MetalView.h │ │ │ ├── MetalView.m │ │ │ ├── ScopeShaderTypes.h │ │ │ ├── ShaderRenderer.h │ │ │ ├── ShaderRenderer.m │ │ │ ├── ShaderRendererTypes.h │ │ │ ├── SpectrumShaderTypes.h │ │ │ ├── VisualizationSettingsUtil.h │ │ │ ├── VisualizationSettingsUtil.m │ │ │ ├── VisualizationShaders.metal │ │ │ ├── VisualizationViewController.h │ │ │ └── VisualizationViewController.m │ │ └── SpectrumAnalyzer │ │ │ ├── Models │ │ │ ├── SpectrumAnalyzerSettings.h │ │ │ └── SpectrumAnalyzerSettings.m │ │ │ ├── Preferences │ │ │ ├── SpectrumAnalyzerPreferencesViewController.h │ │ │ ├── SpectrumAnalyzerPreferencesViewController.m │ │ │ ├── SpectrumAnalyzerPreferencesViewController.xib │ │ │ ├── SpectrumAnalyzerPreferencesWindowController.h │ │ │ ├── SpectrumAnalyzerPreferencesWindowController.m │ │ │ └── SpectrumAnalyzerPreferencesWindowController.xib │ │ │ ├── SpectrumAnalyzerLabelsView.h │ │ │ ├── SpectrumAnalyzerLabelsView.m │ │ │ ├── SpectrumAnalyzerVisualizationViewController.h │ │ │ └── SpectrumAnalyzerVisualizationViewController.m │ ├── XIB │ │ ├── AppearancePreferencesViewController.xib │ │ ├── Converter.xib │ │ ├── EditColumnPanel.xib │ │ ├── EqualizerWindowController.xib │ │ ├── GroupByCustomWindow.xib │ │ ├── HelpViewer.xib │ │ ├── Log.xib │ │ ├── MainContentViewController.xib │ │ ├── MainMenu.xib │ │ ├── Preferences.xib │ │ ├── ReplayGain.xib │ │ ├── ScriptableNodeEditorViewController.xib │ │ ├── ScriptableNodeEditorWindow.xib │ │ ├── ScriptableSelectViewController.xib │ │ ├── Search.xib │ │ └── SplitViewMainWindow.xib │ ├── deadbeef-Info.plist │ ├── deadbeef-Prefix.pch │ ├── help-cocoa.txt │ ├── images │ │ ├── btnBrowseTemplate.pdf │ │ ├── btnKeyboardTemplate.pdf │ │ ├── btnduplicateTemplate.pdf │ │ ├── btnnextTemplate.pdf │ │ ├── btnpauseTemplate.pdf │ │ ├── btnplayTemplate.pdf │ │ ├── btnprevTemplate.pdf │ │ ├── btnstopTemplate.pdf │ │ ├── bufferingTemplate.pdf │ │ ├── iconAppearanceTemplate.pdf │ │ ├── iconDSPTemplate.pdf │ │ ├── iconGUISettingsTemplate.pdf │ │ ├── iconLibraryTemplate.pdf │ │ ├── iconNetworkTemplate.pdf │ │ ├── iconPlaybackTemplate.pdf │ │ ├── iconPluginsTemplate.pdf │ │ └── iconSoundTemplate.pdf │ ├── main.m │ └── widgets │ │ ├── CustomToolbarItem.h │ │ ├── CustomToolbarItem.m │ │ ├── DdbSeekBar.h │ │ ├── DdbSeekBar.m │ │ ├── DdbVolumeBar.h │ │ ├── DdbVolumeBar.m │ │ ├── SeekbarOverlay.h │ │ └── SeekbarOverlay.m ├── converter │ ├── COPYING │ ├── Makefile.am │ ├── callbacks.c │ ├── callbacks.h │ ├── converter.c │ ├── converter.glade │ ├── converter.gladep │ ├── converter.h │ ├── convgui.c │ ├── convpresets │ │ ├── AAC_VBR_192Kbps_(Nero_FAAC).txt │ │ ├── AAC_VBR_256Kbps_(Nero_FAAC).txt │ │ ├── AAC_VBR_320Kbps_(Nero_FAAC).txt │ │ ├── ALAC.txt │ │ ├── FLAC_(compression_level_5).txt │ │ ├── File_Copy.txt │ │ ├── File_Move.txt │ │ ├── MP3_CBR_320_Kbps_(Lame).txt │ │ ├── MP3_VBR_192Kbps_(Lame).txt │ │ ├── MS_RIFF_WAV.txt │ │ ├── MusePack.txt │ │ ├── Ogg_FLAC.txt │ │ ├── Ogg_VBR_192Kbps.txt │ │ ├── Ogg_VBR_256Kbps.txt │ │ ├── Ogg_VBR_320Kbps.txt │ │ ├── Opus.txt │ │ ├── TTA.txt │ │ └── WavPack.txt │ ├── interface.c │ ├── interface.h │ ├── support.c │ └── support.h ├── coreaudio │ ├── COPYING │ ├── Makefile.am │ ├── coreaudio.c │ └── coreaudio.h ├── dca │ ├── AUTHORS │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── dcadec.c │ ├── dcaplug.c │ └── libdca │ │ ├── audio_out.h │ │ ├── bitstream.c │ │ ├── bitstream.h │ │ ├── dca.h │ │ ├── dca_internal.h │ │ ├── downmix.c │ │ ├── dts.h │ │ ├── extract_dca.c │ │ ├── gettimeofday.c │ │ ├── gettimeofday.h │ │ ├── parse.c │ │ ├── tables.h │ │ ├── tables_adpcm.h │ │ ├── tables_fir.h │ │ ├── tables_huffman.h │ │ ├── tables_quantization.h │ │ ├── tables_vq.h │ │ └── tendra.h ├── dsp_libsrc │ ├── COPYING │ ├── Makefile.am │ ├── src.c │ └── src.h ├── dumb │ ├── COPYING │ ├── Makefile.am │ ├── cdumb.c │ ├── cdumb.h │ ├── dumb-kode54 │ │ ├── ChangeLog │ │ ├── bootstrap │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── dumb.h │ │ │ ├── dumb.h.ex │ │ │ └── internal │ │ │ │ ├── barray.h │ │ │ │ ├── dumb.h │ │ │ │ ├── dumbfile.h │ │ │ │ ├── it.h │ │ │ │ ├── lpc.h │ │ │ │ ├── resampler.h │ │ │ │ ├── riff.h │ │ │ │ ├── stack_alloc.h │ │ │ │ └── tarray.h │ │ ├── licence.txt │ │ ├── readme.txt │ │ ├── release.txt │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── core │ │ │ │ ├── atexit.c │ │ │ │ ├── duhlen.c │ │ │ │ ├── duhtag.c │ │ │ │ ├── dumbfile.c │ │ │ │ ├── loadduh.c │ │ │ │ ├── makeduh.c │ │ │ │ ├── rawsig.c │ │ │ │ ├── readduh.c │ │ │ │ ├── register.c │ │ │ │ ├── rendduh.c │ │ │ │ ├── rendsig.c │ │ │ │ └── unload.c │ │ │ ├── helpers │ │ │ │ ├── barray.c │ │ │ │ ├── clickrem.c │ │ │ │ ├── lpc.c │ │ │ │ ├── memfile.c │ │ │ │ ├── resamp2.inc │ │ │ │ ├── resamp3.inc │ │ │ │ ├── resample.c │ │ │ │ ├── resample.inc │ │ │ │ ├── resampler.c │ │ │ │ ├── resampler_sse2.c │ │ │ │ ├── riff.c │ │ │ │ ├── sampbuf.c │ │ │ │ ├── silence.c │ │ │ │ ├── stdfile.c │ │ │ │ └── tarray.c │ │ │ ├── it │ │ │ │ ├── itload.c │ │ │ │ ├── itload2.c │ │ │ │ ├── itmisc.c │ │ │ │ ├── itorder.c │ │ │ │ ├── itread.c │ │ │ │ ├── itread2.c │ │ │ │ ├── itrender.c │ │ │ │ ├── itunload.c │ │ │ │ ├── load669.c │ │ │ │ ├── load6692.c │ │ │ │ ├── loadamf.c │ │ │ │ ├── loadamf2.c │ │ │ │ ├── loadany.c │ │ │ │ ├── loadany2.c │ │ │ │ ├── loadasy.c │ │ │ │ ├── loadasy2.c │ │ │ │ ├── loadmod.c │ │ │ │ ├── loadmod2.c │ │ │ │ ├── loadmtm.c │ │ │ │ ├── loadmtm2.c │ │ │ │ ├── loadokt.c │ │ │ │ ├── loadokt2.c │ │ │ │ ├── loadoldpsm.c │ │ │ │ ├── loadoldpsm2.c │ │ │ │ ├── loadpsm.c │ │ │ │ ├── loadpsm2.c │ │ │ │ ├── loadptm.c │ │ │ │ ├── loadptm2.c │ │ │ │ ├── loadriff.c │ │ │ │ ├── loadriff2.c │ │ │ │ ├── loads3m.c │ │ │ │ ├── loads3m2.c │ │ │ │ ├── loadstm.c │ │ │ │ ├── loadstm2.c │ │ │ │ ├── loadxm.c │ │ │ │ ├── loadxm2.c │ │ │ │ ├── ptmeffect.c │ │ │ │ ├── read669.c │ │ │ │ ├── read6692.c │ │ │ │ ├── readam.c │ │ │ │ ├── readamf.c │ │ │ │ ├── readamf2.c │ │ │ │ ├── readany.c │ │ │ │ ├── readany2.c │ │ │ │ ├── readasy.c │ │ │ │ ├── readdsmf.c │ │ │ │ ├── readmod.c │ │ │ │ ├── readmod2.c │ │ │ │ ├── readmtm.c │ │ │ │ ├── readokt.c │ │ │ │ ├── readokt2.c │ │ │ │ ├── readoldpsm.c │ │ │ │ ├── readpsm.c │ │ │ │ ├── readptm.c │ │ │ │ ├── readriff.c │ │ │ │ ├── reads3m.c │ │ │ │ ├── reads3m2.c │ │ │ │ ├── readstm.c │ │ │ │ ├── readstm2.c │ │ │ │ ├── readxm.c │ │ │ │ ├── readxm2.c │ │ │ │ └── xmeffect.c │ │ │ ├── sigtypes │ │ │ │ ├── combine.c │ │ │ │ ├── sample.c │ │ │ │ ├── sequence.c │ │ │ │ └── sterpan.c │ │ │ └── tools │ │ │ │ └── it │ │ │ │ ├── load_it.cpp │ │ │ │ ├── modulus.h │ │ │ │ └── typedef.hpp │ │ └── todo.txt │ ├── modloader.cpp │ ├── modloader.h │ ├── umr.h │ ├── unmo3.h │ ├── unrealfmt.cpp │ ├── unrealfmtdata.cpp │ └── urf.h ├── fdk │ ├── Android.bp │ ├── ChangeLog │ ├── FDK │ │ └── FDK.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── MODULE_LICENSE_FRAUNHOFER │ ├── Makefile.am │ ├── Makefile.vc │ ├── NOTICE │ ├── OWNERS │ ├── aac-enc.c │ ├── autogen.sh │ ├── configure.ac │ ├── documentation │ │ ├── aacDecoder.pdf │ │ └── aacEncoder.pdf │ ├── fdk-aac.pc.in │ ├── fdk-aac.sym │ ├── libAACdec │ │ ├── include │ │ │ └── aacdecoder_lib.h │ │ └── src │ │ │ ├── FDK_delay.cpp │ │ │ ├── FDK_delay.h │ │ │ ├── aac_ram.cpp │ │ │ ├── aac_ram.h │ │ │ ├── aac_rom.cpp │ │ │ ├── aac_rom.h │ │ │ ├── aacdec_drc.cpp │ │ │ ├── aacdec_drc.h │ │ │ ├── aacdec_drc_types.h │ │ │ ├── aacdec_hcr.cpp │ │ │ ├── aacdec_hcr.h │ │ │ ├── aacdec_hcr_bit.cpp │ │ │ ├── aacdec_hcr_bit.h │ │ │ ├── aacdec_hcr_types.h │ │ │ ├── aacdec_hcrs.cpp │ │ │ ├── aacdec_hcrs.h │ │ │ ├── aacdec_pns.cpp │ │ │ ├── aacdec_pns.h │ │ │ ├── aacdec_tns.cpp │ │ │ ├── aacdec_tns.h │ │ │ ├── aacdecoder.cpp │ │ │ ├── aacdecoder.h │ │ │ ├── aacdecoder_lib.cpp │ │ │ ├── arm │ │ │ └── block_arm.cpp │ │ │ ├── block.cpp │ │ │ ├── block.h │ │ │ ├── channel.cpp │ │ │ ├── channel.h │ │ │ ├── channelinfo.cpp │ │ │ ├── channelinfo.h │ │ │ ├── conceal.cpp │ │ │ ├── conceal.h │ │ │ ├── conceal_types.h │ │ │ ├── ldfiltbank.cpp │ │ │ ├── ldfiltbank.h │ │ │ ├── overlapadd.h │ │ │ ├── pulsedata.cpp │ │ │ ├── pulsedata.h │ │ │ ├── rvlc.cpp │ │ │ ├── rvlc.h │ │ │ ├── rvlc_info.h │ │ │ ├── rvlcbit.cpp │ │ │ ├── rvlcbit.h │ │ │ ├── rvlcconceal.cpp │ │ │ ├── rvlcconceal.h │ │ │ ├── stereo.cpp │ │ │ ├── stereo.h │ │ │ ├── usacdec_ace_d4t64.cpp │ │ │ ├── usacdec_ace_d4t64.h │ │ │ ├── usacdec_ace_ltp.cpp │ │ │ ├── usacdec_ace_ltp.h │ │ │ ├── usacdec_acelp.cpp │ │ │ ├── usacdec_acelp.h │ │ │ ├── usacdec_const.h │ │ │ ├── usacdec_fac.cpp │ │ │ ├── usacdec_fac.h │ │ │ ├── usacdec_lpc.cpp │ │ │ ├── usacdec_lpc.h │ │ │ ├── usacdec_lpd.cpp │ │ │ ├── usacdec_lpd.h │ │ │ ├── usacdec_rom.cpp │ │ │ └── usacdec_rom.h │ ├── libAACenc │ │ ├── include │ │ │ └── aacenc_lib.h │ │ └── src │ │ │ ├── aacEnc_ram.cpp │ │ │ ├── aacEnc_ram.h │ │ │ ├── aacEnc_rom.cpp │ │ │ ├── aacEnc_rom.h │ │ │ ├── aacenc.cpp │ │ │ ├── aacenc.h │ │ │ ├── aacenc_lib.cpp │ │ │ ├── aacenc_pns.cpp │ │ │ ├── aacenc_pns.h │ │ │ ├── aacenc_tns.cpp │ │ │ ├── aacenc_tns.h │ │ │ ├── adj_thr.cpp │ │ │ ├── adj_thr.h │ │ │ ├── adj_thr_data.h │ │ │ ├── band_nrg.cpp │ │ │ ├── band_nrg.h │ │ │ ├── bandwidth.cpp │ │ │ ├── bandwidth.h │ │ │ ├── bit_cnt.cpp │ │ │ ├── bit_cnt.h │ │ │ ├── bitenc.cpp │ │ │ ├── bitenc.h │ │ │ ├── block_switch.cpp │ │ │ ├── block_switch.h │ │ │ ├── channel_map.cpp │ │ │ ├── channel_map.h │ │ │ ├── chaosmeasure.cpp │ │ │ ├── chaosmeasure.h │ │ │ ├── dyn_bits.cpp │ │ │ ├── dyn_bits.h │ │ │ ├── grp_data.cpp │ │ │ ├── grp_data.h │ │ │ ├── intensity.cpp │ │ │ ├── intensity.h │ │ │ ├── interface.h │ │ │ ├── line_pe.cpp │ │ │ ├── line_pe.h │ │ │ ├── metadata_compressor.cpp │ │ │ ├── metadata_compressor.h │ │ │ ├── metadata_main.cpp │ │ │ ├── metadata_main.h │ │ │ ├── mps_main.cpp │ │ │ ├── mps_main.h │ │ │ ├── ms_stereo.cpp │ │ │ ├── ms_stereo.h │ │ │ ├── noisedet.cpp │ │ │ ├── noisedet.h │ │ │ ├── pns_func.h │ │ │ ├── pnsparam.cpp │ │ │ ├── pnsparam.h │ │ │ ├── pre_echo_control.cpp │ │ │ ├── pre_echo_control.h │ │ │ ├── psy_configuration.cpp │ │ │ ├── psy_configuration.h │ │ │ ├── psy_const.h │ │ │ ├── psy_data.h │ │ │ ├── psy_main.cpp │ │ │ ├── psy_main.h │ │ │ ├── qc_data.h │ │ │ ├── qc_main.cpp │ │ │ ├── qc_main.h │ │ │ ├── quantize.cpp │ │ │ ├── quantize.h │ │ │ ├── sf_estim.cpp │ │ │ ├── sf_estim.h │ │ │ ├── spreading.cpp │ │ │ ├── spreading.h │ │ │ ├── tns_func.h │ │ │ ├── tonality.cpp │ │ │ ├── tonality.h │ │ │ ├── transform.cpp │ │ │ └── transform.h │ ├── libArithCoding │ │ ├── include │ │ │ └── ac_arith_coder.h │ │ └── src │ │ │ └── ac_arith_coder.cpp │ ├── libDRCdec │ │ ├── include │ │ │ └── FDK_drcDecLib.h │ │ └── src │ │ │ ├── FDK_drcDecLib.cpp │ │ │ ├── drcDec_gainDecoder.cpp │ │ │ ├── drcDec_gainDecoder.h │ │ │ ├── drcDec_reader.cpp │ │ │ ├── drcDec_reader.h │ │ │ ├── drcDec_rom.cpp │ │ │ ├── drcDec_rom.h │ │ │ ├── drcDec_selectionProcess.cpp │ │ │ ├── drcDec_selectionProcess.h │ │ │ ├── drcDec_tools.cpp │ │ │ ├── drcDec_tools.h │ │ │ ├── drcDec_types.h │ │ │ ├── drcDecoder.h │ │ │ ├── drcGainDec_init.cpp │ │ │ ├── drcGainDec_init.h │ │ │ ├── drcGainDec_preprocess.cpp │ │ │ ├── drcGainDec_preprocess.h │ │ │ ├── drcGainDec_process.cpp │ │ │ └── drcGainDec_process.h │ ├── libFDK │ │ ├── include │ │ │ ├── FDK_archdef.h │ │ │ ├── FDK_bitbuffer.h │ │ │ ├── FDK_bitstream.h │ │ │ ├── FDK_core.h │ │ │ ├── FDK_crc.h │ │ │ ├── FDK_decorrelate.h │ │ │ ├── FDK_hybrid.h │ │ │ ├── FDK_lpc.h │ │ │ ├── FDK_matrixCalloc.h │ │ │ ├── FDK_qmf_domain.h │ │ │ ├── FDK_tools_rom.h │ │ │ ├── FDK_trigFcts.h │ │ │ ├── abs.h │ │ │ ├── arm │ │ │ │ ├── clz_arm.h │ │ │ │ ├── cplx_mul_arm.h │ │ │ │ ├── fixmadd_arm.h │ │ │ │ ├── fixmul_arm.h │ │ │ │ ├── scale_arm.h │ │ │ │ └── scramble_arm.h │ │ │ ├── autocorr2nd.h │ │ │ ├── clz.h │ │ │ ├── common_fix.h │ │ │ ├── cplx_mul.h │ │ │ ├── dct.h │ │ │ ├── fft.h │ │ │ ├── fft_rad2.h │ │ │ ├── fixmadd.h │ │ │ ├── fixminmax.h │ │ │ ├── fixmul.h │ │ │ ├── fixpoint_math.h │ │ │ ├── huff_nodes.h │ │ │ ├── mdct.h │ │ │ ├── mips │ │ │ │ ├── abs_mips.h │ │ │ │ ├── clz_mips.h │ │ │ │ ├── cplx_mul_mips.h │ │ │ │ ├── fixmul_mips.h │ │ │ │ ├── scale_mips.h │ │ │ │ └── scramble_mips.h │ │ │ ├── nlc_dec.h │ │ │ ├── ppc │ │ │ │ ├── clz_ppc.h │ │ │ │ └── fixmul_ppc.h │ │ │ ├── qmf.h │ │ │ ├── qmf_pcm.h │ │ │ ├── scale.h │ │ │ ├── scramble.h │ │ │ └── x86 │ │ │ │ ├── abs_x86.h │ │ │ │ ├── clz_x86.h │ │ │ │ ├── fixmul_x86.h │ │ │ │ └── fixpoint_math_x86.h │ │ └── src │ │ │ ├── FDK_bitbuffer.cpp │ │ │ ├── FDK_core.cpp │ │ │ ├── FDK_crc.cpp │ │ │ ├── FDK_decorrelate.cpp │ │ │ ├── FDK_hybrid.cpp │ │ │ ├── FDK_lpc.cpp │ │ │ ├── FDK_matrixCalloc.cpp │ │ │ ├── FDK_qmf_domain.cpp │ │ │ ├── FDK_tools_rom.cpp │ │ │ ├── FDK_trigFcts.cpp │ │ │ ├── arm │ │ │ ├── fft_rad2_arm.cpp │ │ │ └── scale_arm.cpp │ │ │ ├── autocorr2nd.cpp │ │ │ ├── dct.cpp │ │ │ ├── fft.cpp │ │ │ ├── fft_rad2.cpp │ │ │ ├── fixpoint_math.cpp │ │ │ ├── huff_nodes.cpp │ │ │ ├── mdct.cpp │ │ │ ├── mips │ │ │ ├── fft_rad2_mips.cpp │ │ │ ├── mips_fft_twiddles.cpp │ │ │ └── scale_mips.cpp │ │ │ ├── nlc_dec.cpp │ │ │ ├── qmf.cpp │ │ │ └── scale.cpp │ ├── libMpegTPDec │ │ ├── include │ │ │ ├── tp_data.h │ │ │ └── tpdec_lib.h │ │ └── src │ │ │ ├── tp_version.h │ │ │ ├── tpdec_adif.cpp │ │ │ ├── tpdec_adif.h │ │ │ ├── tpdec_adts.cpp │ │ │ ├── tpdec_adts.h │ │ │ ├── tpdec_asc.cpp │ │ │ ├── tpdec_drm.cpp │ │ │ ├── tpdec_drm.h │ │ │ ├── tpdec_latm.cpp │ │ │ ├── tpdec_latm.h │ │ │ └── tpdec_lib.cpp │ ├── libMpegTPEnc │ │ ├── include │ │ │ ├── tp_data.h │ │ │ └── tpenc_lib.h │ │ └── src │ │ │ ├── tp_version.h │ │ │ ├── tpenc_adif.cpp │ │ │ ├── tpenc_adif.h │ │ │ ├── tpenc_adts.cpp │ │ │ ├── tpenc_adts.h │ │ │ ├── tpenc_asc.cpp │ │ │ ├── tpenc_asc.h │ │ │ ├── tpenc_latm.cpp │ │ │ ├── tpenc_latm.h │ │ │ └── tpenc_lib.cpp │ ├── libPCMutils │ │ ├── include │ │ │ ├── limiter.h │ │ │ ├── pcm_utils.h │ │ │ └── pcmdmx_lib.h │ │ └── src │ │ │ ├── limiter.cpp │ │ │ ├── pcm_utils.cpp │ │ │ ├── pcmdmx_lib.cpp │ │ │ └── version.h │ ├── libSACdec │ │ ├── include │ │ │ ├── sac_dec_errorcodes.h │ │ │ └── sac_dec_lib.h │ │ └── src │ │ │ ├── sac_bitdec.cpp │ │ │ ├── sac_bitdec.h │ │ │ ├── sac_calcM1andM2.cpp │ │ │ ├── sac_calcM1andM2.h │ │ │ ├── sac_dec.cpp │ │ │ ├── sac_dec.h │ │ │ ├── sac_dec_conceal.cpp │ │ │ ├── sac_dec_conceal.h │ │ │ ├── sac_dec_interface.h │ │ │ ├── sac_dec_lib.cpp │ │ │ ├── sac_dec_ssc_struct.h │ │ │ ├── sac_process.cpp │ │ │ ├── sac_process.h │ │ │ ├── sac_qmf.cpp │ │ │ ├── sac_qmf.h │ │ │ ├── sac_reshapeBBEnv.cpp │ │ │ ├── sac_reshapeBBEnv.h │ │ │ ├── sac_rom.cpp │ │ │ ├── sac_rom.h │ │ │ ├── sac_smoothing.cpp │ │ │ ├── sac_smoothing.h │ │ │ ├── sac_stp.cpp │ │ │ ├── sac_stp.h │ │ │ ├── sac_tsd.cpp │ │ │ └── sac_tsd.h │ ├── libSACenc │ │ ├── include │ │ │ └── sacenc_lib.h │ │ └── src │ │ │ ├── sacenc_bitstream.cpp │ │ │ ├── sacenc_bitstream.h │ │ │ ├── sacenc_const.h │ │ │ ├── sacenc_delay.cpp │ │ │ ├── sacenc_delay.h │ │ │ ├── sacenc_dmx_tdom_enh.cpp │ │ │ ├── sacenc_dmx_tdom_enh.h │ │ │ ├── sacenc_filter.cpp │ │ │ ├── sacenc_filter.h │ │ │ ├── sacenc_framewindowing.cpp │ │ │ ├── sacenc_framewindowing.h │ │ │ ├── sacenc_huff_tab.cpp │ │ │ ├── sacenc_huff_tab.h │ │ │ ├── sacenc_lib.cpp │ │ │ ├── sacenc_nlc_enc.cpp │ │ │ ├── sacenc_nlc_enc.h │ │ │ ├── sacenc_onsetdetect.cpp │ │ │ ├── sacenc_onsetdetect.h │ │ │ ├── sacenc_paramextract.cpp │ │ │ ├── sacenc_paramextract.h │ │ │ ├── sacenc_staticgain.cpp │ │ │ ├── sacenc_staticgain.h │ │ │ ├── sacenc_tree.cpp │ │ │ ├── sacenc_tree.h │ │ │ ├── sacenc_vectorfunctions.cpp │ │ │ └── sacenc_vectorfunctions.h │ ├── libSBRdec │ │ ├── include │ │ │ └── sbrdecoder.h │ │ └── src │ │ │ ├── HFgen_preFlat.cpp │ │ │ ├── HFgen_preFlat.h │ │ │ ├── arm │ │ │ └── lpp_tran_arm.cpp │ │ │ ├── env_calc.cpp │ │ │ ├── env_calc.h │ │ │ ├── env_dec.cpp │ │ │ ├── env_dec.h │ │ │ ├── env_extr.cpp │ │ │ ├── env_extr.h │ │ │ ├── hbe.cpp │ │ │ ├── hbe.h │ │ │ ├── huff_dec.cpp │ │ │ ├── huff_dec.h │ │ │ ├── lpp_tran.cpp │ │ │ ├── lpp_tran.h │ │ │ ├── psbitdec.cpp │ │ │ ├── psbitdec.h │ │ │ ├── psdec.cpp │ │ │ ├── psdec.h │ │ │ ├── psdec_drm.cpp │ │ │ ├── psdec_drm.h │ │ │ ├── psdecrom_drm.cpp │ │ │ ├── pvc_dec.cpp │ │ │ ├── pvc_dec.h │ │ │ ├── sbr_crc.cpp │ │ │ ├── sbr_crc.h │ │ │ ├── sbr_deb.cpp │ │ │ ├── sbr_deb.h │ │ │ ├── sbr_dec.cpp │ │ │ ├── sbr_dec.h │ │ │ ├── sbr_ram.cpp │ │ │ ├── sbr_ram.h │ │ │ ├── sbr_rom.cpp │ │ │ ├── sbr_rom.h │ │ │ ├── sbrdec_drc.cpp │ │ │ ├── sbrdec_drc.h │ │ │ ├── sbrdec_freq_sca.cpp │ │ │ ├── sbrdec_freq_sca.h │ │ │ ├── sbrdecoder.cpp │ │ │ └── transcendent.h │ ├── libSBRenc │ │ ├── include │ │ │ └── sbr_encoder.h │ │ └── src │ │ │ ├── bit_sbr.cpp │ │ │ ├── bit_sbr.h │ │ │ ├── cmondata.h │ │ │ ├── code_env.cpp │ │ │ ├── code_env.h │ │ │ ├── env_bit.cpp │ │ │ ├── env_bit.h │ │ │ ├── env_est.cpp │ │ │ ├── env_est.h │ │ │ ├── fram_gen.cpp │ │ │ ├── fram_gen.h │ │ │ ├── invf_est.cpp │ │ │ ├── invf_est.h │ │ │ ├── mh_det.cpp │ │ │ ├── mh_det.h │ │ │ ├── nf_est.cpp │ │ │ ├── nf_est.h │ │ │ ├── ps_bitenc.cpp │ │ │ ├── ps_bitenc.h │ │ │ ├── ps_const.h │ │ │ ├── ps_encode.cpp │ │ │ ├── ps_encode.h │ │ │ ├── ps_main.cpp │ │ │ ├── ps_main.h │ │ │ ├── resampler.cpp │ │ │ ├── resampler.h │ │ │ ├── sbr.h │ │ │ ├── sbr_def.h │ │ │ ├── sbr_encoder.cpp │ │ │ ├── sbr_misc.cpp │ │ │ ├── sbr_misc.h │ │ │ ├── sbrenc_freq_sca.cpp │ │ │ ├── sbrenc_freq_sca.h │ │ │ ├── sbrenc_ram.cpp │ │ │ ├── sbrenc_ram.h │ │ │ ├── sbrenc_rom.cpp │ │ │ ├── sbrenc_rom.h │ │ │ ├── ton_corr.cpp │ │ │ ├── ton_corr.h │ │ │ ├── tran_det.cpp │ │ │ └── tran_det.h │ ├── libSYS │ │ ├── include │ │ │ ├── FDK_audio.h │ │ │ ├── genericStds.h │ │ │ ├── machine_type.h │ │ │ └── syslib_channelMapDescr.h │ │ └── src │ │ │ ├── genericStds.cpp │ │ │ └── syslib_channelMapDescr.cpp │ ├── wavreader.c │ ├── wavreader.h │ └── win32 │ │ └── getopt.h ├── ffap │ ├── COPYING │ ├── Makefile.am │ ├── asm.S │ ├── dsputil_yasm.asm │ ├── ffap.c │ ├── int_neon.S │ └── x86inc.asm ├── ffmpeg │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ └── ffmpeg.c ├── flac │ ├── COPYING │ ├── Makefile.am │ └── flac.c ├── gme │ ├── COPYING │ ├── Makefile.am │ ├── cgme.c │ ├── game-music-emu-0.6pre │ │ ├── CMakeLists.txt │ │ ├── changes.txt │ │ ├── design.txt │ │ ├── gme.txt │ │ ├── gme │ │ │ ├── Ay_Apu.cpp │ │ │ ├── Ay_Apu.h │ │ │ ├── Ay_Core.cpp │ │ │ ├── Ay_Core.h │ │ │ ├── Ay_Cpu.cpp │ │ │ ├── Ay_Emu.cpp │ │ │ ├── Ay_Emu.h │ │ │ ├── Blip_Buffer.cpp │ │ │ ├── Blip_Buffer.h │ │ │ ├── Blip_Buffer_impl.h │ │ │ ├── Blip_Buffer_impl2.h │ │ │ ├── Bml_Parser.cpp │ │ │ ├── Bml_Parser.h │ │ │ ├── Classic_Emu.cpp │ │ │ ├── Classic_Emu.h │ │ │ ├── Data_Reader.cpp │ │ │ ├── Data_Reader.h │ │ │ ├── Downsampler.cpp │ │ │ ├── Downsampler.h │ │ │ ├── Dual_Resampler.cpp │ │ │ ├── Dual_Resampler.h │ │ │ ├── Effects_Buffer.cpp │ │ │ ├── Effects_Buffer.h │ │ │ ├── Fir_Resampler.cpp │ │ │ ├── Fir_Resampler.h │ │ │ ├── Gb_Apu.cpp │ │ │ ├── Gb_Apu.h │ │ │ ├── Gb_Cpu.cpp │ │ │ ├── Gb_Cpu.h │ │ │ ├── Gb_Cpu_run.h │ │ │ ├── Gb_Oscs.cpp │ │ │ ├── Gb_Oscs.h │ │ │ ├── Gbs_Core.cpp │ │ │ ├── Gbs_Core.h │ │ │ ├── Gbs_Cpu.cpp │ │ │ ├── Gbs_Emu.cpp │ │ │ ├── Gbs_Emu.h │ │ │ ├── Gme_File.cpp │ │ │ ├── Gme_File.h │ │ │ ├── Gme_Loader.cpp │ │ │ ├── Gme_Loader.h │ │ │ ├── Gym_Emu.cpp │ │ │ ├── Gym_Emu.h │ │ │ ├── Hes_Apu.cpp │ │ │ ├── Hes_Apu.h │ │ │ ├── Hes_Apu_Adpcm.cpp │ │ │ ├── Hes_Apu_Adpcm.h │ │ │ ├── Hes_Core.cpp │ │ │ ├── Hes_Core.h │ │ │ ├── Hes_Cpu.cpp │ │ │ ├── Hes_Cpu.h │ │ │ ├── Hes_Cpu_run.h │ │ │ ├── Hes_Emu.cpp │ │ │ ├── Hes_Emu.h │ │ │ ├── Kss_Core.cpp │ │ │ ├── Kss_Core.h │ │ │ ├── Kss_Cpu.cpp │ │ │ ├── Kss_Emu.cpp │ │ │ ├── Kss_Emu.h │ │ │ ├── Kss_Scc_Apu.cpp │ │ │ ├── Kss_Scc_Apu.h │ │ │ ├── M3u_Playlist.cpp │ │ │ ├── M3u_Playlist.h │ │ │ ├── Multi_Buffer.cpp │ │ │ ├── Multi_Buffer.h │ │ │ ├── Music_Emu.cpp │ │ │ ├── Music_Emu.h │ │ │ ├── Nes_Apu.cpp │ │ │ ├── Nes_Apu.h │ │ │ ├── Nes_Cpu.cpp │ │ │ ├── Nes_Cpu.h │ │ │ ├── Nes_Cpu_run.h │ │ │ ├── Nes_Fds_Apu.cpp │ │ │ ├── Nes_Fds_Apu.h │ │ │ ├── Nes_Fme7_Apu.cpp │ │ │ ├── Nes_Fme7_Apu.h │ │ │ ├── Nes_Mmc5_Apu.h │ │ │ ├── Nes_Namco_Apu.cpp │ │ │ ├── Nes_Namco_Apu.h │ │ │ ├── Nes_Oscs.cpp │ │ │ ├── Nes_Oscs.h │ │ │ ├── Nes_Vrc6_Apu.cpp │ │ │ ├── Nes_Vrc6_Apu.h │ │ │ ├── Nes_Vrc7_Apu.cpp │ │ │ ├── Nes_Vrc7_Apu.h │ │ │ ├── Nsf_Core.cpp │ │ │ ├── Nsf_Core.h │ │ │ ├── Nsf_Cpu.cpp │ │ │ ├── Nsf_Emu.cpp │ │ │ ├── Nsf_Emu.h │ │ │ ├── Nsf_Impl.cpp │ │ │ ├── Nsf_Impl.h │ │ │ ├── Nsfe_Emu.cpp │ │ │ ├── Nsfe_Emu.h │ │ │ ├── Opl_Apu.cpp │ │ │ ├── Opl_Apu.h │ │ │ ├── Resampler.cpp │ │ │ ├── Resampler.h │ │ │ ├── Rom_Data.cpp │ │ │ ├── Rom_Data.h │ │ │ ├── SPC_Filter.cpp │ │ │ ├── Sap_Apu.cpp │ │ │ ├── Sap_Apu.h │ │ │ ├── Sap_Core.cpp │ │ │ ├── Sap_Core.h │ │ │ ├── Sap_Cpu.cpp │ │ │ ├── Sap_Emu.cpp │ │ │ ├── Sap_Emu.h │ │ │ ├── Sgc_Core.cpp │ │ │ ├── Sgc_Core.h │ │ │ ├── Sgc_Cpu.cpp │ │ │ ├── Sgc_Emu.cpp │ │ │ ├── Sgc_Emu.h │ │ │ ├── Sgc_Impl.cpp │ │ │ ├── Sgc_Impl.h │ │ │ ├── Sms_Apu.cpp │ │ │ ├── Sms_Apu.h │ │ │ ├── Sms_Fm_Apu.cpp │ │ │ ├── Sms_Fm_Apu.h │ │ │ ├── Spc_Emu.cpp │ │ │ ├── Spc_Emu.h │ │ │ ├── Spc_Filter.h │ │ │ ├── Spc_Sfm.cpp │ │ │ ├── Spc_Sfm.h │ │ │ ├── Track_Filter.cpp │ │ │ ├── Track_Filter.h │ │ │ ├── Upsampler.cpp │ │ │ ├── Upsampler.h │ │ │ ├── Vgm_Core.cpp │ │ │ ├── Vgm_Core.h │ │ │ ├── Vgm_Emu.cpp │ │ │ ├── Vgm_Emu.h │ │ │ ├── Ym2413_Emu.cpp │ │ │ ├── Ym2413_Emu.h │ │ │ ├── Ym2612_Emu.cpp │ │ │ ├── Ym2612_Emu.h │ │ │ ├── Ym2612_Emu_Gens.cpp │ │ │ ├── Ym2612_Emu_MAME.cpp │ │ │ ├── Z80_Cpu.cpp │ │ │ ├── Z80_Cpu.h │ │ │ ├── Z80_Cpu_run.h │ │ │ ├── adlib.h │ │ │ ├── blargg_common.cpp │ │ │ ├── blargg_common.h │ │ │ ├── blargg_config.h │ │ │ ├── blargg_endian.h │ │ │ ├── blargg_errors.cpp │ │ │ ├── blargg_errors.h │ │ │ ├── blargg_source.h │ │ │ ├── gme.cpp │ │ │ ├── gme.h │ │ │ ├── gme_custom_dprintf.c │ │ │ ├── gme_custom_dprintf.h │ │ │ ├── higan │ │ │ │ ├── dsp │ │ │ │ │ ├── SPC_DSP.cpp │ │ │ │ │ ├── SPC_DSP.h │ │ │ │ │ ├── dsp.cpp │ │ │ │ │ └── dsp.hpp │ │ │ │ ├── processor │ │ │ │ │ └── spc700 │ │ │ │ │ │ ├── algorithms.cpp │ │ │ │ │ │ ├── disassembler.cpp │ │ │ │ │ │ ├── instructions.cpp │ │ │ │ │ │ ├── memory.hpp │ │ │ │ │ │ ├── registers.hpp │ │ │ │ │ │ ├── spc700.cpp │ │ │ │ │ │ └── spc700.hpp │ │ │ │ └── smp │ │ │ │ │ ├── memory.cpp │ │ │ │ │ ├── smp.cpp │ │ │ │ │ ├── smp.hpp │ │ │ │ │ └── timing.cpp │ │ │ └── license.txt │ │ ├── license.txt │ │ ├── readme.txt │ │ └── vgmplay │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── VGMPlay │ │ │ ├── .gitignore │ │ │ ├── ChipMapper.c │ │ │ ├── ChipMapper.h │ │ │ ├── Makefile │ │ │ ├── SourceReadme.txt │ │ │ ├── VGMFile.h │ │ │ ├── VGMPlay.c │ │ │ ├── VGMPlay.dsp │ │ │ ├── VGMPlay.dsw │ │ │ ├── VGMPlay.h │ │ │ ├── VGMPlay.ini │ │ │ ├── VGMPlay.txt │ │ │ ├── VGMPlayUI.c │ │ │ ├── VGMPlay_Intf.h │ │ │ ├── VGMPlay_Updates.txt │ │ │ ├── chips │ │ │ ├── 2151intf.c │ │ │ ├── 2151intf.h │ │ │ ├── 2203intf.c │ │ │ ├── 2203intf.h │ │ │ ├── 2413intf.c │ │ │ ├── 2413intf.h │ │ │ ├── 2413tone.h │ │ │ ├── 2608intf.c │ │ │ ├── 2608intf.h │ │ │ ├── 2610intf.c │ │ │ ├── 2610intf.h │ │ │ ├── 2612intf.c │ │ │ ├── 2612intf.h │ │ │ ├── 262intf.c │ │ │ ├── 262intf.h │ │ │ ├── 281btone.h │ │ │ ├── 3526intf.c │ │ │ ├── 3526intf.h │ │ │ ├── 3812intf.c │ │ │ ├── 3812intf.h │ │ │ ├── 8950intf.c │ │ │ ├── 8950intf.h │ │ │ ├── ChipIncl.h │ │ │ ├── Ootake_PSG.c │ │ │ ├── Ootake_PSG.h │ │ │ ├── adlibemu.h │ │ │ ├── adlibemu_opl2.c │ │ │ ├── adlibemu_opl3.c │ │ │ ├── ay8910.c │ │ │ ├── ay8910.h │ │ │ ├── ay_intf.c │ │ │ ├── ay_intf.h │ │ │ ├── c140.c │ │ │ ├── c140.h │ │ │ ├── c352.c │ │ │ ├── c352.h │ │ │ ├── c6280.c │ │ │ ├── c6280.h │ │ │ ├── c6280intf.c │ │ │ ├── c6280intf.h │ │ │ ├── dac_control.c │ │ │ ├── dac_control.h │ │ │ ├── emu2149.c │ │ │ ├── emu2149.h │ │ │ ├── emu2413.c │ │ │ ├── emu2413.h │ │ │ ├── emu2413_NESpatches.txt │ │ │ ├── emuconfig.h │ │ │ ├── emutypes.h │ │ │ ├── es5503.c │ │ │ ├── es5503.h │ │ │ ├── es5506.c │ │ │ ├── es5506.h │ │ │ ├── fm.c │ │ │ ├── fm.h │ │ │ ├── fm2612.c │ │ │ ├── fmopl.c │ │ │ ├── fmopl.h │ │ │ ├── gb.c │ │ │ ├── gb.h │ │ │ ├── iremga20.c │ │ │ ├── iremga20.h │ │ │ ├── k051649.c │ │ │ ├── k051649.h │ │ │ ├── k053260.c │ │ │ ├── k053260.h │ │ │ ├── k054539.c │ │ │ ├── k054539.h │ │ │ ├── mamedef.h │ │ │ ├── multipcm.c │ │ │ ├── multipcm.h │ │ │ ├── nes_apu.c │ │ │ ├── nes_apu.h │ │ │ ├── nes_defs.h │ │ │ ├── nes_intf.c │ │ │ ├── nes_intf.h │ │ │ ├── np_nes_apu.c │ │ │ ├── np_nes_apu.h │ │ │ ├── np_nes_dmc.c │ │ │ ├── np_nes_dmc.h │ │ │ ├── np_nes_fds.c │ │ │ ├── np_nes_fds.h │ │ │ ├── okim6258.c │ │ │ ├── okim6258.h │ │ │ ├── okim6295.c │ │ │ ├── okim6295.h │ │ │ ├── opl.c │ │ │ ├── opl.h │ │ │ ├── panning.c │ │ │ ├── panning.h │ │ │ ├── pokey.c │ │ │ ├── pokey.h │ │ │ ├── pwm.c │ │ │ ├── pwm.h │ │ │ ├── qsound.c │ │ │ ├── qsound.h │ │ │ ├── rf5c68.c │ │ │ ├── rf5c68.h │ │ │ ├── saa1099.c │ │ │ ├── saa1099.h │ │ │ ├── scd_pcm.c │ │ │ ├── scd_pcm.h │ │ │ ├── scsp.c │ │ │ ├── scsp.h │ │ │ ├── segapcm.c │ │ │ ├── segapcm.h │ │ │ ├── sn76489.c │ │ │ ├── sn76489.h │ │ │ ├── sn76496.c │ │ │ ├── sn76496.h │ │ │ ├── sn764intf.c │ │ │ ├── sn764intf.h │ │ │ ├── upd7759.c │ │ │ ├── upd7759.h │ │ │ ├── vrc7tone.h │ │ │ ├── vsu.c │ │ │ ├── vsu.h │ │ │ ├── ws_audio.c │ │ │ ├── ws_audio.h │ │ │ ├── ws_initialIo.h │ │ │ ├── x1_010.c │ │ │ ├── x1_010.h │ │ │ ├── yam.c │ │ │ ├── yam.h │ │ │ ├── ym2151.c │ │ │ ├── ym2151.h │ │ │ ├── ym2413.c │ │ │ ├── ym2413.h │ │ │ ├── ym2612.c │ │ │ ├── ym2612.h │ │ │ ├── ymdeltat.c │ │ │ ├── ymdeltat.h │ │ │ ├── ymf262.c │ │ │ ├── ymf262.h │ │ │ ├── ymf271.c │ │ │ ├── ymf271.h │ │ │ ├── ymf278b.c │ │ │ ├── ymf278b.h │ │ │ ├── ymz280b.c │ │ │ └── ymz280b.h │ │ │ ├── licenses │ │ │ ├── GPL.txt │ │ │ ├── List.txt │ │ │ └── mame_license.txt │ │ │ ├── resampler.c │ │ │ ├── resampler.h │ │ │ ├── stdbool.h │ │ │ ├── vgm2pcm.c │ │ │ └── vgmspec171.txt │ ├── gmewrap.cpp │ └── gmewrap.h ├── gtkui │ ├── COPYING │ ├── Makefile.am │ ├── actionhandlers.c │ ├── actionhandlers.h │ ├── actions.c │ ├── actions.h │ ├── callbacks.c │ ├── callbacks.h │ ├── clipboard.c │ ├── clipboard.h │ ├── covermanager │ │ ├── albumartwidget.c │ │ ├── albumartwidget.h │ │ ├── covermanager.c │ │ ├── covermanager.h │ │ ├── gobjcache.c │ │ └── gobjcache.h │ ├── ctmapping.c │ ├── ctmapping.h │ ├── ddb_splitter.c │ ├── ddb_splitter.h │ ├── ddb_splitter_size_mode.c │ ├── ddb_splitter_size_mode.h │ ├── ddbcellrenderertextmultiline.c │ ├── ddbcellrenderertextmultiline.h │ ├── ddbequalizer.c │ ├── ddbequalizer.h │ ├── ddbseekbar.c │ ├── ddbseekbar.h │ ├── ddbtabstrip.c │ ├── ddbtabstrip.h │ ├── ddbvolumebar.c │ ├── ddbvolumebar.h │ ├── deadbeef.glade │ ├── deadbeef.gladep │ ├── deadbeefapp.c │ ├── deadbeefapp.h │ ├── drawing.h │ ├── dspconfig.c │ ├── dspconfig.h │ ├── eq.c │ ├── eq.h │ ├── fileman.c │ ├── gdkdrawing.c │ ├── gtk │ │ └── menus.ui │ ├── gtkui.c │ ├── gtkui.gresources.xml │ ├── gtkui.h │ ├── gtkui_api.h │ ├── gtkui_deletefromdisk.c │ ├── gtkui_deletefromdisk.h │ ├── hotkeys.c │ ├── hotkeys.h │ ├── interface.c │ ├── interface.h │ ├── medialib │ │ ├── medialibmanager.c │ │ ├── medialibmanager.h │ │ ├── medialibwidget.c │ │ ├── medialibwidget.h │ │ ├── mlcellrendererpixbuf.c │ │ └── mlcellrendererpixbuf.h │ ├── namedicons.c │ ├── namedicons.h │ ├── playlist │ │ ├── ddblistview.c │ │ ├── ddblistview.h │ │ ├── ddblistviewheader.c │ │ ├── ddblistviewheader.h │ │ ├── mainplaylist.c │ │ ├── mainplaylist.h │ │ ├── playlistcontroller.c │ │ ├── playlistcontroller.h │ │ ├── playlistrenderer.c │ │ ├── playlistrenderer.h │ │ ├── plcommon.c │ │ ├── plcommon.h │ │ ├── searchplaylist.c │ │ └── searchplaylist.h │ ├── plmenu.c │ ├── plmenu.h │ ├── pltmenu.c │ ├── pluginconf.c │ ├── pluginconf.h │ ├── prefwin │ │ ├── prefwin.c │ │ ├── prefwin.h │ │ ├── prefwinappearance.c │ │ ├── prefwinappearance.h │ │ ├── prefwinmedialib.c │ │ ├── prefwinmedialib.h │ │ ├── prefwinmisc.c │ │ ├── prefwinmisc.h │ │ ├── prefwinnetwork.c │ │ ├── prefwinnetwork.h │ │ ├── prefwinplayback.c │ │ ├── prefwinplayback.h │ │ ├── prefwinplugins.c │ │ ├── prefwinplugins.h │ │ ├── prefwinsound.c │ │ └── prefwinsound.h │ ├── progress.c │ ├── progress.h │ ├── rg.c │ ├── rg.h │ ├── scriptable │ │ ├── gtkScriptable.c │ │ ├── gtkScriptable.h │ │ ├── gtkScriptableListEditViewController.c │ │ ├── gtkScriptableListEditViewController.h │ │ ├── gtkScriptableListEditWindowController.c │ │ ├── gtkScriptableListEditWindowController.h │ │ ├── gtkScriptablePropertySheetEditViewController.c │ │ ├── gtkScriptablePropertySheetEditViewController.h │ │ ├── gtkScriptablePropertySheetEditWindowController.c │ │ ├── gtkScriptablePropertySheetEditWindowController.h │ │ ├── gtkScriptableSelectViewController.c │ │ └── gtkScriptableSelectViewController.h │ ├── search.c │ ├── search.h │ ├── selpropertieswidget.c │ ├── selpropertieswidget.h │ ├── support.c │ ├── support.h │ ├── tagwritersettings.c │ ├── tagwritersettings.h │ ├── tfimport.c │ ├── tfimport.h │ ├── trkproperties.c │ ├── trkproperties.h │ ├── undointegration.c │ ├── undointegration.h │ ├── undostack.c │ ├── undostack.h │ ├── widgets.c │ ├── widgets.h │ ├── wingeom.c │ └── wingeom.h ├── hotkeys │ ├── COPYING │ ├── Makefile.am │ ├── hotkeys.c │ ├── hotkeys.h │ └── keysyms.inc ├── lastfm │ ├── COPYING │ ├── Makefile.am │ └── lastfm.c ├── liboggedit │ ├── Makefile.am │ ├── oggedit.h │ ├── oggedit_art.c │ ├── oggedit_flac.c │ ├── oggedit_internal.c │ ├── oggedit_internal.h │ ├── oggedit_opus.c │ ├── oggedit_utils.c │ └── oggedit_vorbis.c ├── lyrics │ ├── COPYING │ ├── Makefile.am │ ├── lyrics.c │ ├── support.c │ └── support.h ├── m3u │ ├── COPYING │ ├── Makefile.am │ ├── m3u.c │ └── m3u.h ├── medialib │ ├── COPYING │ ├── Makefile.am │ ├── medialib.c │ ├── medialib.h │ ├── medialibcommon.c │ ├── medialibcommon.h │ ├── medialibdb.c │ ├── medialibdb.h │ ├── medialibfilesystem.h │ ├── medialibfilesystem_inotify.c │ ├── medialibfilesystem_mac.m │ ├── medialibfilesystem_stub.c │ ├── medialibscanner.c │ ├── medialibscanner.h │ ├── medialibsource.c │ ├── medialibsource.h │ ├── medialibstate.c │ ├── medialibstate.h │ ├── medialibtree.c │ ├── medialibtree.h │ ├── scriptable_tfquery.c │ └── scriptable_tfquery.h ├── mms │ ├── COPYING │ ├── Makefile.am │ ├── libmms │ │ ├── AUTHORS │ │ ├── COPYING.LIB │ │ ├── README │ │ ├── README.LICENSE │ │ ├── asfheader.h │ │ ├── bswap.h │ │ ├── mms-common.h │ │ ├── mms.c │ │ ├── mms.h │ │ ├── mmsh.c │ │ ├── mmsh.h │ │ ├── mmsio.h │ │ ├── mmsx.c │ │ ├── mmsx.h │ │ ├── uri.c │ │ └── uri.h │ └── mmsplug.c ├── mono2stereo │ ├── COPYING │ ├── Makefile.am │ └── mono2stereo.c ├── mp3 │ ├── COPYING │ ├── Makefile.am │ ├── mp3.c │ ├── mp3.h │ ├── mp3_mad.c │ ├── mp3_mad.h │ ├── mp3_mpg123.c │ ├── mp3_mpg123.h │ ├── mp3parser.c │ └── mp3parser.h ├── musepack │ ├── COPYING │ ├── Makefile.am │ ├── crc32.c │ ├── decoder.h │ ├── huffman.c │ ├── huffman.h │ ├── internal.h │ ├── mpc │ │ ├── minimax.h │ │ ├── mpc_types.h │ │ ├── mpcdec.h │ │ ├── reader.h │ │ └── streaminfo.h │ ├── mpc_bits_reader.c │ ├── mpc_bits_reader.h │ ├── mpc_decoder.c │ ├── mpc_demux.c │ ├── mpc_reader.c │ ├── mpcdec_math.h │ ├── musepack.c │ ├── requant.c │ ├── requant.h │ ├── streaminfo.c │ └── synth_filter.c ├── notify │ ├── COPYING │ ├── Makefile.am │ └── notify.c ├── nullout │ ├── COPYING │ ├── Makefile.am │ └── nullout.c ├── opus │ ├── COPYING │ ├── Makefile.am │ └── opus.c ├── oss │ ├── COPYING │ ├── Makefile.am │ └── oss.c ├── pltbrowser │ ├── COPYING │ ├── Makefile.am │ ├── pltbrowser.c │ ├── support.c │ └── support.h ├── portaudio │ ├── COPYING │ ├── Makefile.am │ └── portaudio.c ├── psf │ ├── COPYING │ ├── Makefile.am │ ├── aosdk │ │ ├── ao.h │ │ ├── corlett.c │ │ ├── corlett.h │ │ ├── cpuintrf.h │ │ ├── eng_dsf │ │ │ ├── aica.c │ │ │ ├── aica.h │ │ │ ├── aicadsp.c │ │ │ ├── aicadsp.h │ │ │ ├── aicalfo.c │ │ │ ├── arm7.c │ │ │ ├── arm7.h │ │ │ ├── arm7i.c │ │ │ ├── arm7i.h │ │ │ ├── arm7memil.c │ │ │ ├── arm7thumb.c │ │ │ ├── arm7thumb.h │ │ │ ├── dc_hw.c │ │ │ ├── dc_hw.h │ │ │ └── eng_dsf.c │ │ ├── eng_protos.h │ │ ├── eng_psf │ │ │ ├── cpuintrf.h │ │ │ ├── eng_psf.c │ │ │ ├── eng_psf2.c │ │ │ ├── eng_spu.c │ │ │ ├── mamemem.h │ │ │ ├── peops │ │ │ │ ├── License.txt │ │ │ │ ├── adsr.c │ │ │ │ ├── adsr.h │ │ │ │ ├── dma.c │ │ │ │ ├── dma.h │ │ │ │ ├── externals.h │ │ │ │ ├── gauss_i.h │ │ │ │ ├── registers.c │ │ │ │ ├── registers.h │ │ │ │ ├── regs.h │ │ │ │ ├── reverb.c │ │ │ │ ├── spu.c │ │ │ │ ├── spu.h │ │ │ │ └── stdafx.h │ │ │ ├── peops2 │ │ │ │ ├── License.txt │ │ │ │ ├── adsr.h │ │ │ │ ├── adsr2.c │ │ │ │ ├── dma.h │ │ │ │ ├── dma2.c │ │ │ │ ├── externals.h │ │ │ │ ├── gauss_i.h │ │ │ │ ├── psemuxa.h │ │ │ │ ├── registers.h │ │ │ │ ├── registers2.c │ │ │ │ ├── regs.h │ │ │ │ ├── reverb.h │ │ │ │ ├── reverb2.c │ │ │ │ ├── spu.h │ │ │ │ ├── spu2.c │ │ │ │ ├── stdafx.h │ │ │ │ └── xa.c │ │ │ ├── psx.c │ │ │ ├── psx.h │ │ │ └── psx_hw.c │ │ ├── eng_qsf │ │ │ ├── eng_qsf.c │ │ │ ├── kabuki.c │ │ │ ├── qsound.c │ │ │ ├── qsound.h │ │ │ ├── z80.c │ │ │ ├── z80.h │ │ │ ├── z80dasm.c │ │ │ └── z80dasm.h │ │ ├── eng_ssf │ │ │ ├── eng_ssf.c │ │ │ ├── m68k.h │ │ │ ├── m68k_in.c │ │ │ ├── m68kconf.h │ │ │ ├── m68kcpu.c │ │ │ ├── m68kcpu.h │ │ │ ├── m68kmake.c │ │ │ ├── m68kmame.h │ │ │ ├── m68kopac.c │ │ │ ├── m68kopdm.c │ │ │ ├── m68kopnz.c │ │ │ ├── m68kops.c │ │ │ ├── m68kops.h │ │ │ ├── sat_hw.c │ │ │ ├── sat_hw.h │ │ │ ├── scsp.c │ │ │ ├── scsp.h │ │ │ ├── scspdsp.c │ │ │ ├── scspdsp.h │ │ │ └── scsplfo.c │ │ ├── mem.h │ │ ├── osd_cpu.h │ │ └── psfmain.c │ ├── plugin.c │ └── readme.txt ├── pulse │ ├── COPYING │ ├── Makefile.am │ └── pulse.c ├── rg_scanner │ ├── COPYING │ ├── Makefile.am │ ├── ebur128 │ │ ├── COPYING.txt │ │ ├── ebur128.c │ │ └── ebur128.h │ ├── rg_scanner.c │ └── rg_scanner.h ├── sc68 │ ├── COPYING │ ├── Makefile.am │ ├── in_sc68.c │ └── libsc68 │ │ ├── desa68 │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── configure.ac │ │ ├── desa68.c │ │ └── desa68.h │ │ ├── file68 │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── configure.ac │ │ ├── data68 │ │ │ ├── Makefile.am │ │ │ ├── Players │ │ │ │ ├── aSIDifier.s │ │ │ │ ├── aZIDifier.s │ │ │ │ ├── blipblop.s │ │ │ │ ├── blipp079.s │ │ │ │ ├── bs22.s │ │ │ │ ├── chipmon2.s │ │ │ │ ├── cosotfmx.s │ │ │ │ ├── crapman1.s │ │ │ │ ├── crapman2.s │ │ │ │ ├── custom │ │ │ │ │ ├── halfbuzz.s │ │ │ │ │ └── wrapper.s │ │ │ │ ├── delicoso.s │ │ │ │ ├── deltamusic1.s │ │ │ │ ├── deltamusic2.s │ │ │ │ ├── digitfmx.s │ │ │ │ ├── fc13_14.s │ │ │ │ ├── fred.s │ │ │ │ ├── hpn-jam.s │ │ │ │ ├── jamcracker10.s │ │ │ │ ├── lastninja3.s │ │ │ │ ├── lib │ │ │ │ │ ├── TosReloc.s │ │ │ │ │ ├── YMSTwrapper.s │ │ │ │ │ ├── org.s │ │ │ │ │ └── reloc.s │ │ │ │ ├── lx_mmme.s │ │ │ │ ├── mcoder.s │ │ │ │ ├── megatizer.s │ │ │ │ ├── midi.s │ │ │ │ ├── mmme.s │ │ │ │ ├── mmmesid.s │ │ │ │ ├── musmon1.s │ │ │ │ ├── musmon2.s │ │ │ │ ├── ninjatfmx.s │ │ │ │ ├── note.s │ │ │ │ ├── note2.s │ │ │ │ ├── org │ │ │ │ │ ├── README │ │ │ │ │ ├── TCBtracker.rot │ │ │ │ │ ├── blipblop.ymst │ │ │ │ │ ├── blipp079.bin │ │ │ │ │ ├── bs22 │ │ │ │ │ ├── chipmon2 │ │ │ │ │ ├── cosotfmx │ │ │ │ │ ├── crapman1 │ │ │ │ │ ├── crapman2 │ │ │ │ │ ├── digitfmx │ │ │ │ │ ├── lastninja3 │ │ │ │ │ ├── lx_mmme │ │ │ │ │ ├── mcoder │ │ │ │ │ ├── megatizer │ │ │ │ │ ├── midi_exp_sp4e.bin │ │ │ │ │ ├── midi_seqprg.bin │ │ │ │ │ ├── mmme │ │ │ │ │ ├── mmmesid │ │ │ │ │ ├── musmon1 │ │ │ │ │ ├── musmon2 │ │ │ │ │ ├── ninjatfmx │ │ │ │ │ ├── puma │ │ │ │ │ ├── quartet_table.bin │ │ │ │ │ ├── sh11-altern_m.prg │ │ │ │ │ ├── sh11-unknown.prg │ │ │ │ │ ├── sidmon │ │ │ │ │ ├── sidsound │ │ │ │ │ ├── singsafe.prg │ │ │ │ │ ├── singsong.prg │ │ │ │ │ ├── ssd1 │ │ │ │ │ ├── tao_digi │ │ │ │ │ ├── tao_hubbard │ │ │ │ │ ├── tao_ms211 │ │ │ │ │ ├── tao_ms25 │ │ │ │ │ ├── tao_ms27 │ │ │ │ │ ├── tfmx │ │ │ │ │ ├── tfmx_old │ │ │ │ │ ├── tfmx_st │ │ │ │ │ ├── tsd1 │ │ │ │ │ ├── tsd2 │ │ │ │ │ ├── tsd_noise.dat │ │ │ │ │ ├── tur2tfmx │ │ │ │ │ └── wodtfmx │ │ │ │ ├── protracker │ │ │ │ │ ├── mod2sc68.s │ │ │ │ │ └── pt110bfix.s │ │ │ │ ├── psg1.s │ │ │ │ ├── puma2.s │ │ │ │ ├── puma99.s │ │ │ │ ├── quartet.s │ │ │ │ ├── quartet_mindbomb.s │ │ │ │ ├── sh11-alter_m.s │ │ │ │ ├── sh11-unknown.s │ │ │ │ ├── sidmon1.s │ │ │ │ ├── sidmon2.s │ │ │ │ ├── sidsound.s │ │ │ │ ├── sndh_ice.s │ │ │ │ ├── soundfx.s │ │ │ │ ├── ssd │ │ │ │ │ ├── README │ │ │ │ │ ├── ssd.s │ │ │ │ │ └── ssd1-sc68.s │ │ │ │ ├── tao_digi.s │ │ │ │ ├── tao_hubbard.s │ │ │ │ ├── tao_ms211.s │ │ │ │ ├── tao_ms25.s │ │ │ │ ├── tao_ms27.s │ │ │ │ ├── tao_tsd.s │ │ │ │ ├── tcbtracker.s │ │ │ │ ├── tfmx.s │ │ │ │ ├── tfmx_old.s │ │ │ │ ├── tfmx_st.s │ │ │ │ ├── timerc.s │ │ │ │ ├── tsd-jam.s │ │ │ │ ├── tsd1.s │ │ │ │ ├── tur2tfmx.s │ │ │ │ └── wodtfmx.s │ │ │ ├── Replay │ │ │ │ ├── aenigmatica.bin │ │ │ │ ├── alteredbeast.bin │ │ │ │ ├── armalyte.bin │ │ │ │ ├── asidifier.bin │ │ │ │ ├── azidifier.bin │ │ │ │ ├── bendaglish.deli │ │ │ │ ├── bendaglish.deli.bin │ │ │ │ ├── big.bin │ │ │ │ ├── blipblop.bin │ │ │ │ ├── blipp079.bin │ │ │ │ ├── bs22.bin │ │ │ │ ├── cabal.bin │ │ │ │ ├── chipmon2.bin │ │ │ │ ├── cosotfmx.bin │ │ │ │ ├── crapman1.bin │ │ │ │ ├── crapman2.bin │ │ │ │ ├── deltamusic1.bin │ │ │ │ ├── deltamusic2.bin │ │ │ │ ├── digitfmx.bin │ │ │ │ ├── dmu.bin │ │ │ │ ├── dwaga.bin │ │ │ │ ├── dyter07.bin │ │ │ │ ├── elf.bin │ │ │ │ ├── fc13_14.bin │ │ │ │ ├── fireice.bin │ │ │ │ ├── fred.bin │ │ │ │ ├── gemx.bin │ │ │ │ ├── harlequin.bin │ │ │ │ ├── hippel-coso_note.deli │ │ │ │ ├── hippel-coso_note.deli.bin │ │ │ │ ├── hpn-jam.bin │ │ │ │ ├── huelsbeck.bin │ │ │ │ ├── huntforredoct.bin │ │ │ │ ├── ivanhoe.bin │ │ │ │ ├── jamcracker10.bin │ │ │ │ ├── jamcrackerpro.bin │ │ │ │ ├── lastninja3.bin │ │ │ │ ├── lastninjaiii.bin │ │ │ │ ├── lcd.bin │ │ │ │ ├── lx_mmme.bin │ │ │ │ ├── mcoder.bin │ │ │ │ ├── megatizer.bin │ │ │ │ ├── metrocross.bin │ │ │ │ ├── midi.bin │ │ │ │ ├── mmme.bin │ │ │ │ ├── mmmesid.bin │ │ │ │ ├── mon.bin │ │ │ │ ├── mon_old.deli │ │ │ │ ├── mon_old.deli.bin │ │ │ │ ├── musmon1.bin │ │ │ │ ├── musmon2.bin │ │ │ │ ├── ninjaremix.bin │ │ │ │ ├── ninjatfmx.bin │ │ │ │ ├── nobuddiesland.bin │ │ │ │ ├── none.bin │ │ │ │ ├── note.bin │ │ │ │ ├── note2.bin │ │ │ │ ├── page.bin │ │ │ │ ├── protracker.bin │ │ │ │ ├── psg1.bin │ │ │ │ ├── psgtrackerv2.bin │ │ │ │ ├── puma.bin │ │ │ │ ├── puma2.bin │ │ │ │ ├── quartet.bin │ │ │ │ ├── quartet_mindbomb.bin │ │ │ │ ├── realms.bin │ │ │ │ ├── robhubbard.deli │ │ │ │ ├── robhubbard.deli.bin │ │ │ │ ├── rollingronny.bin │ │ │ │ ├── shadowdancer.bin │ │ │ │ ├── sidmon1.bin │ │ │ │ ├── sidmon2.bin │ │ │ │ ├── sidsound.bin │ │ │ │ ├── sndh_ice.bin │ │ │ │ ├── soundfx.bin │ │ │ │ ├── spacecrusade.bin │ │ │ │ ├── spacegun.bin │ │ │ │ ├── ssd1.bin │ │ │ │ ├── stos.bin │ │ │ │ ├── synthiv.bin │ │ │ │ ├── tao_digi.bin │ │ │ │ ├── tao_hubbard.bin │ │ │ │ ├── tao_ms211.bin │ │ │ │ ├── tao_ms25.bin │ │ │ │ ├── tao_ms27.bin │ │ │ │ ├── tao_tsd.bin │ │ │ │ ├── tcbtracker.bin │ │ │ │ ├── test.bin │ │ │ │ ├── tfmx.bin │ │ │ │ ├── tfmx_aga.bin │ │ │ │ ├── tfmx_old.bin │ │ │ │ ├── tfmx_st.bin │ │ │ │ ├── timerc.bin │ │ │ │ ├── toki.bin │ │ │ │ ├── tsd1.bin │ │ │ │ ├── utopia.bin │ │ │ │ ├── vikingchild.bin │ │ │ │ ├── xbiossound.bin │ │ │ │ └── zonewarrior.bin │ │ │ ├── Windows │ │ │ │ ├── sc68file.bmp │ │ │ │ ├── sc68file16.ico │ │ │ │ └── sc68file256.ico │ │ │ └── sc68.cfg │ │ ├── sc68 │ │ │ ├── file68.h │ │ │ ├── file68_api.h │ │ │ ├── file68_chk.h │ │ │ ├── file68_err.h │ │ │ ├── file68_features.h │ │ │ ├── file68_ice.h │ │ │ ├── file68_msg.h │ │ │ ├── file68_opt.h │ │ │ ├── file68_ord.h │ │ │ ├── file68_reg.h │ │ │ ├── file68_rsc.h │ │ │ ├── file68_str.h │ │ │ ├── file68_tag.h │ │ │ ├── file68_tdb.h │ │ │ ├── file68_uri.h │ │ │ ├── file68_vfs.h │ │ │ ├── file68_vfs_ao.h │ │ │ ├── file68_vfs_curl.h │ │ │ ├── file68_vfs_def.h │ │ │ ├── file68_vfs_fd.h │ │ │ ├── file68_vfs_file.h │ │ │ ├── file68_vfs_mem.h │ │ │ ├── file68_vfs_null.h │ │ │ ├── file68_vfs_z.h │ │ │ └── file68_zip.h │ │ ├── scripts │ │ │ ├── README │ │ │ ├── SNDHinfo.sh │ │ │ ├── SSDextract.sh │ │ │ ├── SSDtunes.sh │ │ │ ├── YMSTdir.sh │ │ │ ├── extractor.sh │ │ │ ├── mkMusmon2.sh │ │ │ ├── mkQuartet.sh │ │ │ └── unice.sh │ │ └── src │ │ │ ├── endian68.c │ │ │ ├── ferror68.c │ │ │ ├── file68.c │ │ │ ├── gzip68.c │ │ │ ├── ice68.c │ │ │ ├── init68.c │ │ │ ├── msg68.c │ │ │ ├── option68.c │ │ │ ├── registry68.c │ │ │ ├── replay.inc.h │ │ │ ├── replay68.c │ │ │ ├── rsc68.c │ │ │ ├── string68.c │ │ │ ├── timedb.inc.h │ │ │ ├── timedb68.c │ │ │ ├── uri68.c │ │ │ ├── vfs68.c │ │ │ ├── vfs68_ao.c │ │ │ ├── vfs68_curl.c │ │ │ ├── vfs68_fd.c │ │ │ ├── vfs68_file.c │ │ │ ├── vfs68_mem.c │ │ │ ├── vfs68_null.c │ │ │ └── vfs68_z.c │ │ ├── libsc68 │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── api68.c │ │ ├── conf68.c │ │ ├── configure.ac │ │ ├── dial68 │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── dial68.c │ │ │ ├── dial68.h │ │ │ ├── dial_conf.c │ │ │ ├── dial_finf.c │ │ │ ├── dial_tsel.c │ │ │ └── winui │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── resource.h │ │ │ │ ├── resource.rc │ │ │ │ ├── winui_dlg.c │ │ │ │ ├── winui_dll.c │ │ │ │ └── winui_rsc.c │ │ ├── emu68 │ │ │ ├── Makefile.am │ │ │ ├── assert68.h │ │ │ ├── cc68.c │ │ │ ├── cc68.h │ │ │ ├── crc32.c │ │ │ ├── emu68.c │ │ │ ├── emu68.h │ │ │ ├── emu68_api.h │ │ │ ├── error68.c │ │ │ ├── error68.h │ │ │ ├── excep68.h │ │ │ ├── getea68.c │ │ │ ├── inl68_arithmetic.h │ │ │ ├── inl68_bcd.h │ │ │ ├── inl68_bitmanip.h │ │ │ ├── inl68_datamove.h │ │ │ ├── inl68_exception.h │ │ │ ├── inl68_logic.h │ │ │ ├── inl68_progctrl.h │ │ │ ├── inl68_shifting.h │ │ │ ├── inl68_systctrl.h │ │ │ ├── inst68.c │ │ │ ├── inst68.h │ │ │ ├── ioplug68.c │ │ │ ├── ioplug68.h │ │ │ ├── line0_68.c │ │ │ ├── line1_68.c │ │ │ ├── line2_68.c │ │ │ ├── line3_68.c │ │ │ ├── line4_68.c │ │ │ ├── line5_68.c │ │ │ ├── line6_68.c │ │ │ ├── line7_68.c │ │ │ ├── line8_68.c │ │ │ ├── line9_68.c │ │ │ ├── lineA_68.c │ │ │ ├── lineB_68.c │ │ │ ├── lineC_68.c │ │ │ ├── lineD_68.c │ │ │ ├── lineE_68.c │ │ │ ├── lineF_68.c │ │ │ ├── lines │ │ │ │ ├── line0.c │ │ │ │ ├── line1.c │ │ │ │ ├── line2.c │ │ │ │ ├── line3.c │ │ │ │ ├── line4.c │ │ │ │ ├── line5.c │ │ │ │ ├── line6.c │ │ │ │ ├── line7.c │ │ │ │ ├── line8.c │ │ │ │ ├── line9.c │ │ │ │ ├── lineA.c │ │ │ │ ├── lineB.c │ │ │ │ ├── lineC.c │ │ │ │ ├── lineD.c │ │ │ │ ├── lineE.c │ │ │ │ ├── lineF.c │ │ │ │ └── table.c │ │ │ ├── lines68.c │ │ │ ├── lines68.h │ │ │ ├── macro68.h │ │ │ ├── mem68.c │ │ │ ├── mem68.h │ │ │ ├── srdef68.h │ │ │ ├── struct68.h │ │ │ ├── table68.c │ │ │ └── type68.h │ │ ├── io68 │ │ │ ├── Makefile.am │ │ │ ├── default.h │ │ │ ├── io68.c │ │ │ ├── io68.h │ │ │ ├── io68_api.h │ │ │ ├── mfp_io.c │ │ │ ├── mfp_io.h │ │ │ ├── mfpemul.c │ │ │ ├── mfpemul.h │ │ │ ├── mw_io.c │ │ │ ├── mw_io.h │ │ │ ├── mwemul.c │ │ │ ├── mwemul.h │ │ │ ├── paula_io.c │ │ │ ├── paula_io.h │ │ │ ├── paulaemul.c │ │ │ ├── paulaemul.h │ │ │ ├── shifter_io.c │ │ │ ├── shifter_io.h │ │ │ ├── ym_atarist_table.c │ │ │ ├── ym_blep.c │ │ │ ├── ym_blep.h │ │ │ ├── ym_dump.c │ │ │ ├── ym_dump.h │ │ │ ├── ym_envel.c │ │ │ ├── ym_fixed_vol.h │ │ │ ├── ym_io.c │ │ │ ├── ym_io.h │ │ │ ├── ym_linear_table.c │ │ │ ├── ym_puls.c │ │ │ ├── ym_puls.h │ │ │ ├── ymemul.c │ │ │ ├── ymemul.h │ │ │ ├── ymout2k9.h │ │ │ └── ymoutorg.h │ │ ├── libsc68.c │ │ ├── mixer68.c │ │ ├── sc68 │ │ │ ├── conf68.h │ │ │ ├── mixer68.h │ │ │ ├── sc68.h │ │ │ └── trap68.h │ │ └── trapfunc.s │ │ ├── sc68 │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── configure.ac │ │ └── sc68.c │ │ └── unice68 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── README │ │ ├── configure.ac │ │ ├── ice-m68k │ │ ├── README │ │ ├── ice-pack-235.s │ │ ├── ice_unp2.s │ │ └── ice_unpa.s │ │ ├── unice68.c │ │ ├── unice68.h │ │ ├── unice68_pack.c │ │ ├── unice68_unpack.c │ │ └── unice68_version.c ├── shellexec │ ├── COPYING │ ├── Makefile.am │ ├── shellexec.c │ ├── shellexec.h │ ├── shellexecutil.c │ └── shellexecutil.h ├── shellexecui │ ├── COPYING │ ├── Makefile.am │ ├── callbacks.c │ ├── callbacks.h │ ├── interface.c │ ├── interface.h │ ├── shellexec.glade │ ├── shellexec.gladep │ ├── shellexecui.c │ ├── support.c │ └── support.h ├── shn │ ├── AUTHORS │ ├── COPYING │ ├── LICENSE.shorten │ ├── Makefile.am │ ├── README │ ├── libshn │ │ ├── array.c │ │ ├── bitshift.h │ │ ├── convert.c │ │ ├── misc.c │ │ ├── output.c │ │ ├── seek.c │ │ ├── shn.h │ │ ├── shorten.c │ │ ├── shorten.h │ │ ├── sulawalaw.c │ │ ├── vario.c │ │ └── wave.c │ └── shnplugin.c ├── sid │ ├── COPYING │ ├── Makefile.am │ ├── csid.cpp │ ├── csid.h │ ├── plugin.c │ └── sidplay-libs │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── builders │ │ └── resid-builder │ │ │ ├── acinclude.m4 │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── include │ │ │ ├── config.h │ │ │ └── sidplay │ │ │ │ └── builders │ │ │ │ └── resid.h │ │ │ ├── src │ │ │ ├── resid-builder.cpp │ │ │ ├── resid-emu.h │ │ │ └── resid.cpp │ │ │ ├── unix │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ ├── mkinstalldirs │ │ │ ├── my_macros.m4 │ │ │ └── sidplay2.m4 │ │ │ └── win │ │ │ └── VC │ │ │ ├── config.h │ │ │ └── resid_builder.dsp │ │ ├── configure │ │ ├── configure.ac │ │ ├── libsidplay │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── README │ │ ├── TODO │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.ac │ │ ├── include │ │ │ ├── config.h │ │ │ ├── sidenv.h │ │ │ └── sidplay │ │ │ │ ├── Buffer.h │ │ │ │ ├── SidTune.h │ │ │ │ ├── SmartPtr.h │ │ │ │ ├── c64env.h │ │ │ │ ├── component.h │ │ │ │ ├── event.h │ │ │ │ ├── sid2types.h │ │ │ │ ├── sidbuilder.h │ │ │ │ ├── sidconfig.h │ │ │ │ ├── sidendian.h │ │ │ │ ├── sidint.h │ │ │ │ ├── sidplay2.h │ │ │ │ ├── sidtypes.h │ │ │ │ └── sidusage.h │ │ ├── src │ │ │ ├── c64 │ │ │ │ ├── c64cia.h │ │ │ │ ├── c64vic.h │ │ │ │ └── c64xsid.h │ │ │ ├── config.cpp │ │ │ ├── event.cpp │ │ │ ├── kernal.bin │ │ │ ├── mixer.cpp │ │ │ ├── mos6510 │ │ │ │ ├── conf6510.h │ │ │ │ ├── cycle_based │ │ │ │ │ ├── mos6510c.h │ │ │ │ │ ├── mos6510c.i │ │ │ │ │ ├── sid6510c.h │ │ │ │ │ └── sid6510c.i │ │ │ │ ├── mos6510.cpp │ │ │ │ ├── mos6510.h │ │ │ │ └── opcodes.h │ │ │ ├── mos6526 │ │ │ │ ├── mos6526.cpp │ │ │ │ └── mos6526.h │ │ │ ├── mos656x │ │ │ │ ├── mos656x.cpp │ │ │ │ └── mos656x.h │ │ │ ├── nullsid.h │ │ │ ├── player.cpp │ │ │ ├── player.h │ │ │ ├── poweron.bin │ │ │ ├── psiddrv.a65 │ │ │ ├── psiddrv.bin │ │ │ ├── psiddrv.cpp │ │ │ ├── reloc65.c │ │ │ ├── sid6526 │ │ │ │ ├── sid6526.cpp │ │ │ │ └── sid6526.h │ │ │ ├── sidplay2.cpp │ │ │ ├── sidtune │ │ │ │ ├── IconInfo.cpp │ │ │ │ ├── InfoFile.cpp │ │ │ │ ├── MUS.cpp │ │ │ │ ├── PP20.cpp │ │ │ │ ├── PP20.h │ │ │ │ ├── PP20_Defs.h │ │ │ │ ├── PSID.cpp │ │ │ │ ├── SidTune.cpp │ │ │ │ ├── SidTuneCfg.h │ │ │ │ ├── SidTuneTools.cpp │ │ │ │ └── SidTuneTools.h │ │ │ └── xsid │ │ │ │ ├── xsid.cpp │ │ │ │ └── xsid.h │ │ ├── unix │ │ │ ├── ac_compile_check_sizeof.m4 │ │ │ ├── ac_create_stdint_h.m4 │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── libsidplay2.spec │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ ├── mkinstalldirs │ │ │ ├── my_macros.m4 │ │ │ ├── sidconfig.h │ │ │ └── sidint.h │ │ └── win │ │ │ └── VC │ │ │ ├── config.h │ │ │ ├── libsidplay.dsp │ │ │ ├── sidconfig.h │ │ │ └── sidint.h │ │ ├── libsidutils │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── README │ │ ├── TODO │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.ac │ │ ├── include │ │ │ ├── config.h │ │ │ └── sidplay │ │ │ │ └── utils │ │ │ │ ├── SidDatabase.h │ │ │ │ ├── SidFilter.h │ │ │ │ ├── SidTuneMod.h │ │ │ │ ├── SidUsage.h │ │ │ │ └── libini.h │ │ ├── src │ │ │ ├── MD5 │ │ │ │ ├── MD5.cpp │ │ │ │ ├── MD5.h │ │ │ │ └── MD5_Defs.h │ │ │ ├── SidDatabase.cpp │ │ │ ├── SidFilter.cpp │ │ │ ├── SidTuneMod.cpp │ │ │ ├── SidUsage.cpp │ │ │ ├── ini │ │ │ │ ├── headings.h │ │ │ │ ├── headings.i │ │ │ │ ├── ini.cpp │ │ │ │ ├── ini.h │ │ │ │ ├── keys.h │ │ │ │ ├── keys.i │ │ │ │ ├── list.h │ │ │ │ ├── list.i │ │ │ │ └── types.i │ │ │ └── smm0.h │ │ ├── unix │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── libsidutils.spec │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ ├── mkinstalldirs │ │ │ ├── my_macros.m4 │ │ │ └── sidplay2.m4 │ │ └── win │ │ │ └── VC │ │ │ ├── config.h │ │ │ └── libsidutils.dsp │ │ ├── resid │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── README │ │ ├── THANKS │ │ ├── TODO │ │ ├── aclocal.m4 │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── depcomp │ │ ├── envelope.cpp │ │ ├── envelope.h │ │ ├── extfilt.cpp │ │ ├── extfilt.h │ │ ├── filter.cpp │ │ ├── filter.h │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── pot.cpp │ │ ├── pot.h │ │ ├── samp2src.pl │ │ ├── sid.cpp │ │ ├── sid.h │ │ ├── siddefs.h │ │ ├── spline.h │ │ ├── version.cpp │ │ ├── voice.cpp │ │ ├── voice.h │ │ ├── wave.cpp │ │ ├── wave.h │ │ ├── wave6581_PST.cpp │ │ ├── wave6581_PST.dat │ │ ├── wave6581_PS_.cpp │ │ ├── wave6581_PS_.dat │ │ ├── wave6581_P_T.cpp │ │ ├── wave6581_P_T.dat │ │ ├── wave6581__ST.cpp │ │ ├── wave6581__ST.dat │ │ ├── wave8580_PST.cpp │ │ ├── wave8580_PST.dat │ │ ├── wave8580_PS_.cpp │ │ ├── wave8580_PS_.dat │ │ ├── wave8580_P_T.cpp │ │ ├── wave8580_P_T.dat │ │ ├── wave8580__ST.cpp │ │ └── wave8580__ST.dat │ │ └── unix │ │ ├── config.guess │ │ ├── config.h │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── missing │ │ └── mkinstalldirs ├── sndfile │ ├── COPYING │ ├── Makefile.am │ └── sndfile.c ├── soundtouch │ ├── Makefile.am │ ├── plugin.c │ ├── soundtouch │ │ ├── COPYING.TXT │ │ ├── include │ │ │ ├── BPMDetect.h │ │ │ ├── FIFOSampleBuffer.h │ │ │ ├── FIFOSamplePipe.h │ │ │ ├── STTypes.h │ │ │ ├── SoundTouch.h │ │ │ └── soundtouch_config.h │ │ └── source │ │ │ └── SoundTouch │ │ │ ├── AAFilter.cpp │ │ │ ├── AAFilter.h │ │ │ ├── BPMDetect.cpp │ │ │ ├── FIFOSampleBuffer.cpp │ │ │ ├── FIRFilter.cpp │ │ │ ├── FIRFilter.h │ │ │ ├── InterpolateCubic.cpp │ │ │ ├── InterpolateCubic.h │ │ │ ├── InterpolateLinear.cpp │ │ │ ├── InterpolateLinear.h │ │ │ ├── InterpolateShannon.cpp │ │ │ ├── InterpolateShannon.h │ │ │ ├── PeakFinder.cpp │ │ │ ├── PeakFinder.h │ │ │ ├── RateTransposer.cpp │ │ │ ├── RateTransposer.h │ │ │ ├── SoundTouch.cpp │ │ │ ├── SoundTouch.sln │ │ │ ├── SoundTouch.vcxproj │ │ │ ├── TDStretch.cpp │ │ │ ├── TDStretch.h │ │ │ ├── cpu_detect.h │ │ │ ├── cpu_detect_x86.cpp │ │ │ ├── mmx_optimized.cpp │ │ │ └── sse_optimized.cpp │ ├── st.cpp │ └── st.h ├── supereq │ ├── COPYING │ ├── Makefile.am │ ├── dsp_superequ.txt │ ├── libsupereq │ │ ├── Equ.cpp │ │ ├── Equ.h │ │ ├── Fftsg_fl.c │ │ └── paramlist.hpp │ └── supereq.c ├── tta │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── libtta │ │ ├── filter.h │ │ ├── ttadec.c │ │ └── ttadec.h │ └── ttaplug.c ├── v2m │ ├── COPYING │ ├── v2 │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── libv2.h │ │ ├── phonemtab.h │ │ ├── presets.v2b │ │ ├── ronan.cpp │ │ ├── ronan.h │ │ ├── sounddef.cpp │ │ ├── sounddef.h │ │ ├── synth.h │ │ ├── synth_core.cpp │ │ ├── tool │ │ │ ├── file.cpp │ │ │ └── file.h │ │ ├── types.h │ │ ├── v2mconv.cpp │ │ ├── v2mconv.h │ │ ├── v2mplayer.cpp │ │ └── v2mplayer.h │ └── v2mplug.cpp ├── vfs_curl │ ├── COPYING │ ├── Makefile.am │ ├── vfs_curl.c │ └── vfs_curl.h ├── vfs_zip │ ├── COPYING │ ├── Makefile.am │ └── vfs_zip.c ├── vorbis │ ├── COPYING │ ├── Makefile.am │ └── vorbis.c ├── vtx │ ├── COPYING │ ├── Makefile.am │ ├── libayemu │ │ ├── ay8912.c │ │ ├── ayemu.h │ │ ├── ayemu_8912.h │ │ ├── ayemu_vtxfile.h │ │ ├── lh5dec.c │ │ └── vtxfile.c │ └── vtx.c ├── waveout │ ├── COPYING │ └── waveout.c ├── wavpack │ ├── COPYING │ ├── Makefile.am │ └── wavpack.c ├── wildmidi │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── include │ │ └── wildmidi_lib.h │ ├── src │ │ ├── wildmidi.c │ │ └── wildmidi_lib.c │ └── wildmidiplug.c └── wma │ ├── COPYING │ ├── Makefile.am │ ├── asfheader.c │ ├── libasf │ ├── asf.c │ └── asf.h │ ├── libwma │ ├── asm_arm.h │ ├── codeclib_misc.h │ ├── ffmpeg_bitstream.c │ ├── ffmpeg_get_bits.h │ ├── ffmpeg_intreadwrite.h │ ├── fft-ffmpeg.c │ ├── fft-ffmpeg_arm.h │ ├── fft.h │ ├── mdct.c │ ├── mdct.h │ ├── mdct_lookup.c │ ├── mdct_lookup.h │ ├── types.h │ ├── wmadata.h │ ├── wmadec.h │ ├── wmadeci.c │ ├── wmafixed.c │ └── wmafixed.h │ └── wma_plugin.c ├── po ├── ChangeLog ├── LINGUAS ├── POTFILES.in ├── POTFILES.skip ├── be.po ├── bg.po ├── bn.po ├── ca.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en_GB.po ├── es.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── gl.po ├── he.po ├── hr.po ├── hu.po ├── id.po ├── ie.po ├── it.po ├── ja.po ├── ka.po ├── kk.po ├── km.po ├── ko.po ├── lg.po ├── lt.po ├── lv.po ├── nb.po ├── ne.po ├── nl.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── si_LK.po ├── sk.po ├── sl.po ├── sr.po ├── sr@latin.po ├── sv.po ├── te.po ├── tr.po ├── ug.po ├── uk.po ├── vi.po ├── zh_CN.po └── zh_TW.po ├── premake5-tools.lua ├── premake5.lua ├── scripts ├── configure_minimal.sh ├── extract_translators.pl ├── glibc-check.sh ├── package_headers.sh ├── packages_build.sh ├── pluginstall.sh ├── portable_build.sh ├── portable_package.sh ├── portable_package_static.sh ├── portable_postbuild.sh ├── portable_upload.sh ├── quickinstall.sh ├── release_build.sh ├── setup_xcode_variables.sh ├── static_build.sh ├── static_install.sh ├── test.sh ├── tx-sync.sh ├── u8_casemap │ ├── UnicodeData.txt │ └── u8_casemap.pl ├── u8_gperf.sh └── windows_postbuild.sh ├── shared ├── Makefile.am ├── README ├── analyzer │ ├── Makefile.am │ ├── analyzer.c │ └── analyzer.h ├── ctmap.c ├── ctmap.h ├── deletefromdisk.c ├── deletefromdisk.h ├── eqpreset.c ├── eqpreset.h ├── filereader │ ├── Makefile.am │ ├── filereader.c │ └── filereader.h ├── growableBuffer.c ├── growableBuffer.h ├── mp4tagutil.c ├── mp4tagutil.h ├── parser.c ├── parser.h ├── pluginsettings.c ├── pluginsettings.h ├── scope │ ├── Makefile.am │ ├── scope.c │ └── scope.h ├── scriptable │ ├── Makefile.am │ ├── scriptable.c │ ├── scriptable.h │ ├── scriptable_dsp.c │ ├── scriptable_dsp.h │ ├── scriptable_encoder.c │ ├── scriptable_encoder.h │ ├── scriptable_model.c │ └── scriptable_model.h ├── tftintutil.c ├── tftintutil.h ├── trkproperties_shared.c ├── trkproperties_shared.h ├── undo │ ├── Makefile.am │ ├── undobuffer.c │ ├── undobuffer.h │ ├── undomanager.c │ └── undomanager.h └── windows │ ├── Resources.rc │ ├── fopen.c │ ├── include │ ├── fnmatch.h │ └── sys │ │ ├── features.h │ │ ├── queue.h │ │ └── socket.h │ ├── mingw32_layer.h │ ├── mkdir.c │ ├── mkstemp.c │ ├── mmap.c │ ├── rename.c │ ├── rmdir.c │ ├── scandir.c │ ├── stat.c │ ├── strcasestr.c │ ├── strndup.c │ ├── utils.c │ └── utils.h ├── shortlicense.zlib ├── src ├── Apple │ └── fft_accelerate.c ├── ConvertUTF │ ├── ConvertUTF.c │ ├── ConvertUTF.h │ └── readme.txt ├── Makefile.am ├── actionhandlers.c ├── actionhandlers.h ├── buffered_file_writer.c ├── buffered_file_writer.h ├── cocoautil.h ├── cocoautil.m ├── conf.c ├── conf.h ├── coreplugin.c ├── coreplugin.h ├── cueutil.c ├── cueutil.h ├── decodedblock.c ├── decodedblock.h ├── dsp.c ├── dsp.h ├── dsppreset.c ├── dsppreset.h ├── escape.c ├── escape.h ├── fft.c ├── fft.h ├── handler.c ├── handler.h ├── junklib.c ├── junklib.h ├── logger.c ├── logger.h ├── main.c ├── md5 │ ├── md5.c │ └── md5.h ├── messagepump.c ├── messagepump.h ├── metacache.c ├── metacache.h ├── moduleconf.h ├── playlist.c ├── playlist.h ├── playmodes.c ├── playmodes.h ├── playqueue.c ├── playqueue.h ├── plmeta.c ├── plmeta.h ├── pltmeta.c ├── pltmeta.h ├── plugins.c ├── plugins.h ├── premix.c ├── premix.h ├── replaygain.c ├── replaygain.h ├── resizable_buffer.c ├── resizable_buffer.h ├── ringbuf.c ├── ringbuf.h ├── scriptable │ ├── scriptable_shared.c │ └── scriptable_shared.h ├── sj_to_unicode.h ├── sort.c ├── sort.h ├── streamer.c ├── streamer.h ├── streamreader.c ├── streamreader.h ├── tf.c ├── tf.h ├── threading.h ├── threading_pthread.c ├── u8_lc_map.h ├── u8_uc_map.h ├── undo │ ├── undo_playlist.c │ └── undo_playlist.h ├── utf8.c ├── utf8.h ├── vfs.c ├── vfs.h ├── vfs_stdio.c ├── viz.c ├── viz.h ├── volume.c └── volume.h ├── tools ├── docker │ ├── 14.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-builder │ │ ├── Dockerfile-builder-distro │ │ ├── Dockerfile-test-tarball │ │ ├── bootstrap-distro.sh │ │ ├── bootstrap.sh │ │ ├── build.sh │ │ ├── test-tarball.sh │ │ └── test.sh │ ├── 18.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-builder │ │ ├── Dockerfile-distcheck │ │ ├── Dockerfile-test │ │ ├── Dockerfile-unittest │ │ ├── bootstrap.sh │ │ ├── build.sh │ │ ├── distcheck.sh │ │ ├── test.sh │ │ └── unittest.sh │ ├── 20.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-builder │ │ ├── Dockerfile-distcheck │ │ ├── Dockerfile-test │ │ ├── Dockerfile-unittest │ │ ├── bootstrap.sh │ │ ├── build.sh │ │ ├── distcheck.sh │ │ ├── test.sh │ │ └── unittest.sh │ └── README.md ├── glade │ ├── ABOUT-NLS │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── FAQ │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── TODO │ ├── configure.in │ ├── doc │ │ ├── C │ │ │ ├── Makefile.am │ │ │ ├── glade-faq │ │ │ │ ├── Makefile.am │ │ │ │ ├── glade-faq-C.omf │ │ │ │ ├── glade-faq.xml │ │ │ │ └── legal.xml │ │ │ └── glade-user-guide │ │ │ │ ├── Makefile.am │ │ │ │ ├── figures │ │ │ │ ├── edit-menu.png │ │ │ │ ├── file-menu.png │ │ │ │ ├── glade-windows.png │ │ │ │ ├── grid-options.png │ │ │ │ ├── help-menu.png │ │ │ │ ├── menu.png │ │ │ │ ├── options-c.png │ │ │ │ ├── options-general.png │ │ │ │ ├── options-libglade.png │ │ │ │ ├── settings-menu.png │ │ │ │ ├── snap-options.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── view-menu.png │ │ │ │ ├── window-main.png │ │ │ │ ├── window-palette-add.png │ │ │ │ ├── window-palette-basic.png │ │ │ │ └── window-palette-gnome.png │ │ │ │ ├── glade-user-guide-C.omf │ │ │ │ ├── glade-user-guide.xml │ │ │ │ └── legal.xml │ │ ├── Makefile.am │ │ ├── ro │ │ │ ├── Makefile.am │ │ │ └── glade-faq │ │ │ │ ├── Makefile.am │ │ │ │ ├── glade-faq-ro.omf │ │ │ │ ├── glade-faq.xml │ │ │ │ └── legal.xml │ │ └── xmldocs.make │ ├── examples │ │ └── editor │ │ │ ├── AUTHORS │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── acconfig.h │ │ │ ├── autogen.sh │ │ │ ├── configure.in │ │ │ ├── editor.glade │ │ │ ├── editor.gladep │ │ │ ├── po │ │ │ ├── ChangeLog │ │ │ └── POTFILES.in │ │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── callbacks.c │ │ │ ├── callbacks.h │ │ │ ├── interface.c │ │ │ ├── interface.h │ │ │ ├── main.c │ │ │ ├── support.c │ │ │ └── support.h │ ├── glade-2.desktop.in │ ├── glade-2.png │ ├── glade.spec.in │ ├── glade │ │ ├── Makefile.am │ │ ├── data │ │ │ ├── Makefile.am │ │ │ └── gtk │ │ │ │ ├── Makefile.am │ │ │ │ └── autogen.sh │ │ ├── debug.c │ │ ├── debug.h │ │ ├── editor.c │ │ ├── editor.h │ │ ├── gb.c │ │ ├── gb.h │ │ ├── gbsource.c │ │ ├── gbsource.h │ │ ├── gbwidget.c │ │ ├── gbwidget.h │ │ ├── gbwidgets │ │ │ ├── Makefile.am │ │ │ ├── gbaboutdialog.c │ │ │ ├── gbaccellabel.c │ │ │ ├── gbalignment.c │ │ │ ├── gbarrow.c │ │ │ ├── gbaspectframe.c │ │ │ ├── gbbutton.c │ │ │ ├── gbcalendar.c │ │ │ ├── gbcellview.c │ │ │ ├── gbcheckbutton.c │ │ │ ├── gbcheckmenuitem.c │ │ │ ├── gbclist.c │ │ │ ├── gbcolorbutton.c │ │ │ ├── gbcolorselection.c │ │ │ ├── gbcolorselectiondialog.c │ │ │ ├── gbcombo.c │ │ │ ├── gbcombobox.c │ │ │ ├── gbcomboboxentry.c │ │ │ ├── gbctree.c │ │ │ ├── gbcurve.c │ │ │ ├── gbcustom.c │ │ │ ├── gbdialog.c │ │ │ ├── gbdrawingarea.c │ │ │ ├── gbentry.c │ │ │ ├── gbeventbox.c │ │ │ ├── gbexpander.c │ │ │ ├── gbfilechooserbutton.c │ │ │ ├── gbfilechooserdialog.c │ │ │ ├── gbfilechooserwidget.c │ │ │ ├── gbfileselection.c │ │ │ ├── gbfixed.c │ │ │ ├── gbfontbutton.c │ │ │ ├── gbfontselection.c │ │ │ ├── gbfontselectiondialog.c │ │ │ ├── gbframe.c │ │ │ ├── gbgammacurve.c │ │ │ ├── gbhandlebox.c │ │ │ ├── gbhbox.c │ │ │ ├── gbhbuttonbox.c │ │ │ ├── gbhpaned.c │ │ │ ├── gbhruler.c │ │ │ ├── gbhscale.c │ │ │ ├── gbhscrollbar.c │ │ │ ├── gbhseparator.c │ │ │ ├── gbiconview.c │ │ │ ├── gbimage.c │ │ │ ├── gbimagemenuitem.c │ │ │ ├── gbinputdialog.c │ │ │ ├── gblabel.c │ │ │ ├── gblayout.c │ │ │ ├── gblist.c │ │ │ ├── gblistitem.c │ │ │ ├── gbmenu.c │ │ │ ├── gbmenubar.c │ │ │ ├── gbmenuitem.c │ │ │ ├── gbmenutoolbutton.c │ │ │ ├── gbnotebook.c │ │ │ ├── gboptionmenu.c │ │ │ ├── gbpreview.c │ │ │ ├── gbprogressbar.c │ │ │ ├── gbradiobutton.c │ │ │ ├── gbradiomenuitem.c │ │ │ ├── gbradiotoolbutton.c │ │ │ ├── gbscrolledwindow.c │ │ │ ├── gbseparatormenuitem.c │ │ │ ├── gbseparatortoolitem.c │ │ │ ├── gbspinbutton.c │ │ │ ├── gbstatusbar.c │ │ │ ├── gbtable.c │ │ │ ├── gbtextview.c │ │ │ ├── gbtogglebutton.c │ │ │ ├── gbtoggletoolbutton.c │ │ │ ├── gbtoolbar.c │ │ │ ├── gbtoolbutton.c │ │ │ ├── gbtoolitem.c │ │ │ ├── gbtreeview.c │ │ │ ├── gbvbox.c │ │ │ ├── gbvbuttonbox.c │ │ │ ├── gbviewport.c │ │ │ ├── gbvpaned.c │ │ │ ├── gbvruler.c │ │ │ ├── gbvscale.c │ │ │ ├── gbvscrollbar.c │ │ │ ├── gbvseparator.c │ │ │ └── gbwindow.c │ │ ├── glade-parser.c │ │ ├── glade-parser.h │ │ ├── glade.c │ │ ├── glade.h │ │ ├── glade_atk.c │ │ ├── glade_atk.h │ │ ├── glade_clipboard.c │ │ ├── glade_clipboard.h │ │ ├── glade_gnome.c │ │ ├── glade_gnome.h │ │ ├── glade_gnomedblib.c │ │ ├── glade_gnomedblib.h │ │ ├── glade_gnomelib.c │ │ ├── glade_gnomelib.h │ │ ├── glade_gtk12lib.c │ │ ├── glade_gtk12lib.h │ │ ├── glade_keys_dialog.c │ │ ├── glade_keys_dialog.h │ │ ├── glade_menu_editor.c │ │ ├── glade_menu_editor.h │ │ ├── glade_palette.c │ │ ├── glade_palette.h │ │ ├── glade_plugin.c │ │ ├── glade_plugin.h │ │ ├── glade_project.c │ │ ├── glade_project.h │ │ ├── glade_project_options.c │ │ ├── glade_project_options.h │ │ ├── glade_project_view.c │ │ ├── glade_project_view.h │ │ ├── glade_project_window.c │ │ ├── glade_project_window.h │ │ ├── glade_widget_data.c │ │ ├── glade_widget_data.h │ │ ├── gladeconfig.h │ │ ├── gnome-db │ │ │ ├── Makefile.am │ │ │ ├── gnomedbcombo.c │ │ │ ├── gnomedbconnectprop.c │ │ │ ├── gnomedbdsnconfig.c │ │ │ ├── gnomedbdsndruid.c │ │ │ ├── gnomedbeditor.c │ │ │ ├── gnomedberror.c │ │ │ ├── gnomedberrordlg.c │ │ │ ├── gnomedbform.c │ │ │ ├── gnomedbgraybar.c │ │ │ ├── gnomedbgrid.c │ │ │ ├── gnomedblogin.c │ │ │ ├── gnomedblogindlg.c │ │ │ ├── gnomedbprovidersel.c │ │ │ ├── gnomedbsourcesel.c │ │ │ └── gnomedbtableeditor.c │ │ ├── gnome │ │ │ ├── Makefile.am │ │ │ ├── bonobodock.c │ │ │ ├── bonobodockitem.c │ │ │ ├── gnomeabout.c │ │ │ ├── gnomeapp.c │ │ │ ├── gnomeappbar.c │ │ │ ├── gnomecanvas.c │ │ │ ├── gnomecolorpicker.c │ │ │ ├── gnomecontrol.c │ │ │ ├── gnomedateedit.c │ │ │ ├── gnomedialog.c │ │ │ ├── gnomedruid.c │ │ │ ├── gnomedruidpageedge.c │ │ │ ├── gnomedruidpagestandard.c │ │ │ ├── gnomeentry.c │ │ │ ├── gnomefileentry.c │ │ │ ├── gnomefontpicker.c │ │ │ ├── gnomehref.c │ │ │ ├── gnomeiconentry.c │ │ │ ├── gnomeiconlist.c │ │ │ ├── gnomeiconselection.c │ │ │ ├── gnomemessagebox.c │ │ │ ├── gnomepixmap.c │ │ │ ├── gnomepixmapentry.c │ │ │ └── gnomepropertybox.c │ │ ├── graphics │ │ │ ├── aboutdialog.xpm │ │ │ ├── accellabel.xpm │ │ │ ├── alignment.xpm │ │ │ ├── arrow.xpm │ │ │ ├── aspectframe.xpm │ │ │ ├── bonobo-dock-item.xpm │ │ │ ├── bonobo-dock.xpm │ │ │ ├── button.xpm │ │ │ ├── calendar.xpm │ │ │ ├── cellview.xpm │ │ │ ├── checkbutton.xpm │ │ │ ├── checkmenuitem.xpm │ │ │ ├── clist.xpm │ │ │ ├── colorbutton.xpm │ │ │ ├── colorseldialog.xpm │ │ │ ├── colorselection.xpm │ │ │ ├── combo.xpm │ │ │ ├── combobox.xpm │ │ │ ├── comboboxentry.xpm │ │ │ ├── ctree.xpm │ │ │ ├── curve.xpm │ │ │ ├── custom.xpm │ │ │ ├── custom_bg.xpm │ │ │ ├── dialog.xpm │ │ │ ├── drawingarea.xpm │ │ │ ├── entry.xpm │ │ │ ├── eventbox.xpm │ │ │ ├── expander.xpm │ │ │ ├── filechooserbutton.xpm │ │ │ ├── filechooserdialog.xpm │ │ │ ├── filechooserwidget.xpm │ │ │ ├── fileseldialog.xpm │ │ │ ├── fixed.xpm │ │ │ ├── fontbutton.xpm │ │ │ ├── fontsel.xpm │ │ │ ├── fontseldialog.xpm │ │ │ ├── frame.xpm │ │ │ ├── gammacurve.xpm │ │ │ ├── glade-atk.xpm │ │ │ ├── glade_logo.png │ │ │ ├── gnome-about.xpm │ │ │ ├── gnome-animator.xpm │ │ │ ├── gnome-app.xpm │ │ │ ├── gnome-appbar.xpm │ │ │ ├── gnome-calculator.xpm │ │ │ ├── gnome-canvas.xpm │ │ │ ├── gnome-colorpicker.xpm │ │ │ ├── gnome-control.xpm │ │ │ ├── gnome-dateedit.xpm │ │ │ ├── gnome-db-browser.xpm │ │ │ ├── gnome-db-combo.xpm │ │ │ ├── gnome-db-connection-properties.xpm │ │ │ ├── gnome-db-connectsel.xpm │ │ │ ├── gnome-db-dataset.xpm │ │ │ ├── gnome-db-designer.xpm │ │ │ ├── gnome-db-dsn-druid.xpm │ │ │ ├── gnome-db-dsnconfig.xpm │ │ │ ├── gnome-db-editor.xpm │ │ │ ├── gnome-db-entry.xpm │ │ │ ├── gnome-db-error-dlg.xpm │ │ │ ├── gnome-db-error.xpm │ │ │ ├── gnome-db-export.xpm │ │ │ ├── gnome-db-form.xpm │ │ │ ├── gnome-db-graybar.xpm │ │ │ ├── gnome-db-grid.xpm │ │ │ ├── gnome-db-iconlist.xpm │ │ │ ├── gnome-db-label.xpm │ │ │ ├── gnome-db-list.xpm │ │ │ ├── gnome-db-log-viewer.xpm │ │ │ ├── gnome-db-login-dlg.xpm │ │ │ ├── gnome-db-login.xpm │ │ │ ├── gnome-db-provider-sel.xpm │ │ │ ├── gnome-db-query-builder.xpm │ │ │ ├── gnome-db-report.xpm │ │ │ ├── gnome-db-sourcesel.xpm │ │ │ ├── gnome-db-sql-editor.xpm │ │ │ ├── gnome-db-table-editor.xpm │ │ │ ├── gnome-db-window.xpm │ │ │ ├── gnome-dialog.xpm │ │ │ ├── gnome-dock-band.xpm │ │ │ ├── gnome-dock-item.xpm │ │ │ ├── gnome-dock.xpm │ │ │ ├── gnome-druid-page-finish.xpm │ │ │ ├── gnome-druid-page-standard.xpm │ │ │ ├── gnome-druid-page-start.xpm │ │ │ ├── gnome-druid.xpm │ │ │ ├── gnome-entry.xpm │ │ │ ├── gnome-fileentry.xpm │ │ │ ├── gnome-fontpicker.xpm │ │ │ ├── gnome-href.xpm │ │ │ ├── gnome-iconentry.xpm │ │ │ ├── gnome-iconlist.xpm │ │ │ ├── gnome-iconselection.xpm │ │ │ ├── gnome-less.xpm │ │ │ ├── gnome-messagebox.xpm │ │ │ ├── gnome-numberentry.xpm │ │ │ ├── gnome-papersel.xpm │ │ │ ├── gnome-pixmap.xpm │ │ │ ├── gnome-pixmapentry.xpm │ │ │ ├── gnome-print-papersel.xpm │ │ │ ├── gnome-propertybox.xpm │ │ │ ├── gnome-spell.xpm │ │ │ ├── gnome-stock.xpm │ │ │ ├── gtk-clock.xpm │ │ │ ├── gtk-dial.xpm │ │ │ ├── handlebox.xpm │ │ │ ├── hbox.xpm │ │ │ ├── hbuttonbox.xpm │ │ │ ├── hpaned.xpm │ │ │ ├── hruler.xpm │ │ │ ├── hscale.xpm │ │ │ ├── hscrollbar.xpm │ │ │ ├── hseparator.xpm │ │ │ ├── iconview.xpm │ │ │ ├── image.xpm │ │ │ ├── inputdialog.xpm │ │ │ ├── label.xpm │ │ │ ├── layout.xpm │ │ │ ├── list.xpm │ │ │ ├── listitem.xpm │ │ │ ├── menubar.xpm │ │ │ ├── menuitem.xpm │ │ │ ├── menutoolbutton.xpm │ │ │ ├── new.xpm │ │ │ ├── notebook.xpm │ │ │ ├── open.xpm │ │ │ ├── optionmenu.xpm │ │ │ ├── options.xpm │ │ │ ├── packer.xpm │ │ │ ├── pixmap.xpm │ │ │ ├── placeholder.xpm │ │ │ ├── popup.xpm │ │ │ ├── popupmenu.xpm │ │ │ ├── preview.xpm │ │ │ ├── progressbar.xpm │ │ │ ├── radiobutton.xpm │ │ │ ├── radiomenuitem.xpm │ │ │ ├── radiotoolbutton.xpm │ │ │ ├── save.xpm │ │ │ ├── scrolledwindow.xpm │ │ │ ├── selector.xpm │ │ │ ├── separatortoolitem.xpm │ │ │ ├── source.xpm │ │ │ ├── spinbutton.xpm │ │ │ ├── statusbar.xpm │ │ │ ├── table.xpm │ │ │ ├── text.xpm │ │ │ ├── togglebutton.xpm │ │ │ ├── toggletoolbutton.xpm │ │ │ ├── toolbar.xpm │ │ │ ├── toolbutton.xpm │ │ │ ├── toolitem.xpm │ │ │ ├── tree.xpm │ │ │ ├── treeitem.xpm │ │ │ ├── unknown.xpm │ │ │ ├── vbox.xpm │ │ │ ├── vbuttonbox.xpm │ │ │ ├── viewport.xpm │ │ │ ├── vpaned.xpm │ │ │ ├── vruler.xpm │ │ │ ├── vscale.xpm │ │ │ ├── vscrollbar.xpm │ │ │ ├── vseparator.xpm │ │ │ └── window.xpm │ │ ├── keys.c │ │ ├── keys.h │ │ ├── load.c │ │ ├── load.h │ │ ├── main.c │ │ ├── named_icons.c │ │ ├── palette.c │ │ ├── palette.h │ │ ├── property.c │ │ ├── property.h │ │ ├── save.c │ │ ├── save.h │ │ ├── source.c │ │ ├── source.h │ │ ├── source_os2.c │ │ ├── source_os2.h │ │ ├── styles.c │ │ ├── styles.h │ │ ├── tree.c │ │ ├── tree.h │ │ ├── utils.c │ │ └── utils.h │ ├── intltool-extract.in │ ├── intltool-merge.in │ ├── intltool-update.in │ ├── mkinstalldirs │ ├── omf-install │ │ ├── Makefile.am │ │ ├── glade-faq-C.omf │ │ ├── glade-faq-ro.omf │ │ └── glade-user-guide-C.omf │ └── po │ │ ├── ChangeLog │ │ ├── LINGUAS │ │ ├── Makefile.in.in │ │ ├── POTFILES.in │ │ ├── POTFILES.skip │ │ ├── am.po │ │ ├── ar.po │ │ ├── az.po │ │ ├── be.po │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── dz.po │ │ ├── el.po │ │ ├── en_CA.po │ │ ├── en_GB.po │ │ ├── es.po │ │ ├── et.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── ga.po │ │ ├── gl.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ko.po │ │ ├── lv.po │ │ ├── mk.po │ │ ├── ml.po │ │ ├── ms.po │ │ ├── nb.po │ │ ├── ne.po │ │ ├── nl.po │ │ ├── nn.po │ │ ├── oc.po │ │ ├── pa.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── rw.po │ │ ├── sk.po │ │ ├── sq.po │ │ ├── sr.po │ │ ├── sr@Latn.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── yi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── localize │ ├── extract.pm │ ├── localize.pl │ ├── perl_lib │ │ └── Find │ │ │ └── Rule.pm │ └── update-po.sh ├── packages │ ├── arch.sh │ ├── arch_install │ ├── arch_pkginfo │ ├── deb_control │ ├── deb_postinst │ ├── deb_postrm │ ├── debian.sh │ ├── slack-desc │ ├── slack-doinst.sh │ └── slack.sh ├── pluginfo │ ├── Makefile │ └── pluginfo.c └── windows-installer │ ├── deadbeef.bmp │ └── deadbeef.iss ├── translation ├── extra.c └── plugins.c ├── translators.txt ├── u8_lc_map.txt ├── u8_uc_map.txt └── yasmwrapper.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | **/.git 2 | -------------------------------------------------------------------------------- /.github/id_ed25519.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/.github/id_ed25519.enc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/.tx/config -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/linux-build: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | make -j8 || exit 1 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/ABOUT-NLS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/COPYING.GPLv2 -------------------------------------------------------------------------------- /COPYING.LGPLv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/COPYING.LGPLv2.1 -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/ChangeLog -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/README.md -------------------------------------------------------------------------------- /Tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests.mk -------------------------------------------------------------------------------- /Tests/CoreAudioTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/CoreAudioTests.m -------------------------------------------------------------------------------- /Tests/CuesheetTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/CuesheetTests.cpp -------------------------------------------------------------------------------- /Tests/DDBTestInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/DDBTestInitializer.h -------------------------------------------------------------------------------- /Tests/DDBTestInitializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/DDBTestInitializer.m -------------------------------------------------------------------------------- /Tests/GrowableBufferTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/GrowableBufferTests.cpp -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/JunklibTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/JunklibTests.cpp -------------------------------------------------------------------------------- /Tests/M3UTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/M3UTests.cpp -------------------------------------------------------------------------------- /Tests/MP3DecoderTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/MP3DecoderTests.cpp -------------------------------------------------------------------------------- /Tests/MP3ParserTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/MP3ParserTests.cpp -------------------------------------------------------------------------------- /Tests/MediaLibTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/MediaLibTests.m -------------------------------------------------------------------------------- /Tests/MetacacheTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/MetacacheTests.cpp -------------------------------------------------------------------------------- /Tests/PlaylistTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/PlaylistTests.cpp -------------------------------------------------------------------------------- /Tests/ResamplerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/ResamplerTests.cpp -------------------------------------------------------------------------------- /Tests/RingBufTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/RingBufTests.cpp -------------------------------------------------------------------------------- /Tests/ScriptableTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/ScriptableTests.cpp -------------------------------------------------------------------------------- /Tests/ShellexecTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/ShellexecTests.cpp -------------------------------------------------------------------------------- /Tests/StreamerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/StreamerTests.cpp -------------------------------------------------------------------------------- /Tests/TaggingTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/TaggingTests.mm -------------------------------------------------------------------------------- /Tests/TestData/chirp-1sec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/TestData/chirp-1sec.mp3 -------------------------------------------------------------------------------- /Tests/TestData/empty.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/TestData/empty.mp3 -------------------------------------------------------------------------------- /Tests/TestData/opus.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/TestData/opus.mp4 -------------------------------------------------------------------------------- /Tests/TrackSwitchingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/TrackSwitchingTests.cpp -------------------------------------------------------------------------------- /Tests/VfsCurlTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/VfsCurlTests.cpp -------------------------------------------------------------------------------- /Tests/fakein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/fakein.c -------------------------------------------------------------------------------- /Tests/fakein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/fakein.h -------------------------------------------------------------------------------- /Tests/fakeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/fakeout.c -------------------------------------------------------------------------------- /Tests/fakeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/fakeout.h -------------------------------------------------------------------------------- /Tests/gtest-runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/gtest-runner.cpp -------------------------------------------------------------------------------- /Tests/testbootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/Tests/testbootstrap.c -------------------------------------------------------------------------------- /about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/about.txt -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/autogen.sh -------------------------------------------------------------------------------- /ci_scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/ci_scripts/build.sh -------------------------------------------------------------------------------- /ci_scripts/id_rsa.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/ci_scripts/id_rsa.enc -------------------------------------------------------------------------------- /ci_scripts/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/ci_scripts/upload.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/configure.ac -------------------------------------------------------------------------------- /deadbeef.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/deadbeef.desktop.in -------------------------------------------------------------------------------- /deadbeef_enqueue.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/deadbeef_enqueue.desktop.in -------------------------------------------------------------------------------- /examples/decoder_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/examples/decoder_template.c -------------------------------------------------------------------------------- /examples/dsp_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/examples/dsp_template.c -------------------------------------------------------------------------------- /examples/eventhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/examples/eventhandler.c -------------------------------------------------------------------------------- /external/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/external/Makefile.am -------------------------------------------------------------------------------- /external/wcwidth/wcwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/external/wcwidth/wcwidth.c -------------------------------------------------------------------------------- /external/wcwidth/wcwidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/external/wcwidth/wcwidth.h -------------------------------------------------------------------------------- /gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/gettext.h -------------------------------------------------------------------------------- /help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/help.txt -------------------------------------------------------------------------------- /icons/1024x1024/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/1024x1024/deadbeef.png -------------------------------------------------------------------------------- /icons/128x128/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/128x128/deadbeef.png -------------------------------------------------------------------------------- /icons/16x16/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/16x16/deadbeef.png -------------------------------------------------------------------------------- /icons/192x192/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/192x192/deadbeef.png -------------------------------------------------------------------------------- /icons/22x22/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/22x22/deadbeef.png -------------------------------------------------------------------------------- /icons/24x24/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/24x24/deadbeef.png -------------------------------------------------------------------------------- /icons/256x256/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/256x256/deadbeef.png -------------------------------------------------------------------------------- /icons/32x32/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/32x32/deadbeef.png -------------------------------------------------------------------------------- /icons/36x36/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/36x36/deadbeef.png -------------------------------------------------------------------------------- /icons/48x48/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/48x48/deadbeef.png -------------------------------------------------------------------------------- /icons/512x512/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/512x512/deadbeef.png -------------------------------------------------------------------------------- /icons/64x64/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/64x64/deadbeef.png -------------------------------------------------------------------------------- /icons/72x72/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/72x72/deadbeef.png -------------------------------------------------------------------------------- /icons/96x96/deadbeef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/96x96/deadbeef.png -------------------------------------------------------------------------------- /icons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/Makefile.am -------------------------------------------------------------------------------- /icons/deadbeef-icon.rc: -------------------------------------------------------------------------------- 1 | DEADBEEF ICON "deadbeef.ico" 2 | -------------------------------------------------------------------------------- /icons/deadbeef.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/deadbeef.ico -------------------------------------------------------------------------------- /icons/deadbeef.idraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/deadbeef.idraw -------------------------------------------------------------------------------- /icons/make_png_icons.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/make_png_icons.pl -------------------------------------------------------------------------------- /icons/scalable/deadbeef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/icons/scalable/deadbeef.svg -------------------------------------------------------------------------------- /images/icons_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/images/icons_24.png -------------------------------------------------------------------------------- /images/next_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/images/next_24.png -------------------------------------------------------------------------------- /images/pause_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/images/pause_16.png -------------------------------------------------------------------------------- /images/pause_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/images/pause_24.png -------------------------------------------------------------------------------- /images/play_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/images/play_16.png -------------------------------------------------------------------------------- /images/play_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/images/play_24.png -------------------------------------------------------------------------------- /images/prev_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/images/prev_24.png -------------------------------------------------------------------------------- /images/random_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/images/random_24.png -------------------------------------------------------------------------------- /images/stop_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/images/stop_24.png -------------------------------------------------------------------------------- /include/deadbeef/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/include/deadbeef/common.h -------------------------------------------------------------------------------- /include/deadbeef/deadbeef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/include/deadbeef/deadbeef.h -------------------------------------------------------------------------------- /include/deadbeef/fastftoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/include/deadbeef/fastftoi.h -------------------------------------------------------------------------------- /include/deadbeef/strdupa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/include/deadbeef/strdupa.h -------------------------------------------------------------------------------- /osx/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/osx/Credits.rtf -------------------------------------------------------------------------------- /osx/DeaDBeeF GTK2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/osx/DeaDBeeF GTK2.plist -------------------------------------------------------------------------------- /osx/DeaDBeeF GTK3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/osx/DeaDBeeF GTK3.plist -------------------------------------------------------------------------------- /osx/curl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/osx/curl_config.h -------------------------------------------------------------------------------- /osx/xcodeconfig/gtk2.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/osx/xcodeconfig/gtk2.xcconfig -------------------------------------------------------------------------------- /osx/xcodeconfig/gtk3.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/osx/xcodeconfig/gtk3.xcconfig -------------------------------------------------------------------------------- /pixmaps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/pixmaps/Makefile.am -------------------------------------------------------------------------------- /pixmaps/buffering_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/pixmaps/buffering_16.png -------------------------------------------------------------------------------- /pixmaps/noartwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/pixmaps/noartwork.png -------------------------------------------------------------------------------- /pixmaps/pause_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/pixmaps/pause_16.png -------------------------------------------------------------------------------- /pixmaps/play_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/pixmaps/play_16.png -------------------------------------------------------------------------------- /plugins/aac/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/aac/COPYING -------------------------------------------------------------------------------- /plugins/aac/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/aac/Makefile.am -------------------------------------------------------------------------------- /plugins/aac/aac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/aac/aac.c -------------------------------------------------------------------------------- /plugins/aac/aac_decoder_fdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/aac/aac_decoder_fdk.c -------------------------------------------------------------------------------- /plugins/aac/aac_decoder_fdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/aac/aac_decoder_fdk.h -------------------------------------------------------------------------------- /plugins/aac/aac_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/aac/aac_parser.c -------------------------------------------------------------------------------- /plugins/aac/aac_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/aac/aac_parser.h -------------------------------------------------------------------------------- /plugins/adplug/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/COPYING -------------------------------------------------------------------------------- /plugins/adplug/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/Makefile.am -------------------------------------------------------------------------------- /plugins/adplug/adplug-db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug-db.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/AUTHORS -------------------------------------------------------------------------------- /plugins/adplug/adplug/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/README -------------------------------------------------------------------------------- /plugins/adplug/adplug/a2m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/a2m.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/a2m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/a2m.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/adl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/adl.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/adl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/adl.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/amd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/amd.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/amd.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/bam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/bam.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/bam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/bam.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/bmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/bmf.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/bmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/bmf.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/cff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/cff.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/cff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/cff.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/cmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/cmf.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/cmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/cmf.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/d00.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/d00.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/d00.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/d00.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/debug.c -------------------------------------------------------------------------------- /plugins/adplug/adplug/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/debug.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/dfm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/dfm.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/dfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/dfm.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/dmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/dmo.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/dmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/dmo.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/dro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/dro.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/dro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/dro.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/dro2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/dro2.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/dtm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/dtm.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/dtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/dtm.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/flash.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/fmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/fmc.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/fmc.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/fmopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/fmopl.c -------------------------------------------------------------------------------- /plugins/adplug/adplug/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/fmopl.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/got.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/got.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/got.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/got.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/herad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/herad.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/hsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/hsc.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/hsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/hsc.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/hsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/hsp.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/hsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/hsp.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/hyp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/hyp.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/hyp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/hyp.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/imf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/imf.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/imf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/imf.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/jbm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/jbm.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/jbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/jbm.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/ksm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/ksm.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/ksm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/ksm.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/lds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/lds.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/lds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/lds.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/mad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mad.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mad.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/mdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mdi.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/mdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mdi.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/mid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mid.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mid.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/mkj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mkj.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/mkj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mkj.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/msc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/msc.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/msc.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/mtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mtk.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/mtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mtk.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/mtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mtr.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/mtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mtr.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/mus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mus.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/mus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/mus.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/opl.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/pch.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/pis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/pis.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/pis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/pis.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/psi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/psi.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/psi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/psi.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/rad2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/rad2.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/rat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/rat.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/rat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/rat.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/raw.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/raw.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/rix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/rix.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/rix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/rix.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/rol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/rol.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/rol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/rol.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/s3m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/s3m.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/s3m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/s3m.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/sa2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/sa2.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/sa2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/sa2.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/sng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/sng.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/sng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/sng.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/sop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/sop.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/sop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/sop.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/u6m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/u6m.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/u6m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/u6m.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/unlzh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/unlzh.c -------------------------------------------------------------------------------- /plugins/adplug/adplug/unlzh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/unlzh.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/unlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/unlzw.c -------------------------------------------------------------------------------- /plugins/adplug/adplug/unlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/unlzw.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/version.h: -------------------------------------------------------------------------------- 1 | #define ADPLUG_VERSION "a6706ba256976eedf73e06d67ad74c5985271c1f" 2 | -------------------------------------------------------------------------------- /plugins/adplug/adplug/vgm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/vgm.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/vgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/vgm.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/xad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/xad.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/xad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/xad.h -------------------------------------------------------------------------------- /plugins/adplug/adplug/xsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/xsm.cpp -------------------------------------------------------------------------------- /plugins/adplug/adplug/xsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/adplug/xsm.h -------------------------------------------------------------------------------- /plugins/adplug/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/adplug/plugin.c -------------------------------------------------------------------------------- /plugins/alac/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/alac/COPYING -------------------------------------------------------------------------------- /plugins/alac/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/alac/Makefile.am -------------------------------------------------------------------------------- /plugins/alac/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/alac/README -------------------------------------------------------------------------------- /plugins/alac/alac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/alac/alac.c -------------------------------------------------------------------------------- /plugins/alac/alac_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/alac/alac_plugin.c -------------------------------------------------------------------------------- /plugins/alac/decomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/alac/decomp.h -------------------------------------------------------------------------------- /plugins/alac/stdint_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/alac/stdint_win.h -------------------------------------------------------------------------------- /plugins/alsa/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/alsa/COPYING -------------------------------------------------------------------------------- /plugins/alsa/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/alsa/Makefile.am -------------------------------------------------------------------------------- /plugins/alsa/alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/alsa/alsa.c -------------------------------------------------------------------------------- /plugins/artwork/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/COPYING -------------------------------------------------------------------------------- /plugins/artwork/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/Makefile.am -------------------------------------------------------------------------------- /plugins/artwork/albumartorg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/albumartorg.c -------------------------------------------------------------------------------- /plugins/artwork/albumartorg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/albumartorg.h -------------------------------------------------------------------------------- /plugins/artwork/artwork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/artwork.c -------------------------------------------------------------------------------- /plugins/artwork/artwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/artwork.h -------------------------------------------------------------------------------- /plugins/artwork/artwork_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/artwork_ogg.c -------------------------------------------------------------------------------- /plugins/artwork/artwork_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/artwork_ogg.h -------------------------------------------------------------------------------- /plugins/artwork/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/base64.c -------------------------------------------------------------------------------- /plugins/artwork/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/base64.h -------------------------------------------------------------------------------- /plugins/artwork/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/cache.c -------------------------------------------------------------------------------- /plugins/artwork/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/cache.h -------------------------------------------------------------------------------- /plugins/artwork/coverinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/coverinfo.c -------------------------------------------------------------------------------- /plugins/artwork/coverinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/coverinfo.h -------------------------------------------------------------------------------- /plugins/artwork/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/escape.c -------------------------------------------------------------------------------- /plugins/artwork/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/escape.h -------------------------------------------------------------------------------- /plugins/artwork/lastfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/lastfm.c -------------------------------------------------------------------------------- /plugins/artwork/lastfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/lastfm.h -------------------------------------------------------------------------------- /plugins/artwork/musicbrainz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/musicbrainz.c -------------------------------------------------------------------------------- /plugins/artwork/musicbrainz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/musicbrainz.h -------------------------------------------------------------------------------- /plugins/artwork/ogg_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/ogg_shared.c -------------------------------------------------------------------------------- /plugins/artwork/ogg_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/ogg_shared.h -------------------------------------------------------------------------------- /plugins/artwork/wos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/wos.c -------------------------------------------------------------------------------- /plugins/artwork/wos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/artwork/wos.h -------------------------------------------------------------------------------- /plugins/cdda/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/cdda/COPYING -------------------------------------------------------------------------------- /plugins/cdda/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/cdda/Makefile.am -------------------------------------------------------------------------------- /plugins/cdda/cdda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/cdda/cdda.c -------------------------------------------------------------------------------- /plugins/cocoaui/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/cocoaui/.clang-format -------------------------------------------------------------------------------- /plugins/cocoaui/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/cocoaui/AppDelegate.h -------------------------------------------------------------------------------- /plugins/cocoaui/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/cocoaui/AppDelegate.m -------------------------------------------------------------------------------- /plugins/cocoaui/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/cocoaui/MainWindow.h -------------------------------------------------------------------------------- /plugins/cocoaui/MainWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/cocoaui/MainWindow.m -------------------------------------------------------------------------------- /plugins/cocoaui/XIB/Log.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/cocoaui/XIB/Log.xib -------------------------------------------------------------------------------- /plugins/cocoaui/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/cocoaui/main.m -------------------------------------------------------------------------------- /plugins/converter/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/converter/COPYING -------------------------------------------------------------------------------- /plugins/converter/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/converter/Makefile.am -------------------------------------------------------------------------------- /plugins/converter/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/converter/callbacks.c -------------------------------------------------------------------------------- /plugins/converter/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/converter/callbacks.h -------------------------------------------------------------------------------- /plugins/converter/converter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/converter/converter.c -------------------------------------------------------------------------------- /plugins/converter/converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/converter/converter.h -------------------------------------------------------------------------------- /plugins/converter/convgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/converter/convgui.c -------------------------------------------------------------------------------- /plugins/converter/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/converter/interface.c -------------------------------------------------------------------------------- /plugins/converter/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/converter/interface.h -------------------------------------------------------------------------------- /plugins/converter/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/converter/support.c -------------------------------------------------------------------------------- /plugins/converter/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/converter/support.h -------------------------------------------------------------------------------- /plugins/coreaudio/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/coreaudio/COPYING -------------------------------------------------------------------------------- /plugins/coreaudio/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/coreaudio/Makefile.am -------------------------------------------------------------------------------- /plugins/coreaudio/coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/coreaudio/coreaudio.c -------------------------------------------------------------------------------- /plugins/coreaudio/coreaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/coreaudio/coreaudio.h -------------------------------------------------------------------------------- /plugins/dca/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dca/AUTHORS -------------------------------------------------------------------------------- /plugins/dca/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dca/COPYING -------------------------------------------------------------------------------- /plugins/dca/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dca/Makefile.am -------------------------------------------------------------------------------- /plugins/dca/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dca/README -------------------------------------------------------------------------------- /plugins/dca/dcadec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dca/dcadec.c -------------------------------------------------------------------------------- /plugins/dca/dcaplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dca/dcaplug.c -------------------------------------------------------------------------------- /plugins/dca/libdca/dca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dca/libdca/dca.h -------------------------------------------------------------------------------- /plugins/dca/libdca/downmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dca/libdca/downmix.c -------------------------------------------------------------------------------- /plugins/dca/libdca/dts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dca/libdca/dts.h -------------------------------------------------------------------------------- /plugins/dca/libdca/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dca/libdca/parse.c -------------------------------------------------------------------------------- /plugins/dca/libdca/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dca/libdca/tables.h -------------------------------------------------------------------------------- /plugins/dca/libdca/tendra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dca/libdca/tendra.h -------------------------------------------------------------------------------- /plugins/dsp_libsrc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dsp_libsrc/COPYING -------------------------------------------------------------------------------- /plugins/dsp_libsrc/src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dsp_libsrc/src.c -------------------------------------------------------------------------------- /plugins/dsp_libsrc/src.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dsp_libsrc/src.h -------------------------------------------------------------------------------- /plugins/dumb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dumb/COPYING -------------------------------------------------------------------------------- /plugins/dumb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dumb/Makefile.am -------------------------------------------------------------------------------- /plugins/dumb/cdumb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dumb/cdumb.c -------------------------------------------------------------------------------- /plugins/dumb/cdumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dumb/cdumb.h -------------------------------------------------------------------------------- /plugins/dumb/modloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dumb/modloader.cpp -------------------------------------------------------------------------------- /plugins/dumb/modloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dumb/modloader.h -------------------------------------------------------------------------------- /plugins/dumb/umr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dumb/umr.h -------------------------------------------------------------------------------- /plugins/dumb/unmo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dumb/unmo3.h -------------------------------------------------------------------------------- /plugins/dumb/unrealfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dumb/unrealfmt.cpp -------------------------------------------------------------------------------- /plugins/dumb/urf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/dumb/urf.h -------------------------------------------------------------------------------- /plugins/fdk/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/Android.bp -------------------------------------------------------------------------------- /plugins/fdk/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/ChangeLog -------------------------------------------------------------------------------- /plugins/fdk/MODULE_LICENSE_FRAUNHOFER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/fdk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/Makefile.am -------------------------------------------------------------------------------- /plugins/fdk/Makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/Makefile.vc -------------------------------------------------------------------------------- /plugins/fdk/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/NOTICE -------------------------------------------------------------------------------- /plugins/fdk/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/OWNERS -------------------------------------------------------------------------------- /plugins/fdk/aac-enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/aac-enc.c -------------------------------------------------------------------------------- /plugins/fdk/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | autoreconf -fiv 3 | -------------------------------------------------------------------------------- /plugins/fdk/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/configure.ac -------------------------------------------------------------------------------- /plugins/fdk/fdk-aac.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/fdk-aac.pc.in -------------------------------------------------------------------------------- /plugins/fdk/fdk-aac.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/fdk-aac.sym -------------------------------------------------------------------------------- /plugins/fdk/wavreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/wavreader.c -------------------------------------------------------------------------------- /plugins/fdk/wavreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/wavreader.h -------------------------------------------------------------------------------- /plugins/fdk/win32/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/fdk/win32/getopt.h -------------------------------------------------------------------------------- /plugins/ffap/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/ffap/COPYING -------------------------------------------------------------------------------- /plugins/ffap/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/ffap/Makefile.am -------------------------------------------------------------------------------- /plugins/ffap/asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/ffap/asm.S -------------------------------------------------------------------------------- /plugins/ffap/dsputil_yasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/ffap/dsputil_yasm.asm -------------------------------------------------------------------------------- /plugins/ffap/ffap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/ffap/ffap.c -------------------------------------------------------------------------------- /plugins/ffap/int_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/ffap/int_neon.S -------------------------------------------------------------------------------- /plugins/ffap/x86inc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/ffap/x86inc.asm -------------------------------------------------------------------------------- /plugins/ffmpeg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/ffmpeg/COPYING -------------------------------------------------------------------------------- /plugins/ffmpeg/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/ffmpeg/ChangeLog -------------------------------------------------------------------------------- /plugins/ffmpeg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/ffmpeg/Makefile.am -------------------------------------------------------------------------------- /plugins/ffmpeg/ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/ffmpeg/ffmpeg.c -------------------------------------------------------------------------------- /plugins/flac/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/flac/COPYING -------------------------------------------------------------------------------- /plugins/flac/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/flac/Makefile.am -------------------------------------------------------------------------------- /plugins/flac/flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/flac/flac.c -------------------------------------------------------------------------------- /plugins/gme/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gme/COPYING -------------------------------------------------------------------------------- /plugins/gme/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gme/Makefile.am -------------------------------------------------------------------------------- /plugins/gme/cgme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gme/cgme.c -------------------------------------------------------------------------------- /plugins/gme/gmewrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gme/gmewrap.cpp -------------------------------------------------------------------------------- /plugins/gme/gmewrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gme/gmewrap.h -------------------------------------------------------------------------------- /plugins/gtkui/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/COPYING -------------------------------------------------------------------------------- /plugins/gtkui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/Makefile.am -------------------------------------------------------------------------------- /plugins/gtkui/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/actions.c -------------------------------------------------------------------------------- /plugins/gtkui/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/actions.h -------------------------------------------------------------------------------- /plugins/gtkui/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/callbacks.c -------------------------------------------------------------------------------- /plugins/gtkui/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/callbacks.h -------------------------------------------------------------------------------- /plugins/gtkui/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/clipboard.c -------------------------------------------------------------------------------- /plugins/gtkui/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/clipboard.h -------------------------------------------------------------------------------- /plugins/gtkui/ctmapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/ctmapping.c -------------------------------------------------------------------------------- /plugins/gtkui/ctmapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/ctmapping.h -------------------------------------------------------------------------------- /plugins/gtkui/ddb_splitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/ddb_splitter.c -------------------------------------------------------------------------------- /plugins/gtkui/ddb_splitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/ddb_splitter.h -------------------------------------------------------------------------------- /plugins/gtkui/ddbequalizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/ddbequalizer.c -------------------------------------------------------------------------------- /plugins/gtkui/ddbequalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/ddbequalizer.h -------------------------------------------------------------------------------- /plugins/gtkui/ddbseekbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/ddbseekbar.c -------------------------------------------------------------------------------- /plugins/gtkui/ddbseekbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/ddbseekbar.h -------------------------------------------------------------------------------- /plugins/gtkui/ddbtabstrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/ddbtabstrip.c -------------------------------------------------------------------------------- /plugins/gtkui/ddbtabstrip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/ddbtabstrip.h -------------------------------------------------------------------------------- /plugins/gtkui/ddbvolumebar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/ddbvolumebar.c -------------------------------------------------------------------------------- /plugins/gtkui/ddbvolumebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/ddbvolumebar.h -------------------------------------------------------------------------------- /plugins/gtkui/deadbeef.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/deadbeef.glade -------------------------------------------------------------------------------- /plugins/gtkui/deadbeef.gladep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/deadbeef.gladep -------------------------------------------------------------------------------- /plugins/gtkui/deadbeefapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/deadbeefapp.c -------------------------------------------------------------------------------- /plugins/gtkui/deadbeefapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/deadbeefapp.h -------------------------------------------------------------------------------- /plugins/gtkui/drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/drawing.h -------------------------------------------------------------------------------- /plugins/gtkui/dspconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/dspconfig.c -------------------------------------------------------------------------------- /plugins/gtkui/dspconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/dspconfig.h -------------------------------------------------------------------------------- /plugins/gtkui/eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/eq.c -------------------------------------------------------------------------------- /plugins/gtkui/eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/eq.h -------------------------------------------------------------------------------- /plugins/gtkui/fileman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/fileman.c -------------------------------------------------------------------------------- /plugins/gtkui/gdkdrawing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/gdkdrawing.c -------------------------------------------------------------------------------- /plugins/gtkui/gtk/menus.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/gtk/menus.ui -------------------------------------------------------------------------------- /plugins/gtkui/gtkui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/gtkui.c -------------------------------------------------------------------------------- /plugins/gtkui/gtkui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/gtkui.h -------------------------------------------------------------------------------- /plugins/gtkui/gtkui_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/gtkui_api.h -------------------------------------------------------------------------------- /plugins/gtkui/hotkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/hotkeys.c -------------------------------------------------------------------------------- /plugins/gtkui/hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/hotkeys.h -------------------------------------------------------------------------------- /plugins/gtkui/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/interface.c -------------------------------------------------------------------------------- /plugins/gtkui/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/interface.h -------------------------------------------------------------------------------- /plugins/gtkui/namedicons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/namedicons.c -------------------------------------------------------------------------------- /plugins/gtkui/namedicons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/namedicons.h -------------------------------------------------------------------------------- /plugins/gtkui/plmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/plmenu.c -------------------------------------------------------------------------------- /plugins/gtkui/plmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/plmenu.h -------------------------------------------------------------------------------- /plugins/gtkui/pltmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/pltmenu.c -------------------------------------------------------------------------------- /plugins/gtkui/pluginconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/pluginconf.c -------------------------------------------------------------------------------- /plugins/gtkui/pluginconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/pluginconf.h -------------------------------------------------------------------------------- /plugins/gtkui/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/progress.c -------------------------------------------------------------------------------- /plugins/gtkui/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/progress.h -------------------------------------------------------------------------------- /plugins/gtkui/rg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/rg.c -------------------------------------------------------------------------------- /plugins/gtkui/rg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/rg.h -------------------------------------------------------------------------------- /plugins/gtkui/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/search.c -------------------------------------------------------------------------------- /plugins/gtkui/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/search.h -------------------------------------------------------------------------------- /plugins/gtkui/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/support.c -------------------------------------------------------------------------------- /plugins/gtkui/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/support.h -------------------------------------------------------------------------------- /plugins/gtkui/tfimport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/tfimport.c -------------------------------------------------------------------------------- /plugins/gtkui/tfimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/tfimport.h -------------------------------------------------------------------------------- /plugins/gtkui/trkproperties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/trkproperties.c -------------------------------------------------------------------------------- /plugins/gtkui/trkproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/trkproperties.h -------------------------------------------------------------------------------- /plugins/gtkui/undostack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/undostack.c -------------------------------------------------------------------------------- /plugins/gtkui/undostack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/undostack.h -------------------------------------------------------------------------------- /plugins/gtkui/widgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/widgets.c -------------------------------------------------------------------------------- /plugins/gtkui/widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/widgets.h -------------------------------------------------------------------------------- /plugins/gtkui/wingeom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/wingeom.c -------------------------------------------------------------------------------- /plugins/gtkui/wingeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/gtkui/wingeom.h -------------------------------------------------------------------------------- /plugins/hotkeys/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/hotkeys/COPYING -------------------------------------------------------------------------------- /plugins/hotkeys/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/hotkeys/Makefile.am -------------------------------------------------------------------------------- /plugins/hotkeys/hotkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/hotkeys/hotkeys.c -------------------------------------------------------------------------------- /plugins/hotkeys/hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/hotkeys/hotkeys.h -------------------------------------------------------------------------------- /plugins/hotkeys/keysyms.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/hotkeys/keysyms.inc -------------------------------------------------------------------------------- /plugins/lastfm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/lastfm/COPYING -------------------------------------------------------------------------------- /plugins/lastfm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/lastfm/Makefile.am -------------------------------------------------------------------------------- /plugins/lastfm/lastfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/lastfm/lastfm.c -------------------------------------------------------------------------------- /plugins/liboggedit/oggedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/liboggedit/oggedit.h -------------------------------------------------------------------------------- /plugins/lyrics/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/lyrics/COPYING -------------------------------------------------------------------------------- /plugins/lyrics/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/lyrics/Makefile.am -------------------------------------------------------------------------------- /plugins/lyrics/lyrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/lyrics/lyrics.c -------------------------------------------------------------------------------- /plugins/lyrics/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/lyrics/support.c -------------------------------------------------------------------------------- /plugins/lyrics/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/lyrics/support.h -------------------------------------------------------------------------------- /plugins/m3u/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/m3u/COPYING -------------------------------------------------------------------------------- /plugins/m3u/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/m3u/Makefile.am -------------------------------------------------------------------------------- /plugins/m3u/m3u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/m3u/m3u.c -------------------------------------------------------------------------------- /plugins/m3u/m3u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/m3u/m3u.h -------------------------------------------------------------------------------- /plugins/medialib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/medialib/COPYING -------------------------------------------------------------------------------- /plugins/medialib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/medialib/Makefile.am -------------------------------------------------------------------------------- /plugins/medialib/medialib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/medialib/medialib.c -------------------------------------------------------------------------------- /plugins/medialib/medialib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/medialib/medialib.h -------------------------------------------------------------------------------- /plugins/medialib/medialibdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/medialib/medialibdb.c -------------------------------------------------------------------------------- /plugins/medialib/medialibdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/medialib/medialibdb.h -------------------------------------------------------------------------------- /plugins/mms/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/COPYING -------------------------------------------------------------------------------- /plugins/mms/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/Makefile.am -------------------------------------------------------------------------------- /plugins/mms/libmms/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/libmms/AUTHORS -------------------------------------------------------------------------------- /plugins/mms/libmms/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/libmms/README -------------------------------------------------------------------------------- /plugins/mms/libmms/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/libmms/bswap.h -------------------------------------------------------------------------------- /plugins/mms/libmms/mms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/libmms/mms.c -------------------------------------------------------------------------------- /plugins/mms/libmms/mms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/libmms/mms.h -------------------------------------------------------------------------------- /plugins/mms/libmms/mmsh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/libmms/mmsh.c -------------------------------------------------------------------------------- /plugins/mms/libmms/mmsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/libmms/mmsh.h -------------------------------------------------------------------------------- /plugins/mms/libmms/mmsio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/libmms/mmsio.h -------------------------------------------------------------------------------- /plugins/mms/libmms/mmsx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/libmms/mmsx.c -------------------------------------------------------------------------------- /plugins/mms/libmms/mmsx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/libmms/mmsx.h -------------------------------------------------------------------------------- /plugins/mms/libmms/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/libmms/uri.c -------------------------------------------------------------------------------- /plugins/mms/libmms/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/libmms/uri.h -------------------------------------------------------------------------------- /plugins/mms/mmsplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mms/mmsplug.c -------------------------------------------------------------------------------- /plugins/mono2stereo/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mono2stereo/COPYING -------------------------------------------------------------------------------- /plugins/mp3/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mp3/COPYING -------------------------------------------------------------------------------- /plugins/mp3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mp3/Makefile.am -------------------------------------------------------------------------------- /plugins/mp3/mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mp3/mp3.c -------------------------------------------------------------------------------- /plugins/mp3/mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mp3/mp3.h -------------------------------------------------------------------------------- /plugins/mp3/mp3_mad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mp3/mp3_mad.c -------------------------------------------------------------------------------- /plugins/mp3/mp3_mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mp3/mp3_mad.h -------------------------------------------------------------------------------- /plugins/mp3/mp3_mpg123.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mp3/mp3_mpg123.c -------------------------------------------------------------------------------- /plugins/mp3/mp3_mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mp3/mp3_mpg123.h -------------------------------------------------------------------------------- /plugins/mp3/mp3parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mp3/mp3parser.c -------------------------------------------------------------------------------- /plugins/mp3/mp3parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/mp3/mp3parser.h -------------------------------------------------------------------------------- /plugins/musepack/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/COPYING -------------------------------------------------------------------------------- /plugins/musepack/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/Makefile.am -------------------------------------------------------------------------------- /plugins/musepack/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/crc32.c -------------------------------------------------------------------------------- /plugins/musepack/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/decoder.h -------------------------------------------------------------------------------- /plugins/musepack/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/huffman.c -------------------------------------------------------------------------------- /plugins/musepack/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/huffman.h -------------------------------------------------------------------------------- /plugins/musepack/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/internal.h -------------------------------------------------------------------------------- /plugins/musepack/mpc/mpcdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/mpc/mpcdec.h -------------------------------------------------------------------------------- /plugins/musepack/mpc/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/mpc/reader.h -------------------------------------------------------------------------------- /plugins/musepack/mpc_demux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/mpc_demux.c -------------------------------------------------------------------------------- /plugins/musepack/mpc_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/mpc_reader.c -------------------------------------------------------------------------------- /plugins/musepack/musepack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/musepack.c -------------------------------------------------------------------------------- /plugins/musepack/requant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/requant.c -------------------------------------------------------------------------------- /plugins/musepack/requant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/requant.h -------------------------------------------------------------------------------- /plugins/musepack/streaminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/musepack/streaminfo.c -------------------------------------------------------------------------------- /plugins/notify/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/notify/COPYING -------------------------------------------------------------------------------- /plugins/notify/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/notify/Makefile.am -------------------------------------------------------------------------------- /plugins/notify/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/notify/notify.c -------------------------------------------------------------------------------- /plugins/nullout/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/nullout/COPYING -------------------------------------------------------------------------------- /plugins/nullout/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/nullout/Makefile.am -------------------------------------------------------------------------------- /plugins/nullout/nullout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/nullout/nullout.c -------------------------------------------------------------------------------- /plugins/opus/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/opus/COPYING -------------------------------------------------------------------------------- /plugins/opus/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/opus/Makefile.am -------------------------------------------------------------------------------- /plugins/opus/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/opus/opus.c -------------------------------------------------------------------------------- /plugins/oss/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/oss/COPYING -------------------------------------------------------------------------------- /plugins/oss/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/oss/Makefile.am -------------------------------------------------------------------------------- /plugins/oss/oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/oss/oss.c -------------------------------------------------------------------------------- /plugins/pltbrowser/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/pltbrowser/COPYING -------------------------------------------------------------------------------- /plugins/pltbrowser/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/pltbrowser/support.c -------------------------------------------------------------------------------- /plugins/pltbrowser/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/pltbrowser/support.h -------------------------------------------------------------------------------- /plugins/portaudio/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/portaudio/COPYING -------------------------------------------------------------------------------- /plugins/portaudio/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/portaudio/Makefile.am -------------------------------------------------------------------------------- /plugins/portaudio/portaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/portaudio/portaudio.c -------------------------------------------------------------------------------- /plugins/psf/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/psf/COPYING -------------------------------------------------------------------------------- /plugins/psf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/psf/Makefile.am -------------------------------------------------------------------------------- /plugins/psf/aosdk/ao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/psf/aosdk/ao.h -------------------------------------------------------------------------------- /plugins/psf/aosdk/corlett.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/psf/aosdk/corlett.c -------------------------------------------------------------------------------- /plugins/psf/aosdk/corlett.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/psf/aosdk/corlett.h -------------------------------------------------------------------------------- /plugins/psf/aosdk/cpuintrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/psf/aosdk/cpuintrf.h -------------------------------------------------------------------------------- /plugins/psf/aosdk/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/psf/aosdk/mem.h -------------------------------------------------------------------------------- /plugins/psf/aosdk/osd_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/psf/aosdk/osd_cpu.h -------------------------------------------------------------------------------- /plugins/psf/aosdk/psfmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/psf/aosdk/psfmain.c -------------------------------------------------------------------------------- /plugins/psf/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/psf/plugin.c -------------------------------------------------------------------------------- /plugins/psf/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/psf/readme.txt -------------------------------------------------------------------------------- /plugins/pulse/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/pulse/COPYING -------------------------------------------------------------------------------- /plugins/pulse/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/pulse/Makefile.am -------------------------------------------------------------------------------- /plugins/pulse/pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/pulse/pulse.c -------------------------------------------------------------------------------- /plugins/rg_scanner/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/rg_scanner/COPYING -------------------------------------------------------------------------------- /plugins/sc68/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/sc68/COPYING -------------------------------------------------------------------------------- /plugins/sc68/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/sc68/Makefile.am -------------------------------------------------------------------------------- /plugins/sc68/in_sc68.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/sc68/in_sc68.c -------------------------------------------------------------------------------- /plugins/sc68/libsc68/file68/data68/Players/lib/org.s: -------------------------------------------------------------------------------- 1 | ;;; sc68 default origin 2 | org $10000 3 | -------------------------------------------------------------------------------- /plugins/sc68/libsc68/file68/data68/Replay/deltamusic2.bin: -------------------------------------------------------------------------------- 1 | ` 2 | NuNu`p`p` -------------------------------------------------------------------------------- /plugins/sc68/libsc68/sc68/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/shellexec/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/shellexec/COPYING -------------------------------------------------------------------------------- /plugins/shn/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/shn/AUTHORS -------------------------------------------------------------------------------- /plugins/shn/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/shn/COPYING -------------------------------------------------------------------------------- /plugins/shn/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/shn/Makefile.am -------------------------------------------------------------------------------- /plugins/shn/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/shn/README -------------------------------------------------------------------------------- /plugins/shn/libshn/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/shn/libshn/array.c -------------------------------------------------------------------------------- /plugins/shn/libshn/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/shn/libshn/misc.c -------------------------------------------------------------------------------- /plugins/shn/libshn/seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/shn/libshn/seek.c -------------------------------------------------------------------------------- /plugins/shn/libshn/shn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/shn/libshn/shn.h -------------------------------------------------------------------------------- /plugins/shn/libshn/vario.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/shn/libshn/vario.c -------------------------------------------------------------------------------- /plugins/shn/libshn/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/shn/libshn/wave.c -------------------------------------------------------------------------------- /plugins/shn/shnplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/shn/shnplugin.c -------------------------------------------------------------------------------- /plugins/sid/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/sid/COPYING -------------------------------------------------------------------------------- /plugins/sid/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/sid/Makefile.am -------------------------------------------------------------------------------- /plugins/sid/csid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/sid/csid.cpp -------------------------------------------------------------------------------- /plugins/sid/csid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/sid/csid.h -------------------------------------------------------------------------------- /plugins/sid/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/sid/plugin.c -------------------------------------------------------------------------------- /plugins/sid/sidplay-libs/libsidutils/TODO: -------------------------------------------------------------------------------- 1 | * Add playlist support 2 | -------------------------------------------------------------------------------- /plugins/sndfile/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/sndfile/COPYING -------------------------------------------------------------------------------- /plugins/sndfile/sndfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/sndfile/sndfile.c -------------------------------------------------------------------------------- /plugins/soundtouch/st.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/soundtouch/st.cpp -------------------------------------------------------------------------------- /plugins/soundtouch/st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/soundtouch/st.h -------------------------------------------------------------------------------- /plugins/supereq/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/supereq/COPYING -------------------------------------------------------------------------------- /plugins/supereq/supereq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/supereq/supereq.c -------------------------------------------------------------------------------- /plugins/tta/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/tta/COPYING -------------------------------------------------------------------------------- /plugins/tta/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/tta/Makefile.am -------------------------------------------------------------------------------- /plugins/tta/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/tta/README -------------------------------------------------------------------------------- /plugins/tta/ttaplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/tta/ttaplug.c -------------------------------------------------------------------------------- /plugins/v2m/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/COPYING -------------------------------------------------------------------------------- /plugins/v2m/v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/LICENSE.txt -------------------------------------------------------------------------------- /plugins/v2m/v2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/README.txt -------------------------------------------------------------------------------- /plugins/v2m/v2/libv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/libv2.h -------------------------------------------------------------------------------- /plugins/v2m/v2/phonemtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/phonemtab.h -------------------------------------------------------------------------------- /plugins/v2m/v2/presets.v2b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/presets.v2b -------------------------------------------------------------------------------- /plugins/v2m/v2/ronan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/ronan.cpp -------------------------------------------------------------------------------- /plugins/v2m/v2/ronan.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/v2m/v2/sounddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/sounddef.h -------------------------------------------------------------------------------- /plugins/v2m/v2/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/synth.h -------------------------------------------------------------------------------- /plugins/v2m/v2/tool/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/tool/file.h -------------------------------------------------------------------------------- /plugins/v2m/v2/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/types.h -------------------------------------------------------------------------------- /plugins/v2m/v2/v2mconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/v2mconv.cpp -------------------------------------------------------------------------------- /plugins/v2m/v2/v2mconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/v2mconv.h -------------------------------------------------------------------------------- /plugins/v2m/v2/v2mplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2/v2mplayer.h -------------------------------------------------------------------------------- /plugins/v2m/v2mplug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/v2m/v2mplug.cpp -------------------------------------------------------------------------------- /plugins/vfs_curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/vfs_curl/COPYING -------------------------------------------------------------------------------- /plugins/vfs_zip/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/vfs_zip/COPYING -------------------------------------------------------------------------------- /plugins/vfs_zip/vfs_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/vfs_zip/vfs_zip.c -------------------------------------------------------------------------------- /plugins/vorbis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/vorbis/COPYING -------------------------------------------------------------------------------- /plugins/vorbis/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/vorbis/Makefile.am -------------------------------------------------------------------------------- /plugins/vorbis/vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/vorbis/vorbis.c -------------------------------------------------------------------------------- /plugins/vtx/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/vtx/COPYING -------------------------------------------------------------------------------- /plugins/vtx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/vtx/Makefile.am -------------------------------------------------------------------------------- /plugins/vtx/vtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/vtx/vtx.c -------------------------------------------------------------------------------- /plugins/waveout/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/waveout/COPYING -------------------------------------------------------------------------------- /plugins/waveout/waveout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/waveout/waveout.c -------------------------------------------------------------------------------- /plugins/wavpack/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wavpack/COPYING -------------------------------------------------------------------------------- /plugins/wavpack/wavpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wavpack/wavpack.c -------------------------------------------------------------------------------- /plugins/wildmidi/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wildmidi/COPYING -------------------------------------------------------------------------------- /plugins/wildmidi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wildmidi/README -------------------------------------------------------------------------------- /plugins/wma/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wma/COPYING -------------------------------------------------------------------------------- /plugins/wma/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wma/Makefile.am -------------------------------------------------------------------------------- /plugins/wma/asfheader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wma/asfheader.c -------------------------------------------------------------------------------- /plugins/wma/libasf/asf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wma/libasf/asf.c -------------------------------------------------------------------------------- /plugins/wma/libasf/asf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wma/libasf/asf.h -------------------------------------------------------------------------------- /plugins/wma/libwma/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wma/libwma/fft.h -------------------------------------------------------------------------------- /plugins/wma/libwma/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wma/libwma/mdct.c -------------------------------------------------------------------------------- /plugins/wma/libwma/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wma/libwma/mdct.h -------------------------------------------------------------------------------- /plugins/wma/libwma/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wma/libwma/types.h -------------------------------------------------------------------------------- /plugins/wma/wma_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/plugins/wma/wma_plugin.c -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/POTFILES.skip -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/id.po -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/ie.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/kk.po -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/km.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/lg.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/ne.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/si_LK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/si_LK.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/sr@latin.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/te.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/ug.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /premake5-tools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/premake5-tools.lua -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/premake5.lua -------------------------------------------------------------------------------- /scripts/glibc-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/glibc-check.sh -------------------------------------------------------------------------------- /scripts/package_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/package_headers.sh -------------------------------------------------------------------------------- /scripts/packages_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/packages_build.sh -------------------------------------------------------------------------------- /scripts/pluginstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/pluginstall.sh -------------------------------------------------------------------------------- /scripts/portable_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/portable_build.sh -------------------------------------------------------------------------------- /scripts/portable_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/portable_upload.sh -------------------------------------------------------------------------------- /scripts/quickinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/quickinstall.sh -------------------------------------------------------------------------------- /scripts/release_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/release_build.sh -------------------------------------------------------------------------------- /scripts/static_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/static_build.sh -------------------------------------------------------------------------------- /scripts/static_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/static_install.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/tx-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/tx-sync.sh -------------------------------------------------------------------------------- /scripts/u8_gperf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/scripts/u8_gperf.sh -------------------------------------------------------------------------------- /shared/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/Makefile.am -------------------------------------------------------------------------------- /shared/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/README -------------------------------------------------------------------------------- /shared/analyzer/analyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/analyzer/analyzer.c -------------------------------------------------------------------------------- /shared/analyzer/analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/analyzer/analyzer.h -------------------------------------------------------------------------------- /shared/ctmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/ctmap.c -------------------------------------------------------------------------------- /shared/ctmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/ctmap.h -------------------------------------------------------------------------------- /shared/deletefromdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/deletefromdisk.c -------------------------------------------------------------------------------- /shared/deletefromdisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/deletefromdisk.h -------------------------------------------------------------------------------- /shared/eqpreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/eqpreset.c -------------------------------------------------------------------------------- /shared/eqpreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/eqpreset.h -------------------------------------------------------------------------------- /shared/growableBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/growableBuffer.c -------------------------------------------------------------------------------- /shared/growableBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/growableBuffer.h -------------------------------------------------------------------------------- /shared/mp4tagutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/mp4tagutil.c -------------------------------------------------------------------------------- /shared/mp4tagutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/mp4tagutil.h -------------------------------------------------------------------------------- /shared/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/parser.c -------------------------------------------------------------------------------- /shared/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/parser.h -------------------------------------------------------------------------------- /shared/pluginsettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/pluginsettings.c -------------------------------------------------------------------------------- /shared/pluginsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/pluginsettings.h -------------------------------------------------------------------------------- /shared/scope/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/scope/Makefile.am -------------------------------------------------------------------------------- /shared/scope/scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/scope/scope.c -------------------------------------------------------------------------------- /shared/scope/scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/scope/scope.h -------------------------------------------------------------------------------- /shared/tftintutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/tftintutil.c -------------------------------------------------------------------------------- /shared/tftintutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/tftintutil.h -------------------------------------------------------------------------------- /shared/undo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/undo/Makefile.am -------------------------------------------------------------------------------- /shared/undo/undobuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/undo/undobuffer.c -------------------------------------------------------------------------------- /shared/undo/undobuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/undo/undobuffer.h -------------------------------------------------------------------------------- /shared/undo/undomanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/undo/undomanager.c -------------------------------------------------------------------------------- /shared/undo/undomanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/undo/undomanager.h -------------------------------------------------------------------------------- /shared/windows/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/windows/fopen.c -------------------------------------------------------------------------------- /shared/windows/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/windows/mkdir.c -------------------------------------------------------------------------------- /shared/windows/mkstemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/windows/mkstemp.c -------------------------------------------------------------------------------- /shared/windows/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/windows/mmap.c -------------------------------------------------------------------------------- /shared/windows/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/windows/rename.c -------------------------------------------------------------------------------- /shared/windows/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/windows/rmdir.c -------------------------------------------------------------------------------- /shared/windows/scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/windows/scandir.c -------------------------------------------------------------------------------- /shared/windows/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/windows/stat.c -------------------------------------------------------------------------------- /shared/windows/strndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/windows/strndup.c -------------------------------------------------------------------------------- /shared/windows/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/windows/utils.c -------------------------------------------------------------------------------- /shared/windows/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shared/windows/utils.h -------------------------------------------------------------------------------- /shortlicense.zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/shortlicense.zlib -------------------------------------------------------------------------------- /src/Apple/fft_accelerate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/Apple/fft_accelerate.c -------------------------------------------------------------------------------- /src/ConvertUTF/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/ConvertUTF/readme.txt -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/actionhandlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/actionhandlers.c -------------------------------------------------------------------------------- /src/actionhandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/actionhandlers.h -------------------------------------------------------------------------------- /src/buffered_file_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/buffered_file_writer.c -------------------------------------------------------------------------------- /src/buffered_file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/buffered_file_writer.h -------------------------------------------------------------------------------- /src/cocoautil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/cocoautil.h -------------------------------------------------------------------------------- /src/cocoautil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/cocoautil.m -------------------------------------------------------------------------------- /src/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/conf.c -------------------------------------------------------------------------------- /src/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/conf.h -------------------------------------------------------------------------------- /src/coreplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/coreplugin.c -------------------------------------------------------------------------------- /src/coreplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/coreplugin.h -------------------------------------------------------------------------------- /src/cueutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/cueutil.c -------------------------------------------------------------------------------- /src/cueutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/cueutil.h -------------------------------------------------------------------------------- /src/decodedblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/decodedblock.c -------------------------------------------------------------------------------- /src/decodedblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/decodedblock.h -------------------------------------------------------------------------------- /src/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/dsp.c -------------------------------------------------------------------------------- /src/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/dsp.h -------------------------------------------------------------------------------- /src/dsppreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/dsppreset.c -------------------------------------------------------------------------------- /src/dsppreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/dsppreset.h -------------------------------------------------------------------------------- /src/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/escape.c -------------------------------------------------------------------------------- /src/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/escape.h -------------------------------------------------------------------------------- /src/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/fft.c -------------------------------------------------------------------------------- /src/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/fft.h -------------------------------------------------------------------------------- /src/handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/handler.c -------------------------------------------------------------------------------- /src/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/handler.h -------------------------------------------------------------------------------- /src/junklib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/junklib.c -------------------------------------------------------------------------------- /src/junklib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/junklib.h -------------------------------------------------------------------------------- /src/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/logger.c -------------------------------------------------------------------------------- /src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/logger.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/main.c -------------------------------------------------------------------------------- /src/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/md5/md5.c -------------------------------------------------------------------------------- /src/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/md5/md5.h -------------------------------------------------------------------------------- /src/messagepump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/messagepump.c -------------------------------------------------------------------------------- /src/messagepump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/messagepump.h -------------------------------------------------------------------------------- /src/metacache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/metacache.c -------------------------------------------------------------------------------- /src/metacache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/metacache.h -------------------------------------------------------------------------------- /src/moduleconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/moduleconf.h -------------------------------------------------------------------------------- /src/playlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/playlist.c -------------------------------------------------------------------------------- /src/playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/playlist.h -------------------------------------------------------------------------------- /src/playmodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/playmodes.c -------------------------------------------------------------------------------- /src/playmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/playmodes.h -------------------------------------------------------------------------------- /src/playqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/playqueue.c -------------------------------------------------------------------------------- /src/playqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/playqueue.h -------------------------------------------------------------------------------- /src/plmeta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/plmeta.c -------------------------------------------------------------------------------- /src/plmeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/plmeta.h -------------------------------------------------------------------------------- /src/pltmeta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/pltmeta.c -------------------------------------------------------------------------------- /src/pltmeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/pltmeta.h -------------------------------------------------------------------------------- /src/plugins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/plugins.c -------------------------------------------------------------------------------- /src/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/plugins.h -------------------------------------------------------------------------------- /src/premix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/premix.c -------------------------------------------------------------------------------- /src/premix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/premix.h -------------------------------------------------------------------------------- /src/replaygain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/replaygain.c -------------------------------------------------------------------------------- /src/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/replaygain.h -------------------------------------------------------------------------------- /src/resizable_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/resizable_buffer.c -------------------------------------------------------------------------------- /src/resizable_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/resizable_buffer.h -------------------------------------------------------------------------------- /src/ringbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/ringbuf.c -------------------------------------------------------------------------------- /src/ringbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/ringbuf.h -------------------------------------------------------------------------------- /src/sj_to_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/sj_to_unicode.h -------------------------------------------------------------------------------- /src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/sort.c -------------------------------------------------------------------------------- /src/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/sort.h -------------------------------------------------------------------------------- /src/streamer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/streamer.c -------------------------------------------------------------------------------- /src/streamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/streamer.h -------------------------------------------------------------------------------- /src/streamreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/streamreader.c -------------------------------------------------------------------------------- /src/streamreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/streamreader.h -------------------------------------------------------------------------------- /src/tf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/tf.c -------------------------------------------------------------------------------- /src/tf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/tf.h -------------------------------------------------------------------------------- /src/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/threading.h -------------------------------------------------------------------------------- /src/threading_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/threading_pthread.c -------------------------------------------------------------------------------- /src/u8_lc_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/u8_lc_map.h -------------------------------------------------------------------------------- /src/u8_uc_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/u8_uc_map.h -------------------------------------------------------------------------------- /src/undo/undo_playlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/undo/undo_playlist.c -------------------------------------------------------------------------------- /src/undo/undo_playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/undo/undo_playlist.h -------------------------------------------------------------------------------- /src/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/utf8.c -------------------------------------------------------------------------------- /src/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/utf8.h -------------------------------------------------------------------------------- /src/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/vfs.c -------------------------------------------------------------------------------- /src/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/vfs.h -------------------------------------------------------------------------------- /src/vfs_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/vfs_stdio.c -------------------------------------------------------------------------------- /src/viz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/viz.c -------------------------------------------------------------------------------- /src/viz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/viz.h -------------------------------------------------------------------------------- /src/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/volume.c -------------------------------------------------------------------------------- /src/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/src/volume.h -------------------------------------------------------------------------------- /tools/docker/14.04/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/docker/14.04/test.sh -------------------------------------------------------------------------------- /tools/docker/18.04/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/docker/18.04/test.sh -------------------------------------------------------------------------------- /tools/docker/20.04/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/docker/20.04/test.sh -------------------------------------------------------------------------------- /tools/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/docker/README.md -------------------------------------------------------------------------------- /tools/glade/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/ABOUT-NLS -------------------------------------------------------------------------------- /tools/glade/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/AUTHORS -------------------------------------------------------------------------------- /tools/glade/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/COPYING -------------------------------------------------------------------------------- /tools/glade/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/ChangeLog -------------------------------------------------------------------------------- /tools/glade/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/FAQ -------------------------------------------------------------------------------- /tools/glade/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/INSTALL -------------------------------------------------------------------------------- /tools/glade/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/Makefile.am -------------------------------------------------------------------------------- /tools/glade/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/NEWS -------------------------------------------------------------------------------- /tools/glade/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/README -------------------------------------------------------------------------------- /tools/glade/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/TODO -------------------------------------------------------------------------------- /tools/glade/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/configure.in -------------------------------------------------------------------------------- /tools/glade/doc/ro/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = glade-faq 3 | -------------------------------------------------------------------------------- /tools/glade/examples/editor/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/glade/examples/editor/po/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/glade/glade-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade-2.png -------------------------------------------------------------------------------- /tools/glade/glade.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade.spec.in -------------------------------------------------------------------------------- /tools/glade/glade/data/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = gtk 3 | -------------------------------------------------------------------------------- /tools/glade/glade/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/debug.c -------------------------------------------------------------------------------- /tools/glade/glade/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/debug.h -------------------------------------------------------------------------------- /tools/glade/glade/editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/editor.c -------------------------------------------------------------------------------- /tools/glade/glade/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/editor.h -------------------------------------------------------------------------------- /tools/glade/glade/gb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/gb.c -------------------------------------------------------------------------------- /tools/glade/glade/gb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/gb.h -------------------------------------------------------------------------------- /tools/glade/glade/glade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/glade.c -------------------------------------------------------------------------------- /tools/glade/glade/glade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/glade.h -------------------------------------------------------------------------------- /tools/glade/glade/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/keys.c -------------------------------------------------------------------------------- /tools/glade/glade/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/keys.h -------------------------------------------------------------------------------- /tools/glade/glade/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/load.c -------------------------------------------------------------------------------- /tools/glade/glade/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/load.h -------------------------------------------------------------------------------- /tools/glade/glade/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/main.c -------------------------------------------------------------------------------- /tools/glade/glade/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/save.c -------------------------------------------------------------------------------- /tools/glade/glade/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/save.h -------------------------------------------------------------------------------- /tools/glade/glade/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/source.c -------------------------------------------------------------------------------- /tools/glade/glade/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/source.h -------------------------------------------------------------------------------- /tools/glade/glade/styles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/styles.c -------------------------------------------------------------------------------- /tools/glade/glade/styles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/styles.h -------------------------------------------------------------------------------- /tools/glade/glade/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/tree.c -------------------------------------------------------------------------------- /tools/glade/glade/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/tree.h -------------------------------------------------------------------------------- /tools/glade/glade/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/utils.c -------------------------------------------------------------------------------- /tools/glade/glade/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/glade/utils.h -------------------------------------------------------------------------------- /tools/glade/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/mkinstalldirs -------------------------------------------------------------------------------- /tools/glade/po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/ChangeLog -------------------------------------------------------------------------------- /tools/glade/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/LINGUAS -------------------------------------------------------------------------------- /tools/glade/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/POTFILES.in -------------------------------------------------------------------------------- /tools/glade/po/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/am.po -------------------------------------------------------------------------------- /tools/glade/po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/ar.po -------------------------------------------------------------------------------- /tools/glade/po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/az.po -------------------------------------------------------------------------------- /tools/glade/po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/be.po -------------------------------------------------------------------------------- /tools/glade/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/ca.po -------------------------------------------------------------------------------- /tools/glade/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/cs.po -------------------------------------------------------------------------------- /tools/glade/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/da.po -------------------------------------------------------------------------------- /tools/glade/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/de.po -------------------------------------------------------------------------------- /tools/glade/po/dz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/dz.po -------------------------------------------------------------------------------- /tools/glade/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/el.po -------------------------------------------------------------------------------- /tools/glade/po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/en_CA.po -------------------------------------------------------------------------------- /tools/glade/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/en_GB.po -------------------------------------------------------------------------------- /tools/glade/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/es.po -------------------------------------------------------------------------------- /tools/glade/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/et.po -------------------------------------------------------------------------------- /tools/glade/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/fi.po -------------------------------------------------------------------------------- /tools/glade/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/fr.po -------------------------------------------------------------------------------- /tools/glade/po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/ga.po -------------------------------------------------------------------------------- /tools/glade/po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/gl.po -------------------------------------------------------------------------------- /tools/glade/po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/hr.po -------------------------------------------------------------------------------- /tools/glade/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/hu.po -------------------------------------------------------------------------------- /tools/glade/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/it.po -------------------------------------------------------------------------------- /tools/glade/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/ja.po -------------------------------------------------------------------------------- /tools/glade/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/ko.po -------------------------------------------------------------------------------- /tools/glade/po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/lv.po -------------------------------------------------------------------------------- /tools/glade/po/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/mk.po -------------------------------------------------------------------------------- /tools/glade/po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/ml.po -------------------------------------------------------------------------------- /tools/glade/po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/ms.po -------------------------------------------------------------------------------- /tools/glade/po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/nb.po -------------------------------------------------------------------------------- /tools/glade/po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/ne.po -------------------------------------------------------------------------------- /tools/glade/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/nl.po -------------------------------------------------------------------------------- /tools/glade/po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/nn.po -------------------------------------------------------------------------------- /tools/glade/po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/oc.po -------------------------------------------------------------------------------- /tools/glade/po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/pa.po -------------------------------------------------------------------------------- /tools/glade/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/pl.po -------------------------------------------------------------------------------- /tools/glade/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/pt.po -------------------------------------------------------------------------------- /tools/glade/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/pt_BR.po -------------------------------------------------------------------------------- /tools/glade/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/ro.po -------------------------------------------------------------------------------- /tools/glade/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/ru.po -------------------------------------------------------------------------------- /tools/glade/po/rw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/rw.po -------------------------------------------------------------------------------- /tools/glade/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/sk.po -------------------------------------------------------------------------------- /tools/glade/po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/sq.po -------------------------------------------------------------------------------- /tools/glade/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/sr.po -------------------------------------------------------------------------------- /tools/glade/po/sr@Latn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/sr@Latn.po -------------------------------------------------------------------------------- /tools/glade/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/sv.po -------------------------------------------------------------------------------- /tools/glade/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/tr.po -------------------------------------------------------------------------------- /tools/glade/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/uk.po -------------------------------------------------------------------------------- /tools/glade/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/vi.po -------------------------------------------------------------------------------- /tools/glade/po/yi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/yi.po -------------------------------------------------------------------------------- /tools/glade/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/zh_CN.po -------------------------------------------------------------------------------- /tools/glade/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/glade/po/zh_TW.po -------------------------------------------------------------------------------- /tools/localize/extract.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/localize/extract.pm -------------------------------------------------------------------------------- /tools/localize/localize.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/localize/localize.pl -------------------------------------------------------------------------------- /tools/packages/arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/packages/arch.sh -------------------------------------------------------------------------------- /tools/packages/deb_control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/packages/deb_control -------------------------------------------------------------------------------- /tools/packages/deb_postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/packages/deb_postrm -------------------------------------------------------------------------------- /tools/packages/debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/packages/debian.sh -------------------------------------------------------------------------------- /tools/packages/slack-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/packages/slack-desc -------------------------------------------------------------------------------- /tools/packages/slack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/packages/slack.sh -------------------------------------------------------------------------------- /tools/pluginfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/pluginfo/Makefile -------------------------------------------------------------------------------- /tools/pluginfo/pluginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/tools/pluginfo/pluginfo.c -------------------------------------------------------------------------------- /translation/extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/translation/extra.c -------------------------------------------------------------------------------- /translation/plugins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/translation/plugins.c -------------------------------------------------------------------------------- /translators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/translators.txt -------------------------------------------------------------------------------- /u8_lc_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/u8_lc_map.txt -------------------------------------------------------------------------------- /u8_uc_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/u8_uc_map.txt -------------------------------------------------------------------------------- /yasmwrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeaDBeeF-for-Windows/deadbeef/HEAD/yasmwrapper.sh --------------------------------------------------------------------------------