├── .dummy.am ├── .gitattributes ├── .gitignore ├── .gitmodules ├── CONTRIBUTORS ├── LICENSE.GPL ├── Makefile.in ├── Makefile.include.in ├── README.armel ├── README.ios ├── README.linux ├── README.osx ├── README.ubuntu ├── XBMC-ATV2.xcodeproj └── project.pbxproj ├── XBMC-IOS.xcodeproj └── project.pbxproj ├── XBMC.xcodeproj └── project.pbxproj ├── addons ├── library.xbmc.addon │ ├── dlfcn-win32.cpp │ ├── dlfcn-win32.h │ └── libXBMC_addon.h ├── library.xbmc.gui │ └── libXBMC_gui.h ├── library.xbmc.pvr │ └── libXBMC_pvr.h ├── metadata.albums.allmusic.com │ ├── addon.xml │ ├── allmusic.xml │ ├── icon.png │ └── resources │ │ ├── language │ │ ├── Bulgarian │ │ │ └── strings.xml │ │ ├── Chinese (Simple) │ │ │ └── strings.xml │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ ├── French │ │ │ └── strings.xml │ │ ├── German │ │ │ └── strings.xml │ │ ├── Hungarian │ │ │ └── strings.xml │ │ ├── Korean │ │ │ └── strings.xml │ │ ├── Polish │ │ │ └── strings.xml │ │ ├── Portuguese │ │ │ └── strings.xml │ │ ├── Russian │ │ │ └── strings.xml │ │ ├── Spanish │ │ │ └── strings.xml │ │ └── Swedish │ │ │ └── strings.xml │ │ └── settings.xml ├── metadata.artists.allmusic.com │ ├── addon.xml │ ├── allmusic.xml │ ├── icon.png │ └── resources │ │ ├── language │ │ ├── Bulgarian │ │ │ └── strings.xml │ │ ├── Chinese (Simple) │ │ │ └── strings.xml │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ ├── French │ │ │ └── strings.xml │ │ ├── German │ │ │ └── strings.xml │ │ ├── Hungarian │ │ │ └── strings.xml │ │ ├── Korean │ │ │ └── strings.xml │ │ ├── Polish │ │ │ └── strings.xml │ │ ├── Portuguese │ │ │ └── strings.xml │ │ ├── Russian │ │ │ └── strings.xml │ │ ├── Spanish │ │ │ └── strings.xml │ │ └── Swedish │ │ │ └── strings.xml │ │ └── settings.xml ├── metadata.common.allmusic.com │ ├── addon.xml │ └── allmusic.xml ├── metadata.common.hdtrailers.net │ ├── addon.xml │ └── hdtrailers.xml ├── metadata.common.htbackdrops.com │ ├── addon.xml │ └── htbackdrops.xml ├── metadata.common.imdb.com │ ├── addon.xml │ ├── changelog.txt │ └── imdb.xml ├── metadata.common.last.fm │ ├── addon.xml │ └── lastfm.xml ├── metadata.common.themoviedb.org │ ├── addon.xml │ └── tmdb.xml ├── metadata.themoviedb.org │ ├── addon.xml │ ├── changelog.txt │ ├── icon.png │ ├── resources │ │ ├── language │ │ │ ├── Bulgarian │ │ │ │ └── strings.xml │ │ │ ├── Chinese (Simple) │ │ │ │ └── strings.xml │ │ │ ├── Dutch │ │ │ │ └── strings.xml │ │ │ ├── English │ │ │ │ └── strings.xml │ │ │ ├── Finnish │ │ │ │ └── strings.xml │ │ │ ├── French │ │ │ │ └── strings.xml │ │ │ ├── German │ │ │ │ └── strings.xml │ │ │ ├── Hungarian │ │ │ │ └── strings.xml │ │ │ ├── Korean │ │ │ │ └── strings.xml │ │ │ ├── Polish │ │ │ │ └── strings.xml │ │ │ ├── Portuguese │ │ │ │ └── strings.xml │ │ │ ├── Romanian │ │ │ │ └── strings.xml │ │ │ ├── Russian │ │ │ │ └── strings.xml │ │ │ ├── Spanish │ │ │ │ └── strings.xml │ │ │ └── Swedish │ │ │ │ └── strings.xml │ │ └── settings.xml │ └── tmdb.xml ├── metadata.tvdb.com │ ├── addon.xml │ ├── changelog.txt │ ├── icon.png │ ├── resources │ │ ├── language │ │ │ ├── Chinese (Simple) │ │ │ │ └── strings.xml │ │ │ ├── Dutch │ │ │ │ └── strings.xml │ │ │ ├── English │ │ │ │ └── strings.xml │ │ │ ├── Finnish │ │ │ │ └── strings.xml │ │ │ ├── French │ │ │ │ └── strings.xml │ │ │ ├── German │ │ │ │ └── strings.xml │ │ │ ├── Hungarian │ │ │ │ └── strings.xml │ │ │ ├── Korean │ │ │ │ └── strings.xml │ │ │ ├── Polish │ │ │ │ └── strings.xml │ │ │ ├── Portuguese │ │ │ │ └── strings.xml │ │ │ ├── Russian │ │ │ │ └── strings.xml │ │ │ ├── Spanish │ │ │ │ └── strings.xml │ │ │ └── Swedish │ │ │ │ └── strings.xml │ │ └── settings.xml │ └── tvdb.xml ├── metadata.yahoomusic.com │ ├── addon.xml │ ├── icon.png │ ├── resources │ │ ├── language │ │ │ ├── Dutch │ │ │ │ └── strings.xml │ │ │ ├── English │ │ │ │ └── strings.xml │ │ │ ├── Finnish │ │ │ │ └── strings.xml │ │ │ ├── Hungarian │ │ │ │ └── strings.xml │ │ │ ├── Korean │ │ │ │ └── strings.xml │ │ │ ├── Polish │ │ │ │ └── strings.xml │ │ │ ├── Portuguese │ │ │ │ └── strings.xml │ │ │ └── Swedish │ │ │ │ └── strings.xml │ │ └── settings.xml │ └── yahoomusic.xml ├── pvr.demo │ └── addon.xml ├── pvr.hts │ ├── addon.xml │ ├── icon.png │ ├── pthreadVC2.dll │ ├── pthreadVC2d.dll │ └── resources │ │ ├── language │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ └── German │ │ │ └── strings.xml │ │ └── settings.xml ├── pvr.mythtv │ ├── addon.xml │ ├── icon.png │ └── resources │ │ ├── language │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ └── German │ │ │ └── strings.xml │ │ └── settings.xml ├── pvr.team-mediaportal.tvserver │ ├── LICENSE.txt │ ├── addon.xml │ ├── changelog.txt │ ├── icon.png │ └── resources │ │ ├── genre_translation.xml │ │ ├── language │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ ├── German │ │ │ └── strings.xml │ │ └── Italian │ │ │ └── strings.xml │ │ └── settings.xml ├── pvr.vdr.vnsi │ ├── addon.xml │ ├── icon.png │ ├── pthreadVC2.dll │ ├── pthreadVC2d.dll │ └── resources │ │ ├── language │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ └── German │ │ │ └── strings.xml │ │ ├── settings.xml │ │ └── skins │ │ └── Confluence │ │ └── 720p │ │ └── ChannelScan.xml ├── repository.xbmc.org │ ├── addon.xml │ └── icon.png ├── screensaver.rsxs.euphoria │ ├── addon.xml │ └── icon.png ├── screensaver.rsxs.plasma │ ├── addon.xml │ └── icon.png ├── screensaver.rsxs.solarwinds │ ├── addon.xml │ └── icon.png ├── screensaver.xbmc.builtin.black │ ├── addon.xml │ └── icon.png ├── screensaver.xbmc.builtin.dim │ ├── addon.xml │ ├── icon.png │ └── resources │ │ ├── language │ │ ├── Bulgarian │ │ │ └── strings.xml │ │ ├── Chinese (Simple) │ │ │ └── strings.xml │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ ├── French │ │ │ └── strings.xml │ │ ├── German │ │ │ └── strings.xml │ │ ├── Hungarian │ │ │ └── strings.xml │ │ ├── Korean │ │ │ └── strings.xml │ │ ├── Polish │ │ │ └── strings.xml │ │ ├── Portuguese │ │ │ └── strings.xml │ │ ├── Romanian │ │ │ └── strings.xml │ │ ├── Russian │ │ │ └── strings.xml │ │ ├── Slovenian │ │ │ └── strings.xml │ │ ├── Spanish │ │ │ └── strings.xml │ │ └── Swedish │ │ │ └── strings.xml │ │ └── settings.xml ├── screensaver.xbmc.builtin.slideshow │ ├── addon.xml │ ├── icon.png │ └── resources │ │ ├── language │ │ ├── Chinese (Simple) │ │ │ └── strings.xml │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ ├── French │ │ │ └── strings.xml │ │ ├── German │ │ │ └── strings.xml │ │ ├── Hungarian │ │ │ └── strings.xml │ │ ├── Korean │ │ │ └── strings.xml │ │ ├── Polish │ │ │ └── strings.xml │ │ ├── Romanian │ │ │ └── strings.xml │ │ ├── Russian │ │ │ └── strings.xml │ │ ├── Slovenian │ │ │ └── strings.xml │ │ ├── Spanish │ │ │ └── strings.xml │ │ └── Swedish │ │ │ └── strings.xml │ │ └── settings.xml ├── script.module.pil │ └── addon.xml ├── script.module.pysqlite │ ├── addon.xml │ └── lib │ │ └── pysqlite2 │ │ └── __init__.py ├── script.module.simplejson │ ├── addon.xml │ └── lib │ │ ├── LICENSE.txt │ │ └── simplejson │ │ ├── __init__.py │ │ ├── decoder.py │ │ ├── encoder.py │ │ ├── scanner.py │ │ └── tool.py ├── skin.confluence │ ├── 720p │ │ ├── AddonBrowser.xml │ │ ├── DialogAddonInfo.xml │ │ ├── DialogAddonSettings.xml │ │ ├── DialogAlbumInfo.xml │ │ ├── DialogBusy.xml │ │ ├── DialogButtonMenu.xml │ │ ├── DialogContentSettings.xml │ │ ├── DialogContextMenu.xml │ │ ├── DialogExtendedProgressBar.xml │ │ ├── DialogFavourites.xml │ │ ├── DialogFileStacking.xml │ │ ├── DialogGamepad.xml │ │ ├── DialogKaiToast.xml │ │ ├── DialogKaraokeSongSelector.xml │ │ ├── DialogKaraokeSongSelectorLarge.xml │ │ ├── DialogKeyboard.xml │ │ ├── DialogMediaSource.xml │ │ ├── DialogMusicScan.xml │ │ ├── DialogMuteBug.xml │ │ ├── DialogNetworkSetup.xml │ │ ├── DialogNumeric.xml │ │ ├── DialogOK.xml │ │ ├── DialogPVRChannelManager.xml │ │ ├── DialogPVRChannelsOSD.xml │ │ ├── DialogPVRGroupManager.xml │ │ ├── DialogPVRGuideInfo.xml │ │ ├── DialogPVRGuideOSD.xml │ │ ├── DialogPVRGuideSearch.xml │ │ ├── DialogPVRRecordingInfo.xml │ │ ├── DialogPVRTimerSettings.xml │ │ ├── DialogPeripheralManager.xml │ │ ├── DialogPeripheralSettings.xml │ │ ├── DialogPictureInfo.xml │ │ ├── DialogProgress.xml │ │ ├── DialogSeekBar.xml │ │ ├── DialogSelect.xml │ │ ├── DialogSlider.xml │ │ ├── DialogSongInfo.xml │ │ ├── DialogTextViewer.xml │ │ ├── DialogVideoInfo.xml │ │ ├── DialogVideoScan.xml │ │ ├── DialogVolumeBar.xml │ │ ├── DialogYesNo.xml │ │ ├── FileBrowser.xml │ │ ├── FileManager.xml │ │ ├── Font.xml │ │ ├── Home.xml │ │ ├── IncludesBackgroundBuilding.xml │ │ ├── IncludesCodecFlagging.xml │ │ ├── IncludesHomeMenuItems.xml │ │ ├── IncludesHomeRecentlyAdded.xml │ │ ├── LockSettings.xml │ │ ├── LoginScreen.xml │ │ ├── MusicKaraokeLyrics.xml │ │ ├── MusicOSD.xml │ │ ├── MusicOverlay.xml │ │ ├── MusicVisualisation.xml │ │ ├── MyMusicNav.xml │ │ ├── MyMusicPlaylist.xml │ │ ├── MyMusicPlaylistEditor.xml │ │ ├── MyMusicSongs.xml │ │ ├── MyPVR.xml │ │ ├── MyPics.xml │ │ ├── MyPrograms.xml │ │ ├── MyVideoNav.xml │ │ ├── MyVideoPlaylist.xml │ │ ├── MyWeather.xml │ │ ├── PlayerControls.xml │ │ ├── Pointer.xml │ │ ├── ProfileSettings.xml │ │ ├── Settings.xml │ │ ├── SettingsCategory.xml │ │ ├── SettingsProfile.xml │ │ ├── SettingsScreenCalibration.xml │ │ ├── SettingsSystemInfo.xml │ │ ├── SlideShow.xml │ │ ├── SmartPlaylistEditor.xml │ │ ├── SmartPlaylistRule.xml │ │ ├── Startup.xml │ │ ├── VideoFullScreen.xml │ │ ├── VideoOSD.xml │ │ ├── VideoOSDBookmarks.xml │ │ ├── VideoOSDSettings.xml │ │ ├── VideoOverlay.xml │ │ ├── ViewsAddonBrowser.xml │ │ ├── ViewsFileMode.xml │ │ ├── ViewsLiveTV.xml │ │ ├── ViewsMusicLibrary.xml │ │ ├── ViewsPVR.xml │ │ ├── ViewsPictures.xml │ │ ├── ViewsVideoLibrary.xml │ │ ├── VisualisationPresetList.xml │ │ ├── custom_SkinSetting_1111.xml │ │ ├── defaults.xml │ │ ├── includes.xml │ │ ├── script-RSS_Editor-rssEditor.xml │ │ ├── script-RSS_Editor-setEditor.xml │ │ ├── script-XBMC_Lyrics-main.xml │ │ └── weather+ │ │ │ ├── 10DayForecast.xml │ │ │ ├── 36HourForecast.xml │ │ │ ├── HourlyForecast.xml │ │ │ ├── MapsVideo.xml │ │ │ └── WeekendForecast.xml │ ├── addon.xml │ ├── backgrounds │ │ ├── addons.jpg │ │ ├── appearance.jpg │ │ ├── media-overlay.png │ │ ├── music.jpg │ │ ├── network.jpg │ │ ├── pictures.jpg │ │ ├── playdisc.jpg │ │ ├── programs.jpg │ │ ├── settings.jpg │ │ ├── skinsetting.jpg │ │ ├── system.jpg │ │ ├── tv.jpg │ │ ├── videos.jpg │ │ └── weather.jpg │ ├── build.bat │ ├── changelog.txt │ ├── colors │ │ └── defaults.xml │ ├── fonts │ │ ├── DefaultCaps.ttf │ │ ├── DejaVuSans-Bold-Caps.ttf │ │ ├── DejaVuSans-Bold.ttf │ │ └── DejaVuSans.ttf │ ├── icon.png │ ├── language │ │ ├── Afrikaans │ │ │ └── strings.xml │ │ ├── Arabic │ │ │ └── strings.xml │ │ ├── Bulgarian │ │ │ └── strings.xml │ │ ├── Catalan │ │ │ └── strings.xml │ │ ├── Chinese (Simple) │ │ │ └── strings.xml │ │ ├── Chinese (Traditional) │ │ │ └── strings.xml │ │ ├── Czech │ │ │ └── strings.xml │ │ ├── Danish │ │ │ └── strings.xml │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ ├── French │ │ │ └── strings.xml │ │ ├── German │ │ │ └── strings.xml │ │ ├── Greek │ │ │ └── strings.xml │ │ ├── Hungarian │ │ │ └── strings.xml │ │ ├── Icelandic │ │ │ └── strings.xml │ │ ├── Italian │ │ │ └── strings.xml │ │ ├── Japanese │ │ │ └── strings.xml │ │ ├── Korean │ │ │ └── strings.xml │ │ ├── Lithuanian │ │ │ └── strings.xml │ │ ├── Norwegian │ │ │ └── strings.xml │ │ ├── Polish │ │ │ └── strings.xml │ │ ├── Portuguese (Brazil) │ │ │ └── strings.xml │ │ ├── Portuguese │ │ │ └── strings.xml │ │ ├── Romanian │ │ │ └── strings.xml │ │ ├── Russian │ │ │ └── strings.xml │ │ ├── Serbian (Cyrillic) │ │ │ └── strings.xml │ │ ├── Serbian │ │ │ └── strings.xml │ │ ├── Slovak │ │ │ └── strings.xml │ │ ├── Slovenian │ │ │ └── strings.xml │ │ ├── Spanish │ │ │ └── strings.xml │ │ ├── Swedish │ │ │ └── strings.xml │ │ └── Turkish │ │ │ └── strings.xml │ ├── media │ │ ├── ArrowDown.png │ │ ├── ArrowUp.png │ │ ├── CalibrateBottomRight.png │ │ ├── CalibratePixelRatio.png │ │ ├── CalibrateSubtitles.png │ │ ├── CalibrateTopLeft.png │ │ ├── CenterRating │ │ │ ├── rating0.png │ │ │ ├── rating1.png │ │ │ ├── rating2.png │ │ │ ├── rating3.png │ │ │ ├── rating4.png │ │ │ └── rating5.png │ │ ├── Confluence_Logo.png │ │ ├── ContentPanel.png │ │ ├── ContentPanelMirror.png │ │ ├── DefaultActor.png │ │ ├── DefaultAddSource.png │ │ ├── DefaultAddon.png │ │ ├── DefaultAddonAlbumInfo.png │ │ ├── DefaultAddonArtistInfo.png │ │ ├── DefaultAddonLyrics.png │ │ ├── DefaultAddonMovieInfo.png │ │ ├── DefaultAddonMusic.png │ │ ├── DefaultAddonMusicVideoInfo.png │ │ ├── DefaultAddonNone.png │ │ ├── DefaultAddonPicture.png │ │ ├── DefaultAddonProgram.png │ │ ├── DefaultAddonRepository.png │ │ ├── DefaultAddonScreensaver.png │ │ ├── DefaultAddonService.png │ │ ├── DefaultAddonSkin.png │ │ ├── DefaultAddonSubtitles.png │ │ ├── DefaultAddonTvInfo.png │ │ ├── DefaultAddonVideo.png │ │ ├── DefaultAddonVisualization.png │ │ ├── DefaultAddonWeather.png │ │ ├── DefaultAddonWebSkin.png │ │ ├── DefaultAlbumCover.png │ │ ├── DefaultArtist.png │ │ ├── DefaultAudio.png │ │ ├── DefaultCDDA.png │ │ ├── DefaultDVDEmpty.png │ │ ├── DefaultDVDRom.png │ │ ├── DefaultFile.png │ │ ├── DefaultFolder.png │ │ ├── DefaultFolderBack.png │ │ ├── DefaultHardDisk.png │ │ ├── DefaultIconError.png │ │ ├── DefaultIconInfo.png │ │ ├── DefaultIconWarning.png │ │ ├── DefaultMovies.png │ │ ├── DefaultMusicAlbums.png │ │ ├── DefaultMusicArtists.png │ │ ├── DefaultMusicCompilations.png │ │ ├── DefaultMusicGenres.png │ │ ├── DefaultMusicPlaylists.png │ │ ├── DefaultMusicPlugins.png │ │ ├── DefaultMusicRecentlyAdded.png │ │ ├── DefaultMusicRecentlyPlayed.png │ │ ├── DefaultMusicSongs.png │ │ ├── DefaultMusicTop100.png │ │ ├── DefaultMusicVideos.png │ │ ├── DefaultMusicYears.png │ │ ├── DefaultNetwork.png │ │ ├── DefaultPicture.png │ │ ├── DefaultPlaylist.png │ │ ├── DefaultProgram.png │ │ ├── DefaultRecentlyAddedEpisodes.png │ │ ├── DefaultRecentlyAddedMovies.png │ │ ├── DefaultRecentlyAddedMusicVideos.png │ │ ├── DefaultTVShows.png │ │ ├── DefaultVideo.png │ │ ├── DefaultVideoCover.png │ │ ├── DefaultVideoPlaylists.png │ │ ├── DefaultVideoPlugins.png │ │ ├── DialogBack.png │ │ ├── DialogBack2.png │ │ ├── DialogCloseButton-focus.png │ │ ├── DialogCloseButton.png │ │ ├── DialogContextBottom.png │ │ ├── DialogContextMiddle.png │ │ ├── DialogContextTop.png │ │ ├── Fanart_Fallback_Music_Small.jpg │ │ ├── Fanart_Fallback_Small.jpg │ │ ├── GlassOverlay.png │ │ ├── GlassTitleBar.png │ │ ├── GoFullscreen.png │ │ ├── HasSub.png │ │ ├── HomeBack.png │ │ ├── HomeBladeSub.png │ │ ├── HomeButtonsBack.png │ │ ├── HomeIcon-Focus.png │ │ ├── HomeIcon.png │ │ ├── HomeNowPlayingBack.png │ │ ├── HomeOverlay1.png │ │ ├── HomeSeperator.png │ │ ├── HomeSubEnd.png │ │ ├── HomeSubFO.png │ │ ├── HomeSubNF.png │ │ ├── InfoMessagePanel.png │ │ ├── KeyboardCornerBottom.png │ │ ├── KeyboardCornerBottomNF.png │ │ ├── KeyboardCornerTop.png │ │ ├── KeyboardCornerTopNF.png │ │ ├── KeyboardEditArea.png │ │ ├── KeyboardKey.png │ │ ├── KeyboardKeyNF.png │ │ ├── LeftRating │ │ │ ├── rating0.png │ │ │ ├── rating1.png │ │ │ ├── rating2.png │ │ │ ├── rating3.png │ │ │ ├── rating4.png │ │ │ └── rating5.png │ │ ├── Makefile.in │ │ ├── MediaBladeSub.png │ │ ├── MediaItemDetailBG.png │ │ ├── MenuItemFO.png │ │ ├── MenuItemNF.png │ │ ├── NowPlayingIcon.png │ │ ├── OSD16x.png │ │ ├── OSD2x.png │ │ ├── OSD32x.png │ │ ├── OSD4x.png │ │ ├── OSD8x.png │ │ ├── OSDAudioFO.png │ │ ├── OSDAudioNF.png │ │ ├── OSDBookmarksFO.png │ │ ├── OSDBookmarksNF.png │ │ ├── OSDChannelDownFO.png │ │ ├── OSDChannelDownNF.png │ │ ├── OSDChannelListFO.png │ │ ├── OSDChannelListNF.png │ │ ├── OSDChannelUPFO.png │ │ ├── OSDChannelUPNF.png │ │ ├── OSDDvdFO.png │ │ ├── OSDDvdNF.png │ │ ├── OSDForwardFO.png │ │ ├── OSDForwardNF.png │ │ ├── OSDLyricsFO.png │ │ ├── OSDLyricsNF.png │ │ ├── OSDNextTrackFO.png │ │ ├── OSDNextTrackNF.png │ │ ├── OSDPause.png │ │ ├── OSDPauseFO.png │ │ ├── OSDPauseNF.png │ │ ├── OSDPlay.png │ │ ├── OSDPlayFO.png │ │ ├── OSDPlayNF.png │ │ ├── OSDPlaylistFO.png │ │ ├── OSDPlaylistNF.png │ │ ├── OSDPreFO.png │ │ ├── OSDPreNF.png │ │ ├── OSDPresetSettingsFO.png │ │ ├── OSDPresetSettingsNF.png │ │ ├── OSDPrevTrackFO.png │ │ ├── OSDPrevTrackNF.png │ │ ├── OSDProgressBack.png │ │ ├── OSDProgressMid.png │ │ ├── OSDProgressMidLight.png │ │ ├── OSDRandomOffFO.png │ │ ├── OSDRandomOffNF.png │ │ ├── OSDRandomOnFO.png │ │ ├── OSDRandomOnNF.png │ │ ├── OSDRecordOffFO.png │ │ ├── OSDRecordOffNF.png │ │ ├── OSDRecordOnFO.png │ │ ├── OSDRecordOnNF.png │ │ ├── OSDRepeatAllFO.png │ │ ├── OSDRepeatAllNF.png │ │ ├── OSDRepeatFO.png │ │ ├── OSDRepeatNF.png │ │ ├── OSDRepeatOneFO.png │ │ ├── OSDRepeatOneNF.png │ │ ├── OSDRewindFO.png │ │ ├── OSDRewindNF.png │ │ ├── OSDSeekForward.png │ │ ├── OSDSeekFrame.png │ │ ├── OSDSeekRewind.png │ │ ├── OSDStopFO.png │ │ ├── OSDStopNF.png │ │ ├── OSDSubtitlesFO.png │ │ ├── OSDSubtitlesNF.png │ │ ├── OSDTeleTextFO.png │ │ ├── OSDTeleTextNF.png │ │ ├── OSDVideoFO.png │ │ ├── OSDVideoNF.png │ │ ├── OSDVizFO.png │ │ ├── OSDVizNF.png │ │ ├── OSDepgFO.png │ │ ├── OSDepgNF.png │ │ ├── OverlayDialogBackground.png │ │ ├── OverlayHD.png │ │ ├── OverlayLocked.png │ │ ├── OverlayRAR.png │ │ ├── OverlayWatched.png │ │ ├── PVR-HasTimer.png │ │ ├── PVR-IsRecording.png │ │ ├── RecentAddedBack.png │ │ ├── ScrollBarH.png │ │ ├── ScrollBarH_bar.png │ │ ├── ScrollBarH_bar_focus.png │ │ ├── ScrollBarNib.png │ │ ├── ScrollBarV.png │ │ ├── ScrollBarV_bar.png │ │ ├── ScrollBarV_bar_focus.png │ │ ├── ShutdownButtonFocus.png │ │ ├── ShutdownButtonNoFocus.png │ │ ├── SideFade.png │ │ ├── StackFO.png │ │ ├── StackNF.png │ │ ├── ThumbBG.png │ │ ├── ThumbBorder.png │ │ ├── ThumbShadow.png │ │ ├── VolumeIcon-Mute.png │ │ ├── VolumeIcon.png │ │ ├── black-back.png │ │ ├── black-back2.png │ │ ├── busy.png │ │ ├── button-focus.png │ │ ├── button-focus2.png │ │ ├── button-nofocus.png │ │ ├── defaultDVDFull.png │ │ ├── dialogheader.png │ │ ├── diffuse_mirror2.png │ │ ├── diffuse_mirror3.png │ │ ├── epg-genres │ │ │ ├── 0.png │ │ │ ├── 112.png │ │ │ ├── 128.png │ │ │ ├── 144.png │ │ │ ├── 16.png │ │ │ ├── 160.png │ │ │ ├── 176.png │ │ │ ├── 192.png │ │ │ ├── 208.png │ │ │ ├── 224.png │ │ │ ├── 240.png │ │ │ ├── 32.png │ │ │ ├── 48.png │ │ │ ├── 64.png │ │ │ ├── 80.png │ │ │ ├── 96.png │ │ │ └── genre-numbers.txt │ │ ├── flagging │ │ │ ├── aspectratio │ │ │ │ ├── 1.33.png │ │ │ │ ├── 1.66.png │ │ │ │ ├── 1.78.png │ │ │ │ ├── 1.85.png │ │ │ │ ├── 2.20.png │ │ │ │ └── 2.35.png │ │ │ ├── audio │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ ├── aac.png │ │ │ │ ├── ac3.png │ │ │ │ ├── aif.png │ │ │ │ ├── aifc.png │ │ │ │ ├── aiff.png │ │ │ │ ├── alac.png │ │ │ │ ├── ape.png │ │ │ │ ├── avc.png │ │ │ │ ├── cdda.png │ │ │ │ ├── dca.png │ │ │ │ ├── dts.png │ │ │ │ ├── dtshd_hra.png │ │ │ │ ├── dtshd_ma.png │ │ │ │ ├── eac3.png │ │ │ │ ├── flac.png │ │ │ │ ├── mp1.png │ │ │ │ ├── mp2.png │ │ │ │ ├── mp3.png │ │ │ │ ├── ogg.png │ │ │ │ ├── pcm_bluray.png │ │ │ │ ├── truehd.png │ │ │ │ ├── vorbis.png │ │ │ │ ├── wav.png │ │ │ │ ├── wavpack.png │ │ │ │ ├── wma.png │ │ │ │ ├── wmapro.png │ │ │ │ └── wmav2.png │ │ │ ├── blank.png │ │ │ ├── lists │ │ │ │ ├── 1080.png │ │ │ │ ├── 480.png │ │ │ │ ├── 540.png │ │ │ │ ├── 576.png │ │ │ │ └── 720.png │ │ │ ├── ratings │ │ │ │ ├── mpaa_general.png │ │ │ │ ├── mpaa_nc17.png │ │ │ │ ├── mpaa_notrated.png │ │ │ │ ├── mpaa_pg.png │ │ │ │ ├── mpaa_pg13.png │ │ │ │ └── mpaa_restricted.png │ │ │ └── video │ │ │ │ ├── 1080.png │ │ │ │ ├── 480.png │ │ │ │ ├── 540.png │ │ │ │ ├── 576.png │ │ │ │ ├── 720.png │ │ │ │ ├── avc1.png │ │ │ │ ├── bluray.png │ │ │ │ ├── divx.png │ │ │ │ ├── dvd.png │ │ │ │ ├── flv.png │ │ │ │ ├── h264.png │ │ │ │ ├── hddvd.png │ │ │ │ ├── mpeg1video.png │ │ │ │ ├── mpeg2video.png │ │ │ │ ├── tv.png │ │ │ │ ├── vc-1.png │ │ │ │ ├── vhs.png │ │ │ │ ├── vp8.png │ │ │ │ ├── wvc1.png │ │ │ │ └── xvid.png │ │ ├── floor.png │ │ ├── folder-focus.png │ │ ├── gradient.png │ │ ├── header.png │ │ ├── home-favourites-FO.png │ │ ├── home-favourites.png │ │ ├── home-power-FO.png │ │ ├── home-power-inhibit-FO.png │ │ ├── home-power-inhibit.png │ │ ├── home-power.png │ │ ├── icon-mute.png │ │ ├── icon-rss.png │ │ ├── icon-video.png │ │ ├── icon-weather.png │ │ ├── lastfm-hate-focus.png │ │ ├── lastfm-hate-nofocus.png │ │ ├── lastfm-love-focus.png │ │ ├── lastfm-love-nofocus.png │ │ ├── osd_slider_bg.png │ │ ├── osd_slider_bg_2.png │ │ ├── osd_slider_nib.png │ │ ├── osd_slider_nibNF.png │ │ ├── pointer-focus-click.png │ │ ├── pointer-focus-drag.png │ │ ├── pointer-focus.png │ │ ├── pointer-nofocus.png │ │ ├── radiobutton-focus.png │ │ ├── radiobutton-nofocus.png │ │ ├── scroll-down-2.png │ │ ├── scroll-down-focus-2.png │ │ ├── scroll-down-focus.png │ │ ├── scroll-down.png │ │ ├── scroll-left-focus.png │ │ ├── scroll-left.png │ │ ├── scroll-right-focus.png │ │ ├── scroll-right.png │ │ ├── scroll-up-2.png │ │ ├── scroll-up-focus-2.png │ │ ├── scroll-up-focus.png │ │ ├── scroll-up.png │ │ ├── seekslider.png │ │ ├── seekslider2.png │ │ ├── separator.png │ │ ├── separator2.png │ │ ├── separator_vertical.png │ │ ├── unknown-user.png │ │ └── xbmc-logo.png │ └── sounds │ │ ├── back.wav │ │ ├── click.wav │ │ ├── cursor.wav │ │ ├── notify.wav │ │ ├── out.wav │ │ ├── shutter.wav │ │ └── sounds.xml ├── visualization.dxspectrum │ ├── addon.xml │ ├── icon.png │ └── resources │ │ ├── language │ │ ├── Bulgarian │ │ │ └── strings.xml │ │ ├── Chinese (Simple) │ │ │ └── strings.xml │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ ├── French │ │ │ └── strings.xml │ │ ├── German │ │ │ └── strings.xml │ │ ├── Hungarian │ │ │ └── strings.xml │ │ ├── Korean │ │ │ └── strings.xml │ │ ├── Polish │ │ │ └── strings.xml │ │ ├── Portuguese │ │ │ └── strings.xml │ │ ├── Romanian │ │ │ └── strings.xml │ │ ├── Slovenian │ │ │ └── strings.xml │ │ ├── Spanish │ │ │ └── strings.xml │ │ └── Swedish │ │ │ └── strings.xml │ │ └── settings.xml ├── visualization.glspectrum │ ├── addon.xml │ ├── icon.png │ └── resources │ │ ├── language │ │ ├── Bulgarian │ │ │ └── strings.xml │ │ ├── Chinese (Simple) │ │ │ └── strings.xml │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ ├── French │ │ │ └── strings.xml │ │ ├── German │ │ │ └── strings.xml │ │ ├── Hungarian │ │ │ └── strings.xml │ │ ├── Korean │ │ │ └── strings.xml │ │ ├── Polish │ │ │ └── strings.xml │ │ ├── Romanian │ │ │ └── strings.xml │ │ ├── Russian │ │ │ └── strings.xml │ │ ├── Slovenian │ │ │ └── strings.xml │ │ ├── Spanish │ │ │ └── strings.xml │ │ └── Swedish │ │ │ └── strings.xml │ │ └── settings.xml ├── visualization.itunes │ └── addon.xml ├── visualization.milkdrop │ ├── addon.xml │ ├── icon.png │ ├── presets │ │ ├── WA51-presets(265).zip │ │ └── Winamp-presets(436).zip │ └── resources │ │ ├── language │ │ ├── Bulgarian │ │ │ └── strings.xml │ │ ├── Chinese (Simple) │ │ │ └── strings.xml │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ ├── French │ │ │ └── strings.xml │ │ ├── German │ │ │ └── strings.xml │ │ ├── Hungarian │ │ │ └── strings.xml │ │ ├── Korean │ │ │ └── strings.xml │ │ ├── Polish │ │ │ └── strings.xml │ │ ├── Portuguese │ │ │ └── strings.xml │ │ ├── Romanian │ │ │ └── strings.xml │ │ ├── Russian │ │ │ └── strings.xml │ │ ├── Slovenian │ │ │ └── strings.xml │ │ ├── Spanish │ │ │ └── strings.xml │ │ └── Swedish │ │ │ └── strings.xml │ │ └── settings.xml ├── visualization.projectm │ ├── addon.xml │ ├── icon.png │ └── resources │ │ ├── language │ │ ├── Bulgarian │ │ │ └── strings.xml │ │ ├── Chinese (Simple) │ │ │ └── strings.xml │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ ├── French │ │ │ └── strings.xml │ │ ├── German │ │ │ └── strings.xml │ │ ├── Hungarian │ │ │ └── strings.xml │ │ ├── Korean │ │ │ └── strings.xml │ │ ├── Polish │ │ │ └── strings.xml │ │ ├── Portuguese │ │ │ └── strings.xml │ │ ├── Romanian │ │ │ └── strings.xml │ │ ├── Russian │ │ │ └── strings.xml │ │ ├── Slovenian │ │ │ └── strings.xml │ │ ├── Spanish │ │ │ └── strings.xml │ │ └── Swedish │ │ │ └── strings.xml │ │ └── settings.xml ├── visualization.waveform │ ├── addon.xml │ └── icon.png ├── weather.wunderground │ ├── LICENSE.txt │ ├── addon.xml │ ├── changelog.txt │ ├── default.py │ ├── icon.png │ └── resources │ │ ├── language │ │ ├── Chinese (Simple) │ │ │ └── strings.xml │ │ ├── Dutch │ │ │ └── strings.xml │ │ ├── English │ │ │ └── strings.xml │ │ ├── Finnish │ │ │ └── strings.xml │ │ ├── German │ │ │ └── strings.xml │ │ └── Swedish │ │ │ └── strings.xml │ │ ├── lib │ │ └── utilities.py │ │ └── settings.xml ├── webinterface.default │ ├── addon.xml │ ├── css │ │ ├── core.css │ │ └── ipad.css │ ├── favicon.ico │ ├── icon.png │ ├── images │ │ ├── DefaultAlbumCover.png │ │ ├── DefaultVideo.png │ │ ├── ajax-loader.gif │ │ ├── close-button.png │ │ └── remote.jpg │ ├── index.html │ └── js │ │ ├── Core.js │ │ ├── Launcher.js │ │ ├── MediaLibrary.js │ │ ├── NowPlayingManager.js │ │ ├── iscroll-min.js │ │ ├── iscroll.js │ │ ├── jquery-1.5.2.js │ │ ├── jquery-1.5.2.min.js │ │ └── jquery.lazyload.js ├── xbmc.addon │ ├── addon.xml │ ├── metadata.xsd │ └── repository.xsd ├── xbmc.core │ └── addon.xml ├── xbmc.gui │ ├── addon.xml │ └── skin.xsd ├── xbmc.json │ └── addon.xml ├── xbmc.metadata │ ├── addon.xml │ └── scraper.xsd └── xbmc.python │ ├── addon.xml │ ├── pluginsource.xsd │ └── script.xsd ├── bootstrap ├── configure.in ├── copying.txt ├── docs └── manpages │ ├── diskmounter.1 │ ├── installXBMC.1 │ ├── runXBMC.1 │ ├── setAlsaVolumes.1 │ ├── xbmc-j2meremote.1 │ ├── xbmc-ps3remote.1 │ ├── xbmc-send.1 │ ├── xbmc-standalone.1 │ ├── xbmc-wiiremote.1 │ ├── xbmc.1 │ └── xbmc.bin.1 ├── doxygen_resources ├── Doxyfile.doxy ├── README.TXT └── pages │ └── mainpage.dox ├── gitrev.sh ├── keymapping.txt ├── language ├── Afrikaans │ ├── langinfo.xml │ └── strings.xml ├── Arabic │ ├── langinfo.xml │ └── strings.xml ├── Basque │ ├── langinfo.xml │ └── strings.xml ├── Bosnian │ ├── langinfo.xml │ └── strings.xml ├── Bulgarian │ ├── langinfo.xml │ └── strings.xml ├── Catalan │ ├── langinfo.xml │ └── strings.xml ├── Chinese (Simple) │ ├── langinfo.xml │ └── strings.xml ├── Chinese (Traditional) │ ├── langinfo.xml │ └── strings.xml ├── Croatian │ ├── langinfo.xml │ └── strings.xml ├── Czech │ ├── langinfo.xml │ └── strings.xml ├── Danish │ ├── langinfo.xml │ └── strings.xml ├── Dutch │ ├── langinfo.xml │ └── strings.xml ├── English (US) │ ├── langinfo.xml │ └── strings.xml ├── English │ ├── langinfo.xml │ └── strings.xml ├── Esperanto │ ├── langinfo.xml │ └── strings.xml ├── Finnish │ ├── langinfo.xml │ └── strings.xml ├── French │ ├── langinfo.xml │ └── strings.xml ├── German │ ├── keyboardmap.xml │ ├── langinfo.xml │ └── strings.xml ├── Greek │ ├── langinfo.xml │ └── strings.xml ├── Hebrew │ ├── langinfo.xml │ └── strings.xml ├── Hindi (Devanagiri) │ ├── langinfo.xml │ └── strings.xml ├── Hungarian │ ├── langinfo.xml │ └── strings.xml ├── Icelandic │ ├── langinfo.xml │ └── strings.xml ├── Indonesian │ ├── langinfo.xml │ └── strings.xml ├── Italian │ ├── langinfo.xml │ └── strings.xml ├── Japanese │ ├── langinfo.xml │ └── strings.xml ├── Korean │ ├── langinfo.xml │ └── strings.xml ├── Lithuanian │ ├── langinfo.xml │ └── strings.xml ├── Maltese │ ├── langinfo.xml │ └── strings.xml ├── Norwegian │ ├── langinfo.xml │ └── strings.xml ├── Polish │ ├── langinfo.xml │ └── strings.xml ├── Portuguese (Brazil) │ ├── langinfo.xml │ └── strings.xml ├── Portuguese │ ├── langinfo.xml │ └── strings.xml ├── Romanian │ ├── langinfo.xml │ └── strings.xml ├── Russian │ ├── langinfo.xml │ └── strings.xml ├── Serbian (Cyrillic) │ ├── langinfo.xml │ └── strings.xml ├── Serbian │ ├── langinfo.xml │ └── strings.xml ├── Slovak │ ├── langinfo.xml │ └── strings.xml ├── Slovenian │ ├── langinfo.xml │ └── strings.xml ├── Spanish (Mexico) │ ├── langinfo.xml │ └── strings.xml ├── Spanish │ ├── langinfo.xml │ └── strings.xml ├── Swedish │ ├── langinfo.xml │ └── strings.xml ├── Thai │ ├── langinfo.xml │ └── strings.xml ├── Turkish │ ├── langinfo.xml │ └── strings.xml └── Ukrainian │ ├── langinfo.xml │ └── strings.xml ├── lib ├── DllASAP.h ├── DllAdpcm.h ├── DllAvCodec.h ├── DllAvCore.h ├── DllAvFilter.h ├── DllAvFormat.h ├── DllAvUtil.h ├── DllLibFlac.h ├── DllLibbluray.h ├── DllModplug.h ├── DllNosefart.h ├── DllPostProc.h ├── DllSidplay2.h ├── DllStSound.h ├── DllSwScale.h ├── DllTimidity.h ├── DllVGMStream.h ├── DllVorbisfile.h ├── Makefile.in ├── SlingboxLib │ ├── Makefile │ ├── SlingboxLib.cpp │ └── SlingboxLib.h ├── UnrarXLib │ ├── Makefile │ ├── Readme.txt │ ├── UnrarX.hpp │ ├── UnrarXLib.sln │ ├── UnrarXLib.vcproj │ ├── arccmt.cpp │ ├── archive.cpp │ ├── archive.hpp │ ├── arcread.cpp │ ├── array.hpp │ ├── cmddata.cpp │ ├── cmddata.hpp │ ├── coder.cpp │ ├── coder.hpp │ ├── compress.hpp │ ├── consio.cpp │ ├── consio.hpp │ ├── crc.cpp │ ├── crc.hpp │ ├── credits.txt │ ├── crypt.cpp │ ├── crypt.hpp │ ├── dll.cpp │ ├── dll.hpp │ ├── encname.cpp │ ├── encname.hpp │ ├── errhnd.cpp │ ├── errhnd.hpp │ ├── extinfo.cpp │ ├── extinfo.hpp │ ├── extract.cpp │ ├── extract.hpp │ ├── filcreat.cpp │ ├── filcreat.hpp │ ├── file.cpp │ ├── file.hpp │ ├── filefn.cpp │ ├── filefn.hpp │ ├── filestr.cpp │ ├── filestr.hpp │ ├── find.cpp │ ├── find.hpp │ ├── getbits.cpp │ ├── getbits.hpp │ ├── global.cpp │ ├── global.hpp │ ├── headers.hpp │ ├── int64.cpp │ ├── int64.hpp │ ├── isnt.cpp │ ├── isnt.hpp │ ├── license.txt │ ├── list.hpp │ ├── loclang.hpp │ ├── log.cpp │ ├── log.hpp │ ├── match.cpp │ ├── match.hpp │ ├── model.cpp │ ├── model.hpp │ ├── options.cpp │ ├── options.hpp │ ├── os.hpp │ ├── pathfn.cpp │ ├── pathfn.hpp │ ├── rar.cpp │ ├── rar.hpp │ ├── rardefs.hpp │ ├── rarfn.hpp │ ├── rarlang.hpp │ ├── raros.hpp │ ├── rartypes.hpp │ ├── rarvm.cpp │ ├── rarvm.hpp │ ├── rarvmtbl.cpp │ ├── rawread.cpp │ ├── rawread.hpp │ ├── rdwrfn.cpp │ ├── rdwrfn.hpp │ ├── readme_bj.txt │ ├── recvol.cpp │ ├── recvol.hpp │ ├── resource.cpp │ ├── resource.hpp │ ├── rijndael.cpp │ ├── rijndael.hpp │ ├── rs.cpp │ ├── rs.hpp │ ├── savepos.cpp │ ├── savepos.hpp │ ├── scantree.cpp │ ├── scantree.hpp │ ├── sha1.cpp │ ├── sha1.hpp │ ├── smallfn.cpp │ ├── smallfn.hpp │ ├── stdafx.cpp │ ├── strfn.cpp │ ├── strfn.hpp │ ├── strlist.cpp │ ├── strlist.hpp │ ├── suballoc.cpp │ ├── suballoc.hpp │ ├── system.cpp │ ├── system.hpp │ ├── timefn.cpp │ ├── timefn.hpp │ ├── ulinks.cpp │ ├── ulinks.hpp │ ├── unicode.cpp │ ├── unicode.hpp │ ├── unpack.cpp │ ├── unpack.hpp │ ├── unpack15.cpp │ ├── unpack20.cpp │ ├── unrar.h │ ├── uowners.cpp │ ├── version.hpp │ ├── volume.cpp │ ├── volume.hpp │ ├── win32acl.cpp │ └── win32stm.cpp ├── addons │ ├── library.xbmc.addon │ │ ├── Makefile.in │ │ ├── libXBMC_addon.cpp │ │ └── project │ │ │ └── VS2010Express │ │ │ ├── libXBMC_addon.vcxproj │ │ │ └── libXBMC_addon.vcxproj.filters │ ├── library.xbmc.gui │ │ ├── Makefile.in │ │ ├── libXBMC_gui.cpp │ │ └── project │ │ │ └── VS2010Express │ │ │ ├── libXBMC_gui.vcxproj │ │ │ └── libXBMC_gui.vcxproj.filters │ ├── library.xbmc.pvr │ │ ├── Makefile.in │ │ ├── libXBMC_pvr.cpp │ │ └── project │ │ │ └── VS2010Express │ │ │ ├── libXBMC_pvr.vcxproj │ │ │ └── libXBMC_pvr.vcxproj.filters │ └── script.module.pil │ │ ├── Imaging-1.1.7-access.patch │ │ ├── Imaging-1.1.7-crosscompiling-0.1.patch │ │ ├── Imaging-1.1.7-setuptools-0.1.patch │ │ └── Makefile.in ├── afpfs-ng │ ├── 01-gcrypt.patch │ ├── 02-pointer.patch │ ├── 04-boxee1.patch │ ├── 05-boxee2.patch │ ├── 06-boxee3.patch │ ├── 07-boxee4.patch │ ├── 08-boxee5.patch │ ├── 10-fix-errno.patch │ ├── Makefile │ └── fix_afpfs-ng_includes.patch ├── asap │ ├── COPYING │ ├── CREDITS │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.in │ ├── NEWS │ ├── PORTS.xml │ ├── PORTS.xsl │ ├── README │ ├── acpu.c │ ├── anylang.h │ ├── apokeysnd.c │ ├── asap.c │ ├── asap.h │ ├── asap2wav.c │ ├── asap_internal.h │ ├── asapscan.c │ ├── chksap.pl │ ├── csharp │ │ ├── ASAP.ppcs │ │ ├── Makefile │ │ └── asap2wav.cs │ ├── files2anylang.pl │ ├── flash │ │ ├── ASAP.ppas │ │ ├── ASAPPlayer.as │ │ ├── ASAP_ModuleInfo.as │ │ ├── Makefile │ │ ├── PokeyState.as │ │ └── USAGE │ ├── gsplayer │ │ ├── Makefile │ │ ├── USAGE │ │ ├── gspasap.c │ │ └── mapplugin.h │ ├── java │ │ ├── ASAP.ppjava │ │ ├── ASAP2WAV.java │ │ ├── ASAPApplet.java │ │ ├── ASAPMIDlet.java │ │ ├── ASAP_ModuleInfo.java │ │ ├── Makefile │ │ ├── USAGE │ │ ├── asap2wav.MF │ │ ├── asap_midlet.MF │ │ └── mf2jad.pl │ ├── javascript │ │ ├── Makefile │ │ ├── USAGE │ │ ├── asap.ppjs │ │ ├── asap2wav.ppjs │ │ └── asapweb.ppjs │ ├── mads │ │ ├── Makefile │ │ └── mads.pas │ ├── maketar.pl │ ├── moc │ │ └── libasap_decoder.c │ ├── players │ │ ├── Makefile │ │ ├── cmc.asx │ │ ├── cms.asx │ │ ├── dlt.as8 │ │ ├── mpt.asx │ │ ├── rmt.asx │ │ ├── tm2.asx │ │ └── tmc.asx │ ├── win32 │ │ ├── Makefile │ │ ├── USAGE │ │ ├── apollo │ │ │ ├── ASAP_Apollo.cpp │ │ │ └── InputPlugin.h │ │ ├── build_xbmc_win32.sh │ │ ├── dshow │ │ │ ├── asap_dsf.cpp │ │ │ └── asap_dsf.def │ │ ├── foobar2000 │ │ │ └── foo_asap.cpp │ │ ├── gui.c │ │ ├── gui.h │ │ ├── gui.rc │ │ ├── setup │ │ │ ├── Website.url │ │ │ ├── asap-banner.jpg │ │ │ ├── asap-dialog.jpg │ │ │ ├── asap.wxs │ │ │ ├── license.rtf │ │ │ └── wix_mutex.pl │ │ ├── wasap │ │ │ ├── play.ico │ │ │ ├── stop.ico │ │ │ ├── wasap.c │ │ │ └── wasap.ico │ │ └── winamp │ │ │ ├── in2.h │ │ │ ├── in_asap.c │ │ │ ├── ipc_pe.h │ │ │ ├── out.h │ │ │ └── wa_ipc.h │ ├── xasm │ │ ├── Makefile │ │ ├── xasm.1.txt │ │ └── xasm.d │ ├── xbmc │ │ └── xbmc_asap.c │ └── xmms │ │ ├── libasap-xmms.c │ │ └── libasap-xmms.map ├── cmyth │ ├── COPYING │ ├── Makefile.in │ ├── Win32 │ │ ├── gensymbols.bat │ │ ├── include │ │ │ ├── inttypes.h │ │ │ └── mysql │ │ │ │ ├── my_alloc.h │ │ │ │ ├── my_list.h │ │ │ │ ├── mysql.h │ │ │ │ ├── mysql_com.h │ │ │ │ ├── mysql_time.h │ │ │ │ ├── mysql_version.h │ │ │ │ └── typelib.h │ │ ├── lib │ │ │ └── mysqlclient.lib │ │ ├── libcmyth.def │ │ ├── libcmyth.sln │ │ ├── libcmyth.vcproj │ │ ├── libcmyth.vcxproj │ │ └── libcmyth.vcxproj.filters │ ├── include │ │ ├── cmyth │ │ │ └── cmyth.h │ │ ├── debug.h │ │ └── refmem │ │ │ ├── atomic.h │ │ │ └── refmem.h │ ├── libcmyth │ │ ├── Makefile │ │ ├── bookmark.c │ │ ├── cmyth_local.h │ │ ├── commbreak.c │ │ ├── connection.c │ │ ├── debug.c │ │ ├── event.c │ │ ├── file.c │ │ ├── freespace.c │ │ ├── keyframe.c │ │ ├── livetv.c │ │ ├── mysql_query.c │ │ ├── mythtv_mysql.c │ │ ├── posmap.c │ │ ├── proginfo.c │ │ ├── proglist.c │ │ ├── rec_num.c │ │ ├── recorder.c │ │ ├── ringbuf.c │ │ ├── safe_string.h │ │ ├── socket.c │ │ ├── timestamp.c │ │ └── utf8tolatin1.c │ └── librefmem │ │ ├── Makefile │ │ ├── alloc.c │ │ ├── debug_refmem.c │ │ └── refmem_local.h ├── cpluff │ ├── COPYRIGHT.txt │ ├── ChangeLog.txt │ ├── INSTALL.txt │ ├── Issues.txt │ ├── Makefile.am │ ├── Roadmap.txt │ ├── autogen.sh │ ├── auxliary │ │ └── config.rpath │ ├── configure.ac │ ├── console │ │ ├── Makefile.am │ │ ├── cmdinput_basic.c │ │ ├── cmdinput_readline.c │ │ ├── console.c │ │ └── console.h │ ├── doc │ │ ├── Makefile.am │ │ ├── common_style.css │ │ ├── copyright.en.html │ │ ├── cpluff_style.css │ │ ├── img │ │ │ ├── Makefile.am │ │ │ ├── architecture.png │ │ │ ├── architecture.svg │ │ │ └── pageborder.png │ │ ├── index.en.html │ │ └── reference │ │ │ └── c-api │ │ │ ├── annotated.html │ │ │ ├── architecture.html │ │ │ ├── architecture.png │ │ │ ├── cMainProgram.html │ │ │ ├── cpluff_8h-source.html │ │ │ ├── cpluff_8h.html │ │ │ ├── cpluff_8h__incl.map │ │ │ ├── cpluff_8h__incl.md5 │ │ │ ├── cpluff_8h__incl.png │ │ │ ├── cpluffdef_8h-source.html │ │ │ ├── cpluffdef_8h.html │ │ │ ├── cpluffdef_8h__dep__incl.map │ │ │ ├── cpluffdef_8h__dep__incl.md5 │ │ │ ├── cpluffdef_8h__dep__incl.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── files.html │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── globals.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── graph_legend.dot │ │ │ ├── graph_legend.html │ │ │ ├── graph_legend.png │ │ │ ├── group__cDefines.html │ │ │ ├── group__cDefinesGCCAttributes.html │ │ │ ├── group__cEnums.html │ │ │ ├── group__cFuncs.html │ │ │ ├── group__cFuncsContext.html │ │ │ ├── group__cFuncsFrameworkInfo.html │ │ │ ├── group__cFuncsInit.html │ │ │ ├── group__cFuncsLogging.html │ │ │ ├── group__cFuncsPlugin.html │ │ │ ├── group__cFuncsPluginExec.html │ │ │ ├── group__cFuncsPluginInfo.html │ │ │ ├── group__cFuncsSymbols.html │ │ │ ├── group__cScanFlags.html │ │ │ ├── group__cStructs.html │ │ │ ├── group__cTypedefs.html │ │ │ ├── group__cTypedefsFuncs.html │ │ │ ├── group__cTypedefsOpaque.html │ │ │ ├── group__cTypedefsShorthand.html │ │ │ ├── group__symbolVisibility.html │ │ │ ├── group__versionInfo.html │ │ │ ├── index.html │ │ │ ├── inline_dotgraph_1.png │ │ │ ├── modules.html │ │ │ ├── pages.html │ │ │ ├── plugin.html │ │ │ ├── structcp__cfg__element__t.html │ │ │ ├── structcp__cfg__element__t__coll__graph.map │ │ │ ├── structcp__cfg__element__t__coll__graph.md5 │ │ │ ├── structcp__cfg__element__t__coll__graph.png │ │ │ ├── structcp__ext__point__t.html │ │ │ ├── structcp__ext__point__t__coll__graph.map │ │ │ ├── structcp__ext__point__t__coll__graph.md5 │ │ │ ├── structcp__ext__point__t__coll__graph.png │ │ │ ├── structcp__extension__t.html │ │ │ ├── structcp__extension__t__coll__graph.map │ │ │ ├── structcp__extension__t__coll__graph.md5 │ │ │ ├── structcp__extension__t__coll__graph.png │ │ │ ├── structcp__plugin__import__t.html │ │ │ ├── structcp__plugin__info__t.html │ │ │ ├── structcp__plugin__info__t__coll__graph.map │ │ │ ├── structcp__plugin__info__t__coll__graph.md5 │ │ │ ├── structcp__plugin__info__t__coll__graph.png │ │ │ ├── structcp__plugin__runtime__t.html │ │ │ ├── tab_b.gif │ │ │ ├── tab_l.gif │ │ │ ├── tab_r.gif │ │ │ └── tabs.css │ ├── docsrc │ │ ├── Makefile.am │ │ ├── doxygen.css │ │ └── doxygen.footer │ ├── examples │ │ ├── COPYRIGHT.txt │ │ ├── INSTALL.txt │ │ ├── Makefile.am │ │ ├── Makefile.nmake │ │ ├── autogen.sh │ │ ├── common.nmake │ │ ├── configure.ac │ │ ├── cpfile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.nmake │ │ │ ├── README.txt │ │ │ ├── cpfile.bat │ │ │ ├── cpfile.in │ │ │ └── plugins │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.nmake │ │ │ │ ├── cext │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.nmake │ │ │ │ └── plugin.xml │ │ │ │ ├── core │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.nmake │ │ │ │ ├── classifiers.xsd │ │ │ │ ├── core.c │ │ │ │ ├── core.h │ │ │ │ └── plugin.xml │ │ │ │ ├── extension │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.nmake │ │ │ │ ├── extension.c │ │ │ │ ├── file_types.xsd │ │ │ │ └── plugin.xml │ │ │ │ └── special │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.nmake │ │ │ │ ├── plugin.xml │ │ │ │ └── special.c │ │ └── nmakedir.bat │ ├── kazlib │ │ ├── hash.c │ │ ├── hash.h │ │ ├── list.c │ │ └── list.h │ ├── libcpluff │ │ ├── Makefile.am │ │ ├── context.c │ │ ├── cpluff.c │ │ ├── cpluff.h │ │ ├── cpluffdef.h.in │ │ ├── defines.h │ │ ├── docsrc │ │ │ ├── Doxyfile-impl.in │ │ │ ├── Doxyfile-ref.in │ │ │ ├── Makefile.am │ │ │ ├── architecture.dox │ │ │ ├── mainpage.dox │ │ │ ├── mainprog.dox │ │ │ └── plugin.dox │ │ ├── internal.h │ │ ├── logging.c │ │ ├── pcontrol.c │ │ ├── pinfo.c │ │ ├── ploader.c │ │ ├── pscan.c │ │ ├── psymbol.c │ │ ├── serial.c │ │ ├── thread.h │ │ ├── thread_posix.c │ │ ├── thread_windows.c │ │ ├── util.c │ │ ├── util.h │ │ └── win32 │ │ │ ├── cpluff.vcproj │ │ │ ├── cpluff.vcxproj │ │ │ ├── cpluffdef.h │ │ │ ├── dirent.c │ │ │ └── dirent.h │ ├── loader │ │ ├── Makefile.am │ │ └── loader.c │ ├── m4 │ │ ├── gettext.m4 │ │ ├── iconv.m4 │ │ ├── lib-ld.m4 │ │ ├── lib-link.m4 │ │ ├── lib-prefix.m4 │ │ ├── nls.m4 │ │ ├── po.m4 │ │ └── progtest.m4 │ ├── plugin.xsd │ ├── po │ │ ├── LINGUAS │ │ ├── Makefile.in.in │ │ ├── Makevars │ │ ├── POTFILES.in │ │ ├── Rules-quot │ │ ├── boldquot.sed │ │ ├── cpluff.pot │ │ ├── fi.gmo │ │ ├── fi.po │ │ ├── insert-header.sin │ │ ├── quot.sed │ │ ├── remove-potcdate.sin │ │ └── stamp-po │ └── test │ │ ├── Makefile.am │ │ ├── collections.c │ │ ├── cpinfo.c │ │ ├── expected │ │ ├── output-extensions.txt │ │ ├── output-extpoints.txt │ │ ├── output-loadmaximal.txt │ │ └── output-loadminimal.txt │ │ ├── extcfg.c │ │ ├── fatalerror.c │ │ ├── initdestroy.c │ │ ├── loggers.c │ │ ├── pcallbacks.c │ │ ├── pcollections │ │ ├── collection1 │ │ │ └── plugin1 │ │ │ │ └── plugin.xml │ │ ├── collection1v2 │ │ │ └── plugin1 │ │ │ │ └── plugin.xml │ │ ├── collection1v3 │ │ │ └── plugin1 │ │ │ │ └── plugin.xml │ │ ├── collection2 │ │ │ ├── plugin2a │ │ │ │ └── plugin.xml │ │ │ └── plugin2b │ │ │ │ └── plugin.xml │ │ └── dependencies │ │ │ ├── chain1 │ │ │ └── plugin.xml │ │ │ ├── chain2 │ │ │ └── plugin.xml │ │ │ ├── chain3 │ │ │ └── plugin.xml │ │ │ ├── chainmissingdep │ │ │ └── plugin.xml │ │ │ ├── loop1 │ │ │ └── plugin.xml │ │ │ ├── loop2 │ │ │ └── plugin.xml │ │ │ ├── loop3 │ │ │ └── plugin.xml │ │ │ ├── loop4 │ │ │ └── plugin.xml │ │ │ ├── loop5 │ │ │ └── plugin.xml │ │ │ ├── missingdep │ │ │ └── plugin.xml │ │ │ ├── sloop1 │ │ │ └── plugin.xml │ │ │ └── sloop2 │ │ │ └── plugin.xml │ │ ├── pdependencies.c │ │ ├── pinstallation.c │ │ ├── ploading.c │ │ ├── plugins-source │ │ ├── Makefile.am │ │ ├── callbackcounter │ │ │ ├── Makefile.am │ │ │ ├── callbackcounter.c │ │ │ ├── callbackcounter.h │ │ │ └── plugin.xml │ │ ├── symprovider │ │ │ ├── Makefile.am │ │ │ ├── plugin.xml │ │ │ └── symprovider.c │ │ └── symuser │ │ │ ├── Makefile.am │ │ │ ├── plugin.xml │ │ │ └── symuser.c │ │ ├── plugins │ │ ├── maximal │ │ │ └── plugin.xml │ │ └── minimal │ │ │ └── plugin.xml │ │ ├── pscanning.c │ │ ├── psymbolusage.c │ │ ├── test-extensions │ │ ├── test-extpoints │ │ ├── test-fatalerrordefault │ │ ├── test-fatalerrorreset │ │ ├── test-loadmaximal │ │ ├── test-loadminimal │ │ ├── test.h │ │ ├── testmain.c │ │ └── tests.txt ├── cximage-6.0 │ ├── CxImage │ │ ├── CxImageDLL │ │ │ ├── CxImageCrtDll.cpp │ │ │ ├── CxImageCrtDll.dsp │ │ │ ├── CxImageCrtDll.rc │ │ │ ├── CxImageDll.dsw │ │ │ ├── CxImageMfcDll.clw │ │ │ ├── CxImageMfcDll.cpp │ │ │ ├── CxImageMfcDll.h │ │ │ ├── CxImageMfcDll.rc │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── StdCrt.h │ │ │ ├── cximagemfcdll.dsp │ │ │ ├── resource.h │ │ │ └── resrc1.h │ │ ├── DllInterface.cpp │ │ ├── Makefile │ │ ├── cximage.dsp │ │ ├── cximage.dsw │ │ ├── license.txt │ │ ├── tif_xfile.cpp │ │ ├── xfile.h │ │ ├── ximabmp.cpp │ │ ├── ximabmp.h │ │ ├── ximacfg.h │ │ ├── ximadef.h │ │ ├── ximadsp.cpp │ │ ├── ximaenc.cpp │ │ ├── ximaexif.cpp │ │ ├── ximage.cpp │ │ ├── ximage.h │ │ ├── ximagif.cpp │ │ ├── ximagif.h │ │ ├── ximahist.cpp │ │ ├── ximaico.cpp │ │ ├── ximaico.h │ │ ├── ximainfo.cpp │ │ ├── ximaint.cpp │ │ ├── ximaiter.h │ │ ├── ximajas.cpp │ │ ├── ximajas.h │ │ ├── ximajbg.cpp │ │ ├── ximajbg.h │ │ ├── ximajpg.cpp │ │ ├── ximajpg.h │ │ ├── ximalpha.cpp │ │ ├── ximalyr.cpp │ │ ├── ximamng.cpp │ │ ├── ximamng.h │ │ ├── ximapal.cpp │ │ ├── ximapcx.cpp │ │ ├── ximapcx.h │ │ ├── ximapng.cpp │ │ ├── ximapng.h │ │ ├── ximaraw.cpp │ │ ├── ximaraw.h │ │ ├── ximasel.cpp │ │ ├── ximaska.cpp │ │ ├── ximaska.h │ │ ├── ximatga.cpp │ │ ├── ximatga.h │ │ ├── ximath.cpp │ │ ├── ximath.h │ │ ├── ximatif.cpp │ │ ├── ximatif.h │ │ ├── ximatran.cpp │ │ ├── ximawbmp.cpp │ │ ├── ximawbmp.h │ │ ├── ximawmf.cpp │ │ ├── ximawmf.h │ │ ├── ximawnd.cpp │ │ ├── xiofile.h │ │ ├── xmemfile.cpp │ │ └── xmemfile.h │ ├── CxImgLib.dsw │ ├── ImageLib.sln │ ├── ImageLib.vcproj │ ├── ImageLib.vcxproj │ ├── ImageLib.vcxproj.filters │ ├── Makefile.in │ ├── index.htm │ ├── jasper │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── base │ │ │ ├── jas_cm.c │ │ │ ├── jas_debug.c │ │ │ ├── jas_getopt.c │ │ │ ├── jas_icc.c │ │ │ ├── jas_iccdata.c │ │ │ ├── jas_image.c │ │ │ ├── jas_init.c │ │ │ ├── jas_malloc.c │ │ │ ├── jas_seq.c │ │ │ ├── jas_stream.c │ │ │ ├── jas_string.c │ │ │ ├── jas_tmr.c │ │ │ ├── jas_tvp.c │ │ │ └── jas_version.c │ │ ├── bmp │ │ │ ├── bmp_cod.c │ │ │ ├── bmp_cod.h │ │ │ ├── bmp_dec.c │ │ │ ├── bmp_enc.c │ │ │ └── bmp_enc.h │ │ ├── include │ │ │ └── jasper │ │ │ │ ├── jas_cm.h │ │ │ │ ├── jas_config.h │ │ │ │ ├── jas_config.h.in │ │ │ │ ├── jas_config2.h │ │ │ │ ├── jas_debug.h │ │ │ │ ├── jas_fix.h │ │ │ │ ├── jas_getopt.h │ │ │ │ ├── jas_icc.h │ │ │ │ ├── jas_image.h │ │ │ │ ├── jas_init.h │ │ │ │ ├── jas_malloc.h │ │ │ │ ├── jas_math.h │ │ │ │ ├── jas_seq.h │ │ │ │ ├── jas_stream.h │ │ │ │ ├── jas_string.h │ │ │ │ ├── jas_tmr.h │ │ │ │ ├── jas_tvp.h │ │ │ │ ├── jas_types.h │ │ │ │ ├── jas_version.h │ │ │ │ └── jasper.h │ │ ├── jasper.dsp │ │ ├── jasper.dsw │ │ ├── jasper.vcproj │ │ ├── jasper.vcxproj │ │ ├── jasper.vcxproj.filters │ │ ├── jp2 │ │ │ ├── jp2_cod.c │ │ │ ├── jp2_cod.h │ │ │ ├── jp2_dec.c │ │ │ ├── jp2_dec.h │ │ │ └── jp2_enc.c │ │ ├── jpc │ │ │ ├── jpc_bs.c │ │ │ ├── jpc_bs.h │ │ │ ├── jpc_cod.h │ │ │ ├── jpc_cs.c │ │ │ ├── jpc_cs.h │ │ │ ├── jpc_dec.c │ │ │ ├── jpc_dec.h │ │ │ ├── jpc_enc.c │ │ │ ├── jpc_enc.h │ │ │ ├── jpc_fix.h │ │ │ ├── jpc_flt.h │ │ │ ├── jpc_math.c │ │ │ ├── jpc_math.h │ │ │ ├── jpc_mct.c │ │ │ ├── jpc_mct.h │ │ │ ├── jpc_mqcod.c │ │ │ ├── jpc_mqcod.h │ │ │ ├── jpc_mqdec.c │ │ │ ├── jpc_mqdec.h │ │ │ ├── jpc_mqenc.c │ │ │ ├── jpc_mqenc.h │ │ │ ├── jpc_qmfb.c │ │ │ ├── jpc_qmfb.h │ │ │ ├── jpc_t1cod.c │ │ │ ├── jpc_t1cod.h │ │ │ ├── jpc_t1dec.c │ │ │ ├── jpc_t1dec.h │ │ │ ├── jpc_t1enc.c │ │ │ ├── jpc_t1enc.h │ │ │ ├── jpc_t2cod.c │ │ │ ├── jpc_t2cod.h │ │ │ ├── jpc_t2dec.c │ │ │ ├── jpc_t2dec.h │ │ │ ├── jpc_t2enc.c │ │ │ ├── jpc_t2enc.h │ │ │ ├── jpc_tagtree.c │ │ │ ├── jpc_tagtree.h │ │ │ ├── jpc_tsfb.c │ │ │ ├── jpc_tsfb.h │ │ │ ├── jpc_util.c │ │ │ └── jpc_util.h │ │ ├── jpg │ │ │ ├── README │ │ │ ├── jpg_cod.h │ │ │ ├── jpg_dec.c │ │ │ ├── jpg_dummy.c │ │ │ ├── jpg_enc.c │ │ │ ├── jpg_enc.h │ │ │ ├── jpg_jpeglib.h │ │ │ └── jpg_val.c │ │ ├── mif │ │ │ ├── README │ │ │ ├── mif_cod.c │ │ │ └── mif_cod.h │ │ ├── pgx │ │ │ ├── pgx_cod.c │ │ │ ├── pgx_cod.h │ │ │ ├── pgx_dec.c │ │ │ ├── pgx_enc.c │ │ │ └── pgx_enc.h │ │ ├── pnm │ │ │ ├── pnm_cod.c │ │ │ ├── pnm_cod.h │ │ │ ├── pnm_dec.c │ │ │ ├── pnm_enc.c │ │ │ └── pnm_enc.h │ │ └── ras │ │ │ ├── ras_cod.c │ │ │ ├── ras_cod.h │ │ │ ├── ras_dec.c │ │ │ ├── ras_enc.c │ │ │ └── ras_enc.h │ ├── jbig │ │ ├── Makefile │ │ ├── copying.txt │ │ ├── jbig.c │ │ ├── jbig.doc │ │ ├── jbig.dsp │ │ ├── jbig.dsw │ │ ├── jbig.h │ │ ├── jbig.vcproj │ │ ├── jbig.vcxproj │ │ ├── jbig.vcxproj.filters │ │ ├── jbig_tab.c │ │ ├── patents.htm │ │ └── tstcodec.c │ ├── jpeg │ │ ├── Jpeg.dsp │ │ ├── Jpeg.dsw │ │ ├── Jpeg.vcxproj │ │ ├── Makefile │ │ ├── Readme.txt │ │ ├── change.log │ │ ├── filelist.txt │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jchuff.h │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.h │ │ ├── jcparam.c │ │ ├── jcphuff.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jctrans.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdatadst.c │ │ ├── jdatasrc.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jdct.h │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdhuff.h │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdphuff.c │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jdtrans.c │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jidctred.c │ │ ├── jinclude.h │ │ ├── jmemmgr.c │ │ ├── jmemnobs.c │ │ ├── jmemsys.h │ │ ├── jmorecfg.h │ │ ├── jpeg.vcproj │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ ├── jutils.c │ │ └── jversion.h │ ├── mng │ │ ├── CHANGES.txt │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── libmng.h │ │ ├── libmng_callback_xs.c │ │ ├── libmng_chunk_descr.c │ │ ├── libmng_chunk_descr.h │ │ ├── libmng_chunk_io.c │ │ ├── libmng_chunk_io.h │ │ ├── libmng_chunk_prc.c │ │ ├── libmng_chunk_prc.h │ │ ├── libmng_chunk_xs.c │ │ ├── libmng_chunks.h │ │ ├── libmng_cms.c │ │ ├── libmng_cms.h │ │ ├── libmng_conf.h │ │ ├── libmng_data.h │ │ ├── libmng_display.c │ │ ├── libmng_display.h │ │ ├── libmng_dither.c │ │ ├── libmng_dither.h │ │ ├── libmng_error.c │ │ ├── libmng_error.h │ │ ├── libmng_filter.c │ │ ├── libmng_filter.h │ │ ├── libmng_hlapi.c │ │ ├── libmng_jpeg.c │ │ ├── libmng_jpeg.h │ │ ├── libmng_memory.h │ │ ├── libmng_object_prc.c │ │ ├── libmng_object_prc.h │ │ ├── libmng_objects.h │ │ ├── libmng_pixels.c │ │ ├── libmng_pixels.h │ │ ├── libmng_prop_xs.c │ │ ├── libmng_read.c │ │ ├── libmng_read.h │ │ ├── libmng_trace.c │ │ ├── libmng_trace.h │ │ ├── libmng_types.h │ │ ├── libmng_write.c │ │ ├── libmng_write.h │ │ ├── libmng_zlib.c │ │ ├── libmng_zlib.h │ │ ├── mng.dsp │ │ ├── mng.dsw │ │ ├── mng.vcproj │ │ ├── mng.vcxproj │ │ └── mng.vcxproj.filters │ ├── png │ │ ├── ANNOUNCE │ │ ├── CHANGES │ │ ├── INSTALL │ │ ├── KNOWNBUG │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── TODO │ │ ├── Y2KINFO │ │ ├── libpng-1.2.24.txt │ │ ├── png.c │ │ ├── png.dsp │ │ ├── png.dsw │ │ ├── png.h │ │ ├── png.vcproj │ │ ├── png.vcxproj │ │ ├── png.vcxproj.filters │ │ ├── pngconf.h │ │ ├── pngerror.c │ │ ├── pnggccrd.c │ │ ├── pngget.c │ │ ├── pngmem.c │ │ ├── pngpread.c │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngtrans.c │ │ ├── pngvcrd.c │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ └── pngwutil.c │ ├── raw │ │ ├── Makefile │ │ ├── dcr.c │ │ ├── dcr.dsp │ │ ├── dcr.dsw │ │ ├── dcraw.c │ │ ├── libdcr.c │ │ ├── libdcr.dsp │ │ ├── libdcr.h │ │ ├── libdcr.vcproj │ │ ├── libdcr.vcxproj │ │ └── libdcr.vcxproj.filters │ ├── tiff │ │ ├── Makefile │ │ ├── Tiff.dsp │ │ ├── Tiff.dsw │ │ ├── Tiff.vcproj │ │ ├── Tiff.vcxproj │ │ ├── Tiff.vcxproj.filters │ │ ├── fax3sm_winnt.c │ │ ├── libtiff.def │ │ ├── t4.h │ │ ├── tif_aux.c │ │ ├── tif_close.c │ │ ├── tif_codec.c │ │ ├── tif_compress.c │ │ ├── tif_dir.c │ │ ├── tif_dir.h │ │ ├── tif_dirinfo.c │ │ ├── tif_dirread.c │ │ ├── tif_dirwrite.c │ │ ├── tif_dumpmode.c │ │ ├── tif_error.c │ │ ├── tif_fax3.c │ │ ├── tif_fax3.h │ │ ├── tif_flush.c │ │ ├── tif_getimage.c │ │ ├── tif_jpeg.c │ │ ├── tif_luv.c │ │ ├── tif_lzw.c │ │ ├── tif_next.c │ │ ├── tif_ojpeg.c │ │ ├── tif_open.c │ │ ├── tif_packbits.c │ │ ├── tif_pixarlog.c │ │ ├── tif_predict.c │ │ ├── tif_predict.h │ │ ├── tif_print.c │ │ ├── tif_read.c │ │ ├── tif_strip.c │ │ ├── tif_swab.c │ │ ├── tif_thunder.c │ │ ├── tif_tile.c │ │ ├── tif_version.c │ │ ├── tif_warning.c │ │ ├── tif_write.c │ │ ├── tif_zip.c │ │ ├── tiff.h │ │ ├── tiffcomp.h │ │ ├── tiffconf.h │ │ ├── tiffio.h │ │ ├── tiffiop.h │ │ └── uvcode.h │ └── zlib │ │ ├── ChangeLog │ │ ├── FAQ │ │ ├── INDEX │ │ ├── Makefile.in │ │ ├── README │ │ ├── adler32.c │ │ ├── algorithm.txt │ │ ├── amiga │ │ ├── Makefile.pup │ │ └── Makefile.sas │ │ ├── as400 │ │ ├── bndsrc │ │ ├── compile.clp │ │ ├── readme.txt │ │ └── zlib.inc │ │ ├── compress.c │ │ ├── configure │ │ ├── contrib │ │ ├── README.contrib │ │ ├── ada │ │ │ ├── buffer_demo.adb │ │ │ ├── mtest.adb │ │ │ ├── read.adb │ │ │ ├── readme.txt │ │ │ ├── test.adb │ │ │ ├── zlib-streams.adb │ │ │ ├── zlib-streams.ads │ │ │ ├── zlib-thin.adb │ │ │ ├── zlib-thin.ads │ │ │ ├── zlib.adb │ │ │ ├── zlib.ads │ │ │ └── zlib.gpr │ │ ├── asm586 │ │ │ ├── README.586 │ │ │ └── match.S │ │ ├── asm686 │ │ │ ├── README.686 │ │ │ └── match.S │ │ ├── blast │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── blast.c │ │ │ ├── blast.h │ │ │ ├── test.pk │ │ │ └── test.txt │ │ ├── delphi │ │ │ ├── ZLib.pas │ │ │ ├── ZLibConst.pas │ │ │ ├── readme.txt │ │ │ └── zlibd32.mak │ │ ├── dotzlib │ │ │ ├── DotZLib.build │ │ │ ├── DotZLib.chm │ │ │ ├── DotZLib.sln │ │ │ ├── DotZLib │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ ├── CircularBuffer.cs │ │ │ │ ├── CodecBase.cs │ │ │ │ ├── Deflater.cs │ │ │ │ ├── DotZLib.cs │ │ │ │ ├── DotZLib.csproj │ │ │ │ ├── GZipStream.cs │ │ │ │ ├── Inflater.cs │ │ │ │ └── UnitTests.cs │ │ │ ├── LICENSE_1_0.txt │ │ │ └── readme.txt │ │ ├── infback9 │ │ │ ├── README │ │ │ ├── infback9.c │ │ │ ├── infback9.h │ │ │ ├── inffix9.h │ │ │ ├── inflate9.h │ │ │ ├── inftree9.c │ │ │ └── inftree9.h │ │ ├── inflate86 │ │ │ ├── inffas86.c │ │ │ └── inffast.S │ │ ├── iostream │ │ │ ├── test.cpp │ │ │ ├── zfstream.cpp │ │ │ └── zfstream.h │ │ ├── iostream2 │ │ │ ├── zstream.h │ │ │ └── zstream_test.cpp │ │ ├── iostream3 │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── test.cc │ │ │ ├── zfstream.cc │ │ │ └── zfstream.h │ │ ├── masm686 │ │ │ └── match.asm │ │ ├── masmx64 │ │ │ ├── bld_ml64.bat │ │ │ ├── gvmat64.asm │ │ │ ├── gvmat64.obj │ │ │ ├── inffas8664.c │ │ │ ├── inffasx64.asm │ │ │ ├── inffasx64.obj │ │ │ └── readme.txt │ │ ├── masmx86 │ │ │ ├── bld_ml32.bat │ │ │ ├── gvmat32.asm │ │ │ ├── gvmat32.obj │ │ │ ├── gvmat32c.c │ │ │ ├── inffas32.asm │ │ │ ├── inffas32.obj │ │ │ ├── mkasm.bat │ │ │ └── readme.txt │ │ ├── minizip │ │ │ ├── ChangeLogUnzip │ │ │ ├── Makefile │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── iowin32.c │ │ │ ├── iowin32.h │ │ │ ├── miniunz.c │ │ │ ├── minizip.c │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ │ ├── pascal │ │ │ ├── example.pas │ │ │ ├── readme.txt │ │ │ ├── zlibd32.mak │ │ │ └── zlibpas.pas │ │ ├── puff │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── puff.c │ │ │ ├── puff.h │ │ │ └── zeros.raw │ │ ├── testzlib │ │ │ ├── testzlib.c │ │ │ └── testzlib.txt │ │ ├── untgz │ │ │ ├── Makefile │ │ │ ├── Makefile.msc │ │ │ └── untgz.c │ │ └── vstudio │ │ │ ├── readme.txt │ │ │ ├── vc7 │ │ │ ├── miniunz.vcproj │ │ │ ├── minizip.vcproj │ │ │ ├── testzlib.vcproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcproj │ │ │ └── vc8 │ │ │ ├── miniunz.vcproj │ │ │ ├── minizip.vcproj │ │ │ ├── testzlib.vcproj │ │ │ ├── testzlibdll.vcproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcproj │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── example.c │ │ ├── examples │ │ ├── README.examples │ │ ├── fitblk.c │ │ ├── gun.c │ │ ├── gzappend.c │ │ ├── gzjoin.c │ │ ├── gzlog.c │ │ ├── gzlog.h │ │ ├── zlib_how.html │ │ ├── zpipe.c │ │ └── zran.c │ │ ├── gzio.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── make_vms.com │ │ ├── minigzip.c │ │ ├── msdos │ │ ├── Makefile.bor │ │ ├── Makefile.dj2 │ │ ├── Makefile.emx │ │ ├── Makefile.msc │ │ └── Makefile.tc │ │ ├── old │ │ ├── Makefile.riscos │ │ ├── README │ │ ├── descrip.mms │ │ ├── os2 │ │ │ ├── Makefile.os2 │ │ │ └── zlib.def │ │ ├── visual-basic.txt │ │ └── zlib.html │ │ ├── projects │ │ ├── README.projects │ │ └── visualc6 │ │ │ ├── README.txt │ │ │ ├── example.dsp │ │ │ ├── minigzip.dsp │ │ │ ├── zlib.dsp │ │ │ └── zlib.dsw │ │ ├── qnx │ │ └── package.qpg │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── win32 │ │ ├── DLL_FAQ.txt │ │ ├── Makefile.bor │ │ ├── Makefile.emx │ │ ├── Makefile.gcc │ │ ├── Makefile.msc │ │ ├── VisualC.txt │ │ ├── zconf.h │ │ ├── zlib.def │ │ └── zlib1.rc │ │ ├── zconf.in.h │ │ ├── zlib.3 │ │ ├── zlib.dsp │ │ ├── zlib.dsw │ │ ├── zlib.h │ │ ├── zlib.vcproj │ │ ├── zlib.vcxproj │ │ ├── zlib.vcxproj.filters │ │ ├── zutil.c │ │ └── zutil.h ├── enca │ ├── .gitignore │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── ChangeLog.old │ ├── ChangeLog.prelib │ ├── FAQ │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── README.devel │ ├── THANKS │ ├── TODO │ ├── aclocal.m4 │ ├── autogen.sh │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.rpath │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── data │ │ ├── .gitignore │ │ ├── Letters │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── basetoc.c │ │ ├── belarussian │ │ │ ├── belarussian.h │ │ │ ├── cp1251.base │ │ │ ├── doit.sh │ │ │ ├── paircounts.cp1251 │ │ │ ├── paircounts.ibm866 │ │ │ └── rawcounts.cp1251 │ │ ├── bulgarian │ │ │ ├── bulgarian.h │ │ │ ├── cp1251.base │ │ │ ├── doit.sh │ │ │ ├── paircounts.cp1251 │ │ │ └── rawcounts.cp1251 │ │ ├── chinese │ │ │ ├── chinese.h │ │ │ ├── zh_weight_big5.h │ │ │ ├── zh_weight_big5.txt │ │ │ ├── zh_weight_gb.txt │ │ │ └── zh_weight_gbk.h │ │ ├── clean.sh │ │ ├── countall.c │ │ ├── countpair.c │ │ ├── croatian │ │ │ ├── cp1250.base │ │ │ ├── croatian.h │ │ │ ├── doit.sh │ │ │ └── rawcounts.cp1250 │ │ ├── czech │ │ │ ├── czech.h │ │ │ ├── doit.sh │ │ │ ├── iso88592.base │ │ │ └── rawcounts.iso88592 │ │ ├── doit.sh │ │ ├── estonian │ │ │ ├── doit.sh │ │ │ ├── estonian.h │ │ │ ├── iso88594.base │ │ │ └── rawcounts.iso88594 │ │ ├── extreme.pl │ │ ├── findletters.c │ │ ├── hungarian │ │ │ ├── doit.sh │ │ │ ├── hungarian.h │ │ │ ├── iso88592.base │ │ │ └── rawcounts.iso88592 │ │ ├── latvian │ │ │ ├── cp1257.base │ │ │ ├── doit.sh │ │ │ ├── latvian.h │ │ │ └── rawcounts.cp1257 │ │ ├── lithuanian │ │ │ ├── cp1257.base │ │ │ ├── doit.sh │ │ │ ├── lithuanian.h │ │ │ └── rawcounts.cp1257 │ │ ├── makepaircounts.sh │ │ ├── map2letters.sh │ │ ├── maps │ │ │ ├── baltic.map │ │ │ ├── cork.map │ │ │ ├── cp1125.map │ │ │ ├── cp1250.map │ │ │ ├── cp1251.map │ │ │ ├── cp1257.map │ │ │ ├── ecma113.map │ │ │ ├── ibm775.map │ │ │ ├── ibm852.map │ │ │ ├── ibm855.map │ │ │ ├── ibm866-bad.map │ │ │ ├── ibm866.map │ │ │ ├── iso885913.map │ │ │ ├── iso885916.map │ │ │ ├── iso88592.map │ │ │ ├── iso88594.map │ │ │ ├── iso88595.map │ │ │ ├── keybcs2.map │ │ │ ├── koi8cs2.map │ │ │ ├── koi8r.map │ │ │ ├── koi8u.map │ │ │ ├── koi8ub.map │ │ │ ├── koi8uni.map │ │ │ ├── macce.map │ │ │ └── maccyr.map │ │ ├── mystrings.c │ │ ├── normalize.pl │ │ ├── pairtoc.c │ │ ├── polish │ │ │ ├── doit.sh │ │ │ ├── iso88592.base │ │ │ ├── polish.h │ │ │ └── rawcounts.iso88592 │ │ ├── russian │ │ │ ├── doit.sh │ │ │ ├── koi8r.base │ │ │ ├── paircounts.koi8r │ │ │ ├── rawcounts.koi8r │ │ │ └── russian.h │ │ ├── slovak │ │ │ ├── cp1250.base │ │ │ ├── doit.sh │ │ │ ├── rawcounts.cp1250 │ │ │ └── slovak.h │ │ ├── slovene │ │ │ ├── doit.sh │ │ │ ├── iso88592.base │ │ │ ├── rawcounts.iso88592 │ │ │ └── slovene.h │ │ ├── totals.pl │ │ ├── ukrainian │ │ │ ├── cp1251.base │ │ │ ├── doit.sh │ │ │ ├── paircounts.cp1251 │ │ │ ├── rawcounts.cp1251 │ │ │ └── ukrainian.h │ │ └── xlt.c │ ├── depcomp │ ├── devel-docs │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── html │ │ │ ├── ch01.html │ │ │ ├── home.png │ │ │ ├── index.html │ │ │ ├── index.sgml │ │ │ ├── left.png │ │ │ ├── libenca-Analyser.html │ │ │ ├── libenca-Auxiliary-Functions.html │ │ │ ├── libenca-Charsets-and-Surfaces.html │ │ │ ├── libenca-Typedefs-and-Constants.html │ │ │ ├── libenca.devhelp │ │ │ ├── libenca.devhelp2 │ │ │ ├── right.png │ │ │ ├── style.css │ │ │ └── up.png │ │ ├── libenca-decl-list.txt │ │ ├── libenca-decl.txt │ │ ├── libenca-docs.sgml │ │ ├── libenca-overrides.txt │ │ ├── libenca-sections.txt │ │ ├── libenca-undeclared.txt │ │ ├── libenca-undocumented.txt │ │ ├── tmpl │ │ │ ├── analyser.sgml │ │ │ ├── auxiliary.sgml │ │ │ ├── encodings.sgml │ │ │ ├── enums.sgml │ │ │ ├── internal.sgml │ │ │ └── libenca-unused.sgml │ │ └── xml │ │ │ ├── analyser.xml │ │ │ ├── api-index-1.3..xml │ │ │ ├── api-index-deprecated.xml │ │ │ ├── api-index-full.xml │ │ │ ├── auxiliary.xml │ │ │ ├── encodings.xml │ │ │ ├── enums.xml │ │ │ ├── internal.xml │ │ │ ├── libenca-doc.bottom │ │ │ ├── libenca-doc.top │ │ │ ├── object_index.sgml │ │ │ └── tree_index.sgml │ ├── enca.pc.in │ ├── enca.spec.in │ ├── iconvcap.c │ ├── install-sh │ ├── lib │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── common.c │ │ ├── ctype.c │ │ ├── enca.c │ │ ├── enca.h │ │ ├── encnames.c │ │ ├── filters.c │ │ ├── guess.c │ │ ├── internal.h │ │ ├── lang.c │ │ ├── lang_be.c │ │ ├── lang_bg.c │ │ ├── lang_cs.c │ │ ├── lang_et.c │ │ ├── lang_hr.c │ │ ├── lang_hu.c │ │ ├── lang_lt.c │ │ ├── lang_lv.c │ │ ├── lang_pl.c │ │ ├── lang_ru.c │ │ ├── lang_sk.c │ │ ├── lang_sl.c │ │ ├── lang_uk.c │ │ ├── lang_zh.c │ │ ├── multibyte.c │ │ ├── pair.c │ │ ├── unicodemap.c │ │ └── utf8_double.c │ ├── libenca_win32 │ │ ├── config.h │ │ ├── libenca_win32.vcproj │ │ ├── libenca_win32.vcxproj │ │ └── libenca_win32.vcxproj.filters │ ├── ltmain.sh │ ├── m4 │ │ ├── crash-me │ │ ├── gtk-doc.m4 │ │ ├── libiconv.m4 │ │ ├── libm.m4 │ │ ├── librecode.m4 │ │ ├── libtool.m4 │ │ ├── localias.m4 │ │ ├── long-text.l2 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── recode-bugs.m4 │ │ ├── tools.m4 │ │ └── typevar.m4 │ ├── man │ │ └── enca.1 │ ├── missing │ ├── mkinstalldirs │ ├── script │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── b-cstocs.in │ │ ├── b-map.in │ │ ├── b-piconv.in │ │ ├── b-recode │ │ └── b-umap.in │ ├── src │ │ ├── .gitignore │ │ ├── HELP.in │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── common.h │ │ ├── convert.c │ │ ├── convert_extern.c │ │ ├── convert_iconv.c │ │ ├── convert_recode.c │ │ ├── enca.c │ │ ├── filebuf.c │ │ ├── getopt.h │ │ ├── getopt_long.c │ │ ├── locale_detect.c │ │ ├── options.c │ │ └── text2c.sh │ ├── test │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── be-s.cp1251 │ │ ├── be-s.ibm855 │ │ ├── be-s.ibm866 │ │ ├── be-s.iso88595 │ │ ├── be-s.koi8uni │ │ ├── be-s.maccyr │ │ ├── be-s.utf8 │ │ ├── be-utf8.ibm855 │ │ ├── be-utf8.iso88595 │ │ ├── bg-s.cp1251 │ │ ├── bg-s.cp1251.qp │ │ ├── bg-s.ecma113 │ │ ├── bg-s.ibm855 │ │ ├── bg-s.iso88595 │ │ ├── bg-s.maccyr │ │ ├── bg-s.utf8 │ │ ├── bg-utf8.bin │ │ ├── bg-utf8.cp1251 │ │ ├── bg-utf8.ecma113 │ │ ├── bg-utf8.ibm855 │ │ ├── bg-utf8.iso88595 │ │ ├── bg-utf8.maccyr │ │ ├── cs-s.cork │ │ ├── cs-s.cp1250 │ │ ├── cs-s.ibm852 │ │ ├── cs-s.ibm852.qp │ │ ├── cs-s.iso88592 │ │ ├── cs-s.keybcs2 │ │ ├── cs-s.koi8cs2 │ │ ├── cs-s.macce │ │ ├── cs-s.utf8 │ │ ├── cs-utf8.bin │ │ ├── cs-utf8.cork │ │ ├── cs-utf8.ibm852 │ │ ├── cs-utf8.iso88592 │ │ ├── dummy-converter.sh │ │ ├── et-s.baltic │ │ ├── et-s.cp1257 │ │ ├── et-s.ibm775 │ │ ├── et-s.iso885913 │ │ ├── et-s.iso88594 │ │ ├── et-s.iso88594.qp │ │ ├── et-s.macce │ │ ├── et-s.utf8 │ │ ├── et-utf8.bin │ │ ├── et-utf8.ibm775 │ │ ├── et-utf8.iso885913 │ │ ├── et-utf8.iso88594 │ │ ├── failing-converter.sh │ │ ├── failing-converter2.sh │ │ ├── finish.sh │ │ ├── hr-s.cork │ │ ├── hr-s.cp1250 │ │ ├── hr-s.ibm852 │ │ ├── hr-s.iso88592 │ │ ├── hr-s.iso88592.qp │ │ ├── hr-s.macce │ │ ├── hr-s.utf8 │ │ ├── hr-utf8.cp1250 │ │ ├── hr-utf8.ibm852 │ │ ├── hu-s.cork │ │ ├── hu-s.cp1250 │ │ ├── hu-s.ibm852 │ │ ├── hu-s.iso88592 │ │ ├── hu-s.macce │ │ ├── hu-s.macce.qp │ │ ├── hu-s.utf8 │ │ ├── hu-utf8.cork │ │ ├── hu-utf8.cp1250 │ │ ├── hu-utf8.ibm852 │ │ ├── hu-utf8.macce │ │ ├── lt-s.baltic │ │ ├── lt-s.cp1257 │ │ ├── lt-s.ibm775 │ │ ├── lt-s.iso885913 │ │ ├── lt-s.iso88594 │ │ ├── lt-s.macce │ │ ├── lt-s.utf8 │ │ ├── lt-utf8.ibm775 │ │ ├── lt-utf8.iso88594 │ │ ├── lt-utf8.macce │ │ ├── lv-s.baltic │ │ ├── lv-s.cp1257 │ │ ├── lv-s.ibm775 │ │ ├── lv-s.iso885913 │ │ ├── lv-s.iso885913.qp │ │ ├── lv-s.iso88594 │ │ ├── lv-s.macce │ │ ├── lv-s.utf8 │ │ ├── lv-utf8.ibm775 │ │ ├── lv-utf8.iso88594 │ │ ├── lv-utf8.macce │ │ ├── none-s.ucs2 │ │ ├── none-s.ucs2le │ │ ├── none-s.ucs2le.qp │ │ ├── none-s.ucs4 │ │ ├── none-s.ucs4le │ │ ├── none-s.utf7 │ │ ├── none-s.utf8 │ │ ├── none-utf8.messy │ │ ├── pl-s.baltic │ │ ├── pl-s.baltic.qp │ │ ├── pl-s.cork │ │ ├── pl-s.cp1250 │ │ ├── pl-s.ibm852 │ │ ├── pl-s.iso885913 │ │ ├── pl-s.iso885916 │ │ ├── pl-s.iso88592 │ │ ├── pl-s.utf8 │ │ ├── pl-utf8.baltic │ │ ├── pl-utf8.ibm852 │ │ ├── pl-utf8.iso885916 │ │ ├── ru-s.cp1251 │ │ ├── ru-s.cp866 │ │ ├── ru-s.iso88595 │ │ ├── ru-s.koi8r │ │ ├── ru-s.maccyr │ │ ├── ru-s.maccyr.qp │ │ ├── ru-s.utf8 │ │ ├── ru-utf8.cp866 │ │ ├── ru-utf8.koi8r │ │ ├── ru-utf8.maccyr │ │ ├── setup.sh │ │ ├── simtable.c │ │ ├── sk-s.cork │ │ ├── sk-s.cp1250 │ │ ├── sk-s.cp1250.qp │ │ ├── sk-s.ibm852 │ │ ├── sk-s.iso88592 │ │ ├── sk-s.keybcs2 │ │ ├── sk-s.koi8cs2 │ │ ├── sk-s.macce │ │ ├── sk-s.utf8 │ │ ├── sk-utf8.cp1250 │ │ ├── sk-utf8.keybcs2 │ │ ├── sl-s.cork │ │ ├── sl-s.cp1250 │ │ ├── sl-s.ibm852 │ │ ├── sl-s.ibm852.qp │ │ ├── sl-s.iso88592 │ │ ├── sl-s.macce │ │ ├── sl-s.utf8 │ │ ├── sl-utf8.cork │ │ ├── sl-utf8.ibm852 │ │ ├── sl-utf8.iso88592 │ │ ├── sl-utf8.macce │ │ ├── test-ENCAOPT.sh │ │ ├── test-aliases.sh │ │ ├── test-convert-64.sh │ │ ├── test-convert-filter.sh │ │ ├── test-convlist.sh │ │ ├── test-default-cs.sh │ │ ├── test-empty.sh │ │ ├── test-errors.sh │ │ ├── test-external.expected │ │ ├── test-external.sh │ │ ├── test-guess-short.expected │ │ ├── test-guess-short.sh │ │ ├── test-guess-stdin.sh │ │ ├── test-guess-utf8.expected │ │ ├── test-guess-utf8.sh │ │ ├── test-iconv.sh │ │ ├── test-lists.sh │ │ ├── test-long-texts.sh │ │ ├── test-pP.expected │ │ ├── test-pP.sh │ │ ├── test-recode.sh │ │ ├── uk-s.cp1125 │ │ ├── uk-s.cp1251 │ │ ├── uk-s.ibm855 │ │ ├── uk-s.iso88595 │ │ ├── uk-s.koi8u │ │ ├── uk-s.maccyr │ │ ├── uk-s.utf8 │ │ ├── uk-utf8.bin │ │ ├── uk-utf8.cp1251 │ │ ├── zh-s.big5 │ │ ├── zh-s.gbk │ │ ├── zh-s.hz │ │ └── zh-s.utf8 │ ├── tools │ │ ├── .gitignore │ │ ├── ACCEPTED_CHARS.t │ │ ├── BASE64.ti │ │ ├── BOXVERT_CP1125.t │ │ ├── BOXVERT_IBM852.t │ │ ├── BOXVERT_KEYBCS2.t │ │ ├── BOXVERT_KOI8R.t │ │ ├── BOXVERT_KOI8RU.t │ │ ├── BOXVERT_KOI8U.t │ │ ├── BOXVERT_KOI8UNI.t │ │ ├── HEXDIGITS.ti │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── TEX_ACCALPHA.t │ │ ├── TEX_ACCPUNCT.t │ │ ├── TEX_SKIP.t │ │ ├── encodings.dat │ │ ├── encodings.h │ │ ├── expand_table.pl │ │ ├── iconvenc.null │ │ └── make_hash.c │ └── topline.sh ├── ffmpeg │ ├── .gitignore │ ├── COPYING.GPLv2 │ ├── COPYING.GPLv3 │ ├── COPYING.LGPLv2.1 │ ├── COPYING.LGPLv3 │ ├── CREDITS │ ├── Changelog │ ├── Doxyfile │ ├── INSTALL │ ├── LICENSE │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── build_xbmc_win32.sh │ ├── cmdutils.c │ ├── cmdutils.h │ ├── cmdutils_common_opts.h │ ├── common.mak │ ├── configure │ ├── doc │ │ ├── APIchanges │ │ ├── TODO │ │ ├── avutil.txt │ │ ├── bitstream_filters.texi │ │ ├── build_system.txt │ │ ├── demuxers.texi │ │ ├── developer.texi │ │ ├── eval.texi │ │ ├── faq.texi │ │ ├── ffmpeg.texi │ │ ├── ffplay.texi │ │ ├── ffprobe.texi │ │ ├── ffserver.conf │ │ ├── ffserver.texi │ │ ├── fftools-common-opts.texi │ │ ├── filters.texi │ │ ├── general.texi │ │ ├── git-howto.txt │ │ ├── indevs.texi │ │ ├── issue_tracker.txt │ │ ├── libavfilter.texi │ │ ├── metadata.texi │ │ ├── muxers.texi │ │ ├── optimization.txt │ │ ├── outdevs.texi │ │ ├── protocols.texi │ │ ├── rate_distortion.txt │ │ ├── snow.txt │ │ ├── soc.txt │ │ ├── swscale.txt │ │ ├── t2h.init │ │ ├── tablegen.txt │ │ ├── texi2pod.pl │ │ └── viterbi.txt │ ├── ffmpeg.c │ ├── ffplay.c │ ├── ffpresets │ │ ├── libx264-baseline.ffpreset │ │ ├── libx264-fast.ffpreset │ │ ├── libx264-fast_firstpass.ffpreset │ │ ├── libx264-faster.ffpreset │ │ ├── libx264-faster_firstpass.ffpreset │ │ ├── libx264-ipod320.ffpreset │ │ ├── libx264-ipod640.ffpreset │ │ ├── libx264-lossless_fast.ffpreset │ │ ├── libx264-lossless_max.ffpreset │ │ ├── libx264-lossless_medium.ffpreset │ │ ├── libx264-lossless_slow.ffpreset │ │ ├── libx264-lossless_slower.ffpreset │ │ ├── libx264-lossless_ultrafast.ffpreset │ │ ├── libx264-main.ffpreset │ │ ├── libx264-medium.ffpreset │ │ ├── libx264-medium_firstpass.ffpreset │ │ ├── libx264-placebo.ffpreset │ │ ├── libx264-placebo_firstpass.ffpreset │ │ ├── libx264-slow.ffpreset │ │ ├── libx264-slow_firstpass.ffpreset │ │ ├── libx264-slower.ffpreset │ │ ├── libx264-slower_firstpass.ffpreset │ │ ├── libx264-superfast.ffpreset │ │ ├── libx264-superfast_firstpass.ffpreset │ │ ├── libx264-ultrafast.ffpreset │ │ ├── libx264-ultrafast_firstpass.ffpreset │ │ ├── libx264-veryfast.ffpreset │ │ ├── libx264-veryfast_firstpass.ffpreset │ │ ├── libx264-veryslow.ffpreset │ │ └── libx264-veryslow_firstpass.ffpreset │ ├── ffprobe.c │ ├── ffserver.c │ ├── ffserver.h │ ├── include-xbmc-win32 │ │ ├── dxva2 │ │ │ └── dxva2api.h │ │ └── libavutil │ │ │ └── avconfig.h │ ├── libavcodec │ │ ├── 4xm.c │ │ ├── 8bps.c │ │ ├── 8svx.c │ │ ├── Makefile │ │ ├── a64colors.h │ │ ├── a64enc.h │ │ ├── a64multienc.c │ │ ├── a64tables.h │ │ ├── aac.h │ │ ├── aac_ac3_parser.c │ │ ├── aac_ac3_parser.h │ │ ├── aac_adtstoasc_bsf.c │ │ ├── aac_parser.c │ │ ├── aac_tablegen.c │ │ ├── aac_tablegen.h │ │ ├── aac_tablegen_decl.h │ │ ├── aacadtsdec.c │ │ ├── aacadtsdec.h │ │ ├── aaccoder.c │ │ ├── aacdec.c │ │ ├── aacdectab.h │ │ ├── aacenc.c │ │ ├── aacenc.h │ │ ├── aacps.c │ │ ├── aacps.h │ │ ├── aacps_tablegen.c │ │ ├── aacps_tablegen.h │ │ ├── aacpsdata.c │ │ ├── aacpsy.c │ │ ├── aacpsy.h │ │ ├── aacsbr.c │ │ ├── aacsbr.h │ │ ├── aacsbrdata.h │ │ ├── aactab.c │ │ ├── aactab.h │ │ ├── aandcttab.c │ │ ├── aandcttab.h │ │ ├── aasc.c │ │ ├── ac3.c │ │ ├── ac3.h │ │ ├── ac3_parser.c │ │ ├── ac3_parser.h │ │ ├── ac3dec.c │ │ ├── ac3dec.h │ │ ├── ac3dec_data.c │ │ ├── ac3dec_data.h │ │ ├── ac3enc.c │ │ ├── ac3enc_fixed.c │ │ ├── ac3enc_fixed.h │ │ ├── ac3enc_float.c │ │ ├── ac3enc_float.h │ │ ├── ac3tab.c │ │ ├── ac3tab.h │ │ ├── acelp_filters.c │ │ ├── acelp_filters.h │ │ ├── acelp_pitch_delay.c │ │ ├── acelp_pitch_delay.h │ │ ├── acelp_vectors.c │ │ ├── acelp_vectors.h │ │ ├── adpcm.c │ │ ├── adx.h │ │ ├── adxdec.c │ │ ├── adxenc.c │ │ ├── alac.c │ │ ├── alacenc.c │ │ ├── allcodecs.c │ │ ├── alpha │ │ │ ├── Makefile │ │ │ ├── asm.h │ │ │ ├── dsputil_alpha.c │ │ │ ├── dsputil_alpha.h │ │ │ ├── dsputil_alpha_asm.S │ │ │ ├── motion_est_alpha.c │ │ │ ├── motion_est_mvi_asm.S │ │ │ ├── mpegvideo_alpha.c │ │ │ ├── regdef.h │ │ │ └── simple_idct_alpha.c │ │ ├── alsdec.c │ │ ├── amr.h │ │ ├── amrnbdata.h │ │ ├── amrnbdec.c │ │ ├── amrwbdata.h │ │ ├── amrwbdec.c │ │ ├── anm.c │ │ ├── ansi.c │ │ ├── apedec.c │ │ ├── api-example.c │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── aac.h │ │ │ ├── asm-offsets.h │ │ │ ├── asm.S │ │ │ ├── dcadsp_init_arm.c │ │ │ ├── dcadsp_neon.S │ │ │ ├── dsputil_arm.S │ │ │ ├── dsputil_arm.h │ │ │ ├── dsputil_armv6.S │ │ │ ├── dsputil_init_arm.c │ │ │ ├── dsputil_init_armv5te.c │ │ │ ├── dsputil_init_armv6.c │ │ │ ├── dsputil_init_neon.c │ │ │ ├── dsputil_init_vfp.c │ │ │ ├── dsputil_iwmmxt.c │ │ │ ├── dsputil_iwmmxt_rnd_template.c │ │ │ ├── dsputil_neon.S │ │ │ ├── dsputil_vfp.S │ │ │ ├── fft_init_arm.c │ │ │ ├── fft_neon.S │ │ │ ├── fmtconvert_init_arm.c │ │ │ ├── fmtconvert_neon.S │ │ │ ├── fmtconvert_vfp.S │ │ │ ├── h264dsp_init_arm.c │ │ │ ├── h264dsp_neon.S │ │ │ ├── h264idct_neon.S │ │ │ ├── h264pred_init_arm.c │ │ │ ├── h264pred_neon.S │ │ │ ├── int_neon.S │ │ │ ├── jrevdct_arm.S │ │ │ ├── mathops.h │ │ │ ├── mdct_neon.S │ │ │ ├── mpegvideo_arm.c │ │ │ ├── mpegvideo_arm.h │ │ │ ├── mpegvideo_armv5te.c │ │ │ ├── mpegvideo_armv5te_s.S │ │ │ ├── mpegvideo_iwmmxt.c │ │ │ ├── mpegvideo_neon.S │ │ │ ├── rdft_neon.S │ │ │ ├── simple_idct_arm.S │ │ │ ├── simple_idct_armv5te.S │ │ │ ├── simple_idct_armv6.S │ │ │ ├── simple_idct_neon.S │ │ │ ├── synth_filter_neon.S │ │ │ ├── vp3dsp_neon.S │ │ │ ├── vp56dsp_init_arm.c │ │ │ └── vp56dsp_neon.S │ │ ├── ass.c │ │ ├── ass.h │ │ ├── assdec.c │ │ ├── assenc.c │ │ ├── asv1.c │ │ ├── atrac.c │ │ ├── atrac.h │ │ ├── atrac1.c │ │ ├── atrac1data.h │ │ ├── atrac3.c │ │ ├── atrac3data.h │ │ ├── audioconvert.c │ │ ├── audioconvert.h │ │ ├── aura.c │ │ ├── avcodec.h │ │ ├── avfft.c │ │ ├── avfft.h │ │ ├── avpacket.c │ │ ├── avr32 │ │ │ └── mathops.h │ │ ├── avs.c │ │ ├── bethsoftvideo.c │ │ ├── bethsoftvideo.h │ │ ├── bfi.c │ │ ├── bfin │ │ │ ├── Makefile │ │ │ ├── config_bfin.h │ │ │ ├── dsputil_bfin.c │ │ │ ├── dsputil_bfin.h │ │ │ ├── fdct_bfin.S │ │ │ ├── idct_bfin.S │ │ │ ├── mathops.h │ │ │ ├── mpegvideo_bfin.c │ │ │ ├── pixels_bfin.S │ │ │ ├── vp3_bfin.c │ │ │ └── vp3_idct_bfin.S │ │ ├── bgmc.c │ │ ├── bgmc.h │ │ ├── bink.c │ │ ├── binkaudio.c │ │ ├── binkdata.h │ │ ├── binkidct.c │ │ ├── bitstream.c │ │ ├── bitstream_filter.c │ │ ├── bmp.c │ │ ├── bmp.h │ │ ├── bmpenc.c │ │ ├── bytestream.h │ │ ├── c93.c │ │ ├── cabac.c │ │ ├── cabac.h │ │ ├── cavs.c │ │ ├── cavs.h │ │ ├── cavs_parser.c │ │ ├── cavsdata.h │ │ ├── cavsdec.c │ │ ├── cavsdsp.c │ │ ├── cavsdsp.h │ │ ├── cbrt_tablegen.c │ │ ├── cbrt_tablegen.h │ │ ├── cdgraphics.c │ │ ├── celp_filters.c │ │ ├── celp_filters.h │ │ ├── celp_math.c │ │ ├── celp_math.h │ │ ├── cga_data.c │ │ ├── cga_data.h │ │ ├── chomp_bsf.c │ │ ├── cinepak.c │ │ ├── cljr.c │ │ ├── cook.c │ │ ├── cookdata.h │ │ ├── costablegen.c │ │ ├── cscd.c │ │ ├── cyuv.c │ │ ├── dca.c │ │ ├── dca.h │ │ ├── dca_parser.c │ │ ├── dcadata.h │ │ ├── dcadsp.c │ │ ├── dcadsp.h │ │ ├── dcahuff.h │ │ ├── dct-test.c │ │ ├── dct.c │ │ ├── dct32.c │ │ ├── dctref.c │ │ ├── dctref.h │ │ ├── dirac.c │ │ ├── dirac.h │ │ ├── dirac_parser.c │ │ ├── dnxhd_parser.c │ │ ├── dnxhddata.c │ │ ├── dnxhddata.h │ │ ├── dnxhddec.c │ │ ├── dnxhdenc.c │ │ ├── dnxhdenc.h │ │ ├── dpcm.c │ │ ├── dpx.c │ │ ├── dsicinav.c │ │ ├── dsputil.c │ │ ├── dsputil.h │ │ ├── dump_extradata_bsf.c │ │ ├── dv.c │ │ ├── dv_tablegen.c │ │ ├── dv_tablegen.h │ │ ├── dv_vlc_data.h │ │ ├── dvbsub.c │ │ ├── dvbsub_parser.c │ │ ├── dvbsubdec.c │ │ ├── dvdata.c │ │ ├── dvdata.h │ │ ├── dvdsub_parser.c │ │ ├── dvdsubdec.c │ │ ├── dvdsubenc.c │ │ ├── dwt.c │ │ ├── dwt.h │ │ ├── dxa.c │ │ ├── dxva2.c │ │ ├── dxva2.h │ │ ├── dxva2_h264.c │ │ ├── dxva2_internal.h │ │ ├── dxva2_mpeg2.c │ │ ├── dxva2_vc1.c │ │ ├── eac3dec.c │ │ ├── eac3dec_data.c │ │ ├── eac3dec_data.h │ │ ├── eacmv.c │ │ ├── eaidct.c │ │ ├── eamad.c │ │ ├── eatgq.c │ │ ├── eatgv.c │ │ ├── eatqi.c │ │ ├── elbg.c │ │ ├── elbg.h │ │ ├── error_resilience.c │ │ ├── escape124.c │ │ ├── faandct.c │ │ ├── faandct.h │ │ ├── faanidct.c │ │ ├── faanidct.h │ │ ├── faxcompr.c │ │ ├── faxcompr.h │ │ ├── fft-test.c │ │ ├── fft.c │ │ ├── fft.h │ │ ├── ffv1.c │ │ ├── flac.c │ │ ├── flac.h │ │ ├── flac_parser.c │ │ ├── flacdata.c │ │ ├── flacdata.h │ │ ├── flacdec.c │ │ ├── flacenc.c │ │ ├── flashsv.c │ │ ├── flashsvenc.c │ │ ├── flicvideo.c │ │ ├── flv.h │ │ ├── flvdec.c │ │ ├── flvenc.c │ │ ├── fmtconvert.c │ │ ├── fmtconvert.h │ │ ├── fraps.c │ │ ├── frwu.c │ │ ├── g722.c │ │ ├── g726.c │ │ ├── g729.h │ │ ├── g729data.h │ │ ├── g729dec.c │ │ ├── get_bits.h │ │ ├── gif.c │ │ ├── gifdec.c │ │ ├── golomb.c │ │ ├── golomb.h │ │ ├── gsmdec.c │ │ ├── gsmdec_data.c │ │ ├── gsmdec_data.h │ │ ├── gsmdec_template.c │ │ ├── h261.c │ │ ├── h261.h │ │ ├── h261_parser.c │ │ ├── h261data.h │ │ ├── h261dec.c │ │ ├── h261enc.c │ │ ├── h263.c │ │ ├── h263.h │ │ ├── h263_parser.c │ │ ├── h263_parser.h │ │ ├── h263data.h │ │ ├── h263dec.c │ │ ├── h264.c │ │ ├── h264.h │ │ ├── h264_cabac.c │ │ ├── h264_cavlc.c │ │ ├── h264_direct.c │ │ ├── h264_loopfilter.c │ │ ├── h264_mp4toannexb_bsf.c │ │ ├── h264_mvpred.h │ │ ├── h264_parser.c │ │ ├── h264_ps.c │ │ ├── h264_refs.c │ │ ├── h264_sei.c │ │ ├── h264data.h │ │ ├── h264dsp.c │ │ ├── h264dsp.h │ │ ├── h264idct.c │ │ ├── h264pred.c │ │ ├── h264pred.h │ │ ├── huffman.c │ │ ├── huffman.h │ │ ├── huffyuv.c │ │ ├── idcinvideo.c │ │ ├── iff.c │ │ ├── iirfilter.c │ │ ├── iirfilter.h │ │ ├── imc.c │ │ ├── imcdata.h │ │ ├── imgconvert.c │ │ ├── imgconvert.h │ │ ├── imx_dump_header_bsf.c │ │ ├── indeo2.c │ │ ├── indeo2data.h │ │ ├── indeo3.c │ │ ├── indeo3data.h │ │ ├── indeo5.c │ │ ├── indeo5data.h │ │ ├── intelh263dec.c │ │ ├── internal.h │ │ ├── interplayvideo.c │ │ ├── intrax8.c │ │ ├── intrax8.h │ │ ├── intrax8dsp.c │ │ ├── intrax8huf.h │ │ ├── inverse.c │ │ ├── ituh263dec.c │ │ ├── ituh263enc.c │ │ ├── ivi_common.c │ │ ├── ivi_common.h │ │ ├── ivi_dsp.c │ │ ├── ivi_dsp.h │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jpegls.c │ │ ├── jpegls.h │ │ ├── jpeglsdec.c │ │ ├── jpeglsdec.h │ │ ├── jpeglsenc.c │ │ ├── jrevdct.c │ │ ├── kgv1dec.c │ │ ├── kmvc.c │ │ ├── lagarith.c │ │ ├── lagarithrac.c │ │ ├── lagarithrac.h │ │ ├── latm_parser.c │ │ ├── lcl.h │ │ ├── lcldec.c │ │ ├── lclenc.c │ │ ├── libavcodec.v │ │ ├── libdirac.h │ │ ├── libdirac_libschro.c │ │ ├── libdirac_libschro.h │ │ ├── libdiracdec.c │ │ ├── libdiracenc.c │ │ ├── libfaac.c │ │ ├── libgsm.c │ │ ├── libmp3lame.c │ │ ├── libopencore-amr.c │ │ ├── libopenjpeg.c │ │ ├── libschroedinger.c │ │ ├── libschroedinger.h │ │ ├── libschroedingerdec.c │ │ ├── libschroedingerenc.c │ │ ├── libspeexdec.c │ │ ├── libtheoraenc.c │ │ ├── libvorbis.c │ │ ├── libvpxdec.c │ │ ├── libvpxenc.c │ │ ├── libx264.c │ │ ├── libxavs.c │ │ ├── libxvid_internal.h │ │ ├── libxvid_rc.c │ │ ├── libxvidff.c │ │ ├── ljpegenc.c │ │ ├── loco.c │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── lzw.c │ │ ├── lzw.h │ │ ├── lzwenc.c │ │ ├── mace.c │ │ ├── mathops.h │ │ ├── mdct.c │ │ ├── mdct_tablegen.c │ │ ├── mdct_tablegen.h │ │ ├── mdec.c │ │ ├── mimic.c │ │ ├── mips │ │ │ ├── Makefile │ │ │ └── mathops.h │ │ ├── mjpeg.c │ │ ├── mjpeg.h │ │ ├── mjpeg2jpeg_bsf.c │ │ ├── mjpeg_parser.c │ │ ├── mjpega_dump_header_bsf.c │ │ ├── mjpegbdec.c │ │ ├── mjpegdec.c │ │ ├── mjpegdec.h │ │ ├── mjpegenc.c │ │ ├── mjpegenc.h │ │ ├── mlib │ │ │ └── dsputil_mlib.c │ │ ├── mlp.c │ │ ├── mlp.h │ │ ├── mlp_parser.c │ │ ├── mlp_parser.h │ │ ├── mlpdec.c │ │ ├── mlpdsp.c │ │ ├── mmvideo.c │ │ ├── motion-test.c │ │ ├── motion_est.c │ │ ├── motion_est_template.c │ │ ├── motionpixels.c │ │ ├── motionpixels_tablegen.c │ │ ├── motionpixels_tablegen.h │ │ ├── movsub_bsf.c │ │ ├── mp3_header_compress_bsf.c │ │ ├── mp3_header_decompress_bsf.c │ │ ├── mpc.c │ │ ├── mpc.h │ │ ├── mpc7.c │ │ ├── mpc7data.h │ │ ├── mpc8.c │ │ ├── mpc8data.h │ │ ├── mpc8huff.h │ │ ├── mpcdata.h │ │ ├── mpeg12.c │ │ ├── mpeg12.h │ │ ├── mpeg12data.c │ │ ├── mpeg12data.h │ │ ├── mpeg12decdata.h │ │ ├── mpeg12enc.c │ │ ├── mpeg4audio.c │ │ ├── mpeg4audio.h │ │ ├── mpeg4data.h │ │ ├── mpeg4video.c │ │ ├── mpeg4video.h │ │ ├── mpeg4video_parser.c │ │ ├── mpeg4video_parser.h │ │ ├── mpeg4videodec.c │ │ ├── mpeg4videoenc.c │ │ ├── mpegaudio.c │ │ ├── mpegaudio.h │ │ ├── mpegaudio3.h │ │ ├── mpegaudio_parser.c │ │ ├── mpegaudio_tablegen.c │ │ ├── mpegaudio_tablegen.h │ │ ├── mpegaudiodata.c │ │ ├── mpegaudiodata.h │ │ ├── mpegaudiodec.c │ │ ├── mpegaudiodec_float.c │ │ ├── mpegaudiodecheader.c │ │ ├── mpegaudiodecheader.h │ │ ├── mpegaudiodectab.h │ │ ├── mpegaudioenc.c │ │ ├── mpegaudiotab.h │ │ ├── mpegvideo.c │ │ ├── mpegvideo.h │ │ ├── mpegvideo_common.h │ │ ├── mpegvideo_enc.c │ │ ├── mpegvideo_parser.c │ │ ├── mpegvideo_xvmc.c │ │ ├── msgsmdec.c │ │ ├── msgsmdec.h │ │ ├── msmpeg4.c │ │ ├── msmpeg4.h │ │ ├── msmpeg4data.c │ │ ├── msmpeg4data.h │ │ ├── msrle.c │ │ ├── msrledec.c │ │ ├── msrledec.h │ │ ├── msvideo1.c │ │ ├── nellymoser.c │ │ ├── nellymoser.h │ │ ├── nellymoserdec.c │ │ ├── nellymoserenc.c │ │ ├── noise_bsf.c │ │ ├── nuv.c │ │ ├── opt.c │ │ ├── opt.h │ │ ├── options.c │ │ ├── pamenc.c │ │ ├── parser.c │ │ ├── parser.h │ │ ├── pcm-mpeg.c │ │ ├── pcm.c │ │ ├── pcm_tablegen.c │ │ ├── pcm_tablegen.h │ │ ├── pcx.c │ │ ├── pcxenc.c │ │ ├── pgssubdec.c │ │ ├── pictordec.c │ │ ├── png.c │ │ ├── png.h │ │ ├── pngdec.c │ │ ├── pngenc.c │ │ ├── pnm.c │ │ ├── pnm.h │ │ ├── pnm_parser.c │ │ ├── pnmdec.c │ │ ├── pnmenc.c │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── asm.S │ │ │ ├── dsputil_altivec.c │ │ │ ├── dsputil_altivec.h │ │ │ ├── dsputil_ppc.c │ │ │ ├── fdct_altivec.c │ │ │ ├── fft_altivec.c │ │ │ ├── fft_altivec_s.S │ │ │ ├── float_altivec.c │ │ │ ├── fmtconvert_altivec.c │ │ │ ├── gmc_altivec.c │ │ │ ├── h264_altivec.c │ │ │ ├── h264_template_altivec.c │ │ │ ├── idct_altivec.c │ │ │ ├── int_altivec.c │ │ │ ├── mathops.h │ │ │ ├── mpegaudiodec_altivec.c │ │ │ ├── mpegvideo_altivec.c │ │ │ ├── regs.h │ │ │ ├── types_altivec.h │ │ │ ├── util_altivec.h │ │ │ ├── vc1dsp_altivec.c │ │ │ ├── vp3dsp_altivec.c │ │ │ └── vp8dsp_altivec.c │ │ ├── ps2 │ │ │ ├── dsputil_mmi.c │ │ │ ├── idct_mmi.c │ │ │ ├── mmi.h │ │ │ └── mpegvideo_mmi.c │ │ ├── psymodel.c │ │ ├── psymodel.h │ │ ├── pthread.c │ │ ├── ptx.c │ │ ├── put_bits.h │ │ ├── qcelpdata.h │ │ ├── qcelpdec.c │ │ ├── qdm2.c │ │ ├── qdm2_tablegen.c │ │ ├── qdm2_tablegen.h │ │ ├── qdm2data.h │ │ ├── qdrw.c │ │ ├── qpeg.c │ │ ├── qtrle.c │ │ ├── qtrleenc.c │ │ ├── r210dec.c │ │ ├── ra144.c │ │ ├── ra144.h │ │ ├── ra144dec.c │ │ ├── ra144enc.c │ │ ├── ra288.c │ │ ├── ra288.h │ │ ├── rangecoder.c │ │ ├── rangecoder.h │ │ ├── ratecontrol.c │ │ ├── ratecontrol.h │ │ ├── raw.c │ │ ├── raw.h │ │ ├── rawdec.c │ │ ├── rawenc.c │ │ ├── rdft.c │ │ ├── rectangle.h │ │ ├── remove_extradata_bsf.c │ │ ├── resample.c │ │ ├── resample2.c │ │ ├── rl.h │ │ ├── rl2.c │ │ ├── rle.c │ │ ├── rle.h │ │ ├── roqaudioenc.c │ │ ├── roqvideo.c │ │ ├── roqvideo.h │ │ ├── roqvideodec.c │ │ ├── roqvideoenc.c │ │ ├── rpza.c │ │ ├── rtjpeg.c │ │ ├── rtjpeg.h │ │ ├── rv10.c │ │ ├── rv10enc.c │ │ ├── rv20enc.c │ │ ├── rv30.c │ │ ├── rv30data.h │ │ ├── rv30dsp.c │ │ ├── rv34.c │ │ ├── rv34.h │ │ ├── rv34data.h │ │ ├── rv34vlc.h │ │ ├── rv40.c │ │ ├── rv40data.h │ │ ├── rv40dsp.c │ │ ├── rv40vlc2.h │ │ ├── s3tc.c │ │ ├── s3tc.h │ │ ├── sbr.h │ │ ├── sgi.h │ │ ├── sgidec.c │ │ ├── sgienc.c │ │ ├── sh4 │ │ │ ├── Makefile │ │ │ ├── dsputil_align.c │ │ │ ├── dsputil_sh4.c │ │ │ ├── dsputil_sh4.h │ │ │ ├── idct_sh4.c │ │ │ ├── qpel.c │ │ │ └── sh4.h │ │ ├── shorten.c │ │ ├── simple_idct.c │ │ ├── simple_idct.h │ │ ├── sipr.c │ │ ├── sipr.h │ │ ├── sipr16k.c │ │ ├── sipr16kdata.h │ │ ├── siprdata.h │ │ ├── smacker.c │ │ ├── smc.c │ │ ├── snow.c │ │ ├── snow.h │ │ ├── sonic.c │ │ ├── sp5x.h │ │ ├── sp5xdec.c │ │ ├── sparc │ │ │ ├── Makefile │ │ │ ├── dsputil_vis.c │ │ │ ├── dsputil_vis.h │ │ │ ├── simple_idct_vis.c │ │ │ └── vis.h │ │ ├── srtdec.c │ │ ├── sunrast.c │ │ ├── svq1.c │ │ ├── svq1.h │ │ ├── svq1_cb.h │ │ ├── svq1_vlc.h │ │ ├── svq1dec.c │ │ ├── svq1enc.c │ │ ├── svq1enc_cb.h │ │ ├── svq3.c │ │ ├── synth_filter.c │ │ ├── synth_filter.h │ │ ├── tableprint.c │ │ ├── tableprint.h │ │ ├── targa.c │ │ ├── targa.h │ │ ├── targaenc.c │ │ ├── tiertexseqv.c │ │ ├── tiff.c │ │ ├── tiff.h │ │ ├── tiffenc.c │ │ ├── tmv.c │ │ ├── truemotion1.c │ │ ├── truemotion1data.h │ │ ├── truemotion2.c │ │ ├── truespeech.c │ │ ├── truespeech_data.h │ │ ├── tscc.c │ │ ├── tta.c │ │ ├── twinvq.c │ │ ├── twinvq_data.h │ │ ├── txd.c │ │ ├── ulti.c │ │ ├── ulti_cb.h │ │ ├── unary.h │ │ ├── utils.c │ │ ├── v210dec.c │ │ ├── v210enc.c │ │ ├── v210x.c │ │ ├── vaapi.c │ │ ├── vaapi.h │ │ ├── vaapi_h264.c │ │ ├── vaapi_internal.h │ │ ├── vaapi_mpeg2.c │ │ ├── vaapi_mpeg4.c │ │ ├── vaapi_vc1.c │ │ ├── vb.c │ │ ├── vc1.c │ │ ├── vc1.h │ │ ├── vc1_parser.c │ │ ├── vc1acdata.h │ │ ├── vc1data.c │ │ ├── vc1data.h │ │ ├── vc1dec.c │ │ ├── vc1dsp.c │ │ ├── vcr1.c │ │ ├── vdpau.c │ │ ├── vdpau.h │ │ ├── vdpau_internal.h │ │ ├── vmdav.c │ │ ├── vmnc.c │ │ ├── vorbis.c │ │ ├── vorbis.h │ │ ├── vorbis_data.c │ │ ├── vorbis_dec.c │ │ ├── vorbis_enc.c │ │ ├── vorbis_enc_data.h │ │ ├── vp3.c │ │ ├── vp3_parser.c │ │ ├── vp3data.h │ │ ├── vp3dsp.c │ │ ├── vp5.c │ │ ├── vp56.c │ │ ├── vp56.h │ │ ├── vp56data.c │ │ ├── vp56data.h │ │ ├── vp56dsp.c │ │ ├── vp56dsp.h │ │ ├── vp56rac.c │ │ ├── vp5data.h │ │ ├── vp6.c │ │ ├── vp6data.h │ │ ├── vp6dsp.c │ │ ├── vp8.c │ │ ├── vp8_parser.c │ │ ├── vp8data.h │ │ ├── vp8dsp.c │ │ ├── vp8dsp.h │ │ ├── vqavideo.c │ │ ├── w32thread.c │ │ ├── wavpack.c │ │ ├── wma.c │ │ ├── wma.h │ │ ├── wmadata.h │ │ ├── wmadec.c │ │ ├── wmaenc.c │ │ ├── wmaprodata.h │ │ ├── wmaprodec.c │ │ ├── wmavoice.c │ │ ├── wmavoice_data.h │ │ ├── wmv2.c │ │ ├── wmv2.h │ │ ├── wmv2dec.c │ │ ├── wmv2enc.c │ │ ├── wnv1.c │ │ ├── ws-snd1.c │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── cavsdsp_mmx.c │ │ │ ├── dct32_sse.c │ │ │ ├── deinterlace.asm │ │ │ ├── dnxhd_mmx.c │ │ │ ├── dsputil_mmx.c │ │ │ ├── dsputil_mmx.h │ │ │ ├── dsputil_mmx_avg_template.c │ │ │ ├── dsputil_mmx_qns_template.c │ │ │ ├── dsputil_mmx_rnd_template.c │ │ │ ├── dsputil_yasm.asm │ │ │ ├── dsputilenc_mmx.c │ │ │ ├── dsputilenc_yasm.asm │ │ │ ├── fdct_mmx.c │ │ │ ├── fft.c │ │ │ ├── fft.h │ │ │ ├── fft_3dn.c │ │ │ ├── fft_3dn2.c │ │ │ ├── fft_mmx.asm │ │ │ ├── fft_sse.c │ │ │ ├── fmtconvert.asm │ │ │ ├── fmtconvert_mmx.c │ │ │ ├── h264_chromamc.asm │ │ │ ├── h264_deblock.asm │ │ │ ├── h264_i386.h │ │ │ ├── h264_idct.asm │ │ │ ├── h264_intrapred.asm │ │ │ ├── h264_intrapred_init.c │ │ │ ├── h264_qpel_mmx.c │ │ │ ├── h264_weight.asm │ │ │ ├── h264dsp_mmx.c │ │ │ ├── idct_mmx.c │ │ │ ├── idct_mmx_xvid.c │ │ │ ├── idct_sse2_xvid.c │ │ │ ├── idct_xvid.h │ │ │ ├── lpc_mmx.c │ │ │ ├── mathops.h │ │ │ ├── mlpdsp.c │ │ │ ├── motion_est_mmx.c │ │ │ ├── mpegaudiodec_mmx.c │ │ │ ├── mpegvideo_mmx.c │ │ │ ├── mpegvideo_mmx_template.c │ │ │ ├── simple_idct_mmx.c │ │ │ ├── snowdsp_mmx.c │ │ │ ├── vc1dsp_mmx.c │ │ │ ├── vc1dsp_yasm.asm │ │ │ ├── vp3dsp.asm │ │ │ ├── vp56_arith.h │ │ │ ├── vp56dsp.asm │ │ │ ├── vp56dsp_init.c │ │ │ ├── vp8dsp-init.c │ │ │ ├── vp8dsp.asm │ │ │ ├── x86inc.asm │ │ │ └── x86util.asm │ │ ├── xan.c │ │ ├── xiph.c │ │ ├── xiph.h │ │ ├── xl.c │ │ ├── xsubdec.c │ │ ├── xsubenc.c │ │ ├── xvmc.h │ │ ├── xvmc_internal.h │ │ ├── yop.c │ │ ├── zmbv.c │ │ └── zmbvenc.c │ ├── libavcore │ │ ├── Makefile │ │ ├── audioconvert.c │ │ ├── audioconvert.h │ │ ├── avcore.h │ │ ├── imgutils.c │ │ ├── imgutils.h │ │ ├── internal.h │ │ ├── libavcore.v │ │ ├── parseutils.c │ │ ├── parseutils.h │ │ ├── samplefmt.c │ │ ├── samplefmt.h │ │ └── utils.c │ ├── libavdevice │ │ ├── Makefile │ │ ├── alldevices.c │ │ ├── alsa-audio-common.c │ │ ├── alsa-audio-dec.c │ │ ├── alsa-audio-enc.c │ │ ├── alsa-audio.h │ │ ├── avdevice.c │ │ ├── avdevice.h │ │ ├── bktr.c │ │ ├── dv1394.c │ │ ├── dv1394.h │ │ ├── jack_audio.c │ │ ├── libavdevice.v │ │ ├── libdc1394.c │ │ ├── oss_audio.c │ │ ├── v4l.c │ │ ├── v4l2.c │ │ ├── vfwcap.c │ │ └── x11grab.c │ ├── libavfilter │ │ ├── Makefile │ │ ├── af_anull.c │ │ ├── allfilters.c │ │ ├── asink_anullsink.c │ │ ├── asrc_anullsrc.c │ │ ├── avfilter.c │ │ ├── avfilter.h │ │ ├── avfiltergraph.c │ │ ├── avfiltergraph.h │ │ ├── defaults.c │ │ ├── formats.c │ │ ├── gradfun.h │ │ ├── graphparser.c │ │ ├── internal.h │ │ ├── libavfilter.v │ │ ├── vf_aspect.c │ │ ├── vf_blackframe.c │ │ ├── vf_copy.c │ │ ├── vf_crop.c │ │ ├── vf_cropdetect.c │ │ ├── vf_drawbox.c │ │ ├── vf_fifo.c │ │ ├── vf_format.c │ │ ├── vf_frei0r.c │ │ ├── vf_gradfun.c │ │ ├── vf_hflip.c │ │ ├── vf_hqdn3d.c │ │ ├── vf_libopencv.c │ │ ├── vf_null.c │ │ ├── vf_overlay.c │ │ ├── vf_pad.c │ │ ├── vf_pixdesctest.c │ │ ├── vf_scale.c │ │ ├── vf_setpts.c │ │ ├── vf_settb.c │ │ ├── vf_slicify.c │ │ ├── vf_transpose.c │ │ ├── vf_unsharp.c │ │ ├── vf_vflip.c │ │ ├── vf_yadif.c │ │ ├── vsink_nullsink.c │ │ ├── vsrc_buffer.c │ │ ├── vsrc_buffer.h │ │ ├── vsrc_nullsrc.c │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── gradfun.c │ │ │ ├── yadif.c │ │ │ └── yadif_template.c │ │ └── yadif.h │ ├── libavformat │ │ ├── 4xm.c │ │ ├── Makefile │ │ ├── a64.c │ │ ├── aacdec.c │ │ ├── ac3dec.c │ │ ├── adts.h │ │ ├── adtsenc.c │ │ ├── aea.c │ │ ├── aiff.h │ │ ├── aiffdec.c │ │ ├── aiffenc.c │ │ ├── allformats.c │ │ ├── amr.c │ │ ├── anm.c │ │ ├── apc.c │ │ ├── ape.c │ │ ├── apetag.c │ │ ├── apetag.h │ │ ├── applehttp.c │ │ ├── asf.c │ │ ├── asf.h │ │ ├── asfcrypt.c │ │ ├── asfcrypt.h │ │ ├── asfdec.c │ │ ├── asfenc.c │ │ ├── assdec.c │ │ ├── assenc.c │ │ ├── au.c │ │ ├── audiointerleave.c │ │ ├── audiointerleave.h │ │ ├── avc.c │ │ ├── avc.h │ │ ├── avformat.h │ │ ├── avi.c │ │ ├── avi.h │ │ ├── avidec.c │ │ ├── avienc.c │ │ ├── avio.c │ │ ├── avio.h │ │ ├── aviobuf.c │ │ ├── avisynth.c │ │ ├── avlanguage.c │ │ ├── avlanguage.h │ │ ├── avs.c │ │ ├── bethsoftvid.c │ │ ├── bfi.c │ │ ├── bink.c │ │ ├── c93.c │ │ ├── caf.c │ │ ├── caf.h │ │ ├── cafdec.c │ │ ├── cavsvideodec.c │ │ ├── cdg.c │ │ ├── concat.c │ │ ├── crcenc.c │ │ ├── cutils.c │ │ ├── daud.c │ │ ├── diracdec.c │ │ ├── dnxhddec.c │ │ ├── dsicin.c │ │ ├── dtsdec.c │ │ ├── dv.c │ │ ├── dv.h │ │ ├── dvenc.c │ │ ├── dxa.c │ │ ├── eacdata.c │ │ ├── electronicarts.c │ │ ├── ffm.h │ │ ├── ffmdec.c │ │ ├── ffmenc.c │ │ ├── ffmeta.h │ │ ├── ffmetadec.c │ │ ├── ffmetaenc.c │ │ ├── file.c │ │ ├── filmstripdec.c │ │ ├── filmstripenc.c │ │ ├── flacdec.c │ │ ├── flacenc.c │ │ ├── flacenc.h │ │ ├── flacenc_header.c │ │ ├── flic.c │ │ ├── flv.h │ │ ├── flvdec.c │ │ ├── flvenc.c │ │ ├── framecrcenc.c │ │ ├── gif.c │ │ ├── gopher.c │ │ ├── gxf.c │ │ ├── gxf.h │ │ ├── gxfenc.c │ │ ├── h261dec.c │ │ ├── h263dec.c │ │ ├── h264dec.c │ │ ├── http.c │ │ ├── http.h │ │ ├── httpauth.c │ │ ├── httpauth.h │ │ ├── id3v1.c │ │ ├── id3v1.h │ │ ├── id3v2.c │ │ ├── id3v2.h │ │ ├── idcin.c │ │ ├── idroqdec.c │ │ ├── idroqenc.c │ │ ├── iff.c │ │ ├── img2.c │ │ ├── ingenientdec.c │ │ ├── internal.h │ │ ├── ipmovie.c │ │ ├── isom.c │ │ ├── isom.h │ │ ├── iss.c │ │ ├── iv8.c │ │ ├── ivfdec.c │ │ ├── ivfenc.c │ │ ├── libavformat.v │ │ ├── libnut.c │ │ ├── librtmp.c │ │ ├── lmlm4.c │ │ ├── lxfdec.c │ │ ├── m4vdec.c │ │ ├── matroska.c │ │ ├── matroska.h │ │ ├── matroskadec.c │ │ ├── matroskaenc.c │ │ ├── md5enc.c │ │ ├── md5proto.c │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── metadata_compat.c │ │ ├── mm.c │ │ ├── mmf.c │ │ ├── mms.c │ │ ├── mms.h │ │ ├── mmsh.c │ │ ├── mmst.c │ │ ├── mov.c │ │ ├── movenc.c │ │ ├── movenc.h │ │ ├── movenchint.c │ │ ├── mp3dec.c │ │ ├── mp3enc.c │ │ ├── mpc.c │ │ ├── mpc8.c │ │ ├── mpeg.c │ │ ├── mpeg.h │ │ ├── mpegenc.c │ │ ├── mpegts.c │ │ ├── mpegts.h │ │ ├── mpegtsenc.c │ │ ├── mpegvideodec.c │ │ ├── mpjpeg.c │ │ ├── msnwc_tcp.c │ │ ├── mtv.c │ │ ├── mvi.c │ │ ├── mxf.c │ │ ├── mxf.h │ │ ├── mxfdec.c │ │ ├── mxfenc.c │ │ ├── mxg.c │ │ ├── ncdec.c │ │ ├── network.h │ │ ├── nsvdec.c │ │ ├── nullenc.c │ │ ├── nut.c │ │ ├── nut.h │ │ ├── nutdec.c │ │ ├── nutenc.c │ │ ├── nuv.c │ │ ├── oggdec.c │ │ ├── oggdec.h │ │ ├── oggenc.c │ │ ├── oggparsedirac.c │ │ ├── oggparseflac.c │ │ ├── oggparseogm.c │ │ ├── oggparseskeleton.c │ │ ├── oggparsespeex.c │ │ ├── oggparsetheora.c │ │ ├── oggparsevorbis.c │ │ ├── oma.c │ │ ├── options.c │ │ ├── os_support.c │ │ ├── os_support.h │ │ ├── output-example.c │ │ ├── pcm.c │ │ ├── pcm.h │ │ ├── pcmdec.c │ │ ├── pcmenc.c │ │ ├── psxstr.c │ │ ├── pva.c │ │ ├── qcp.c │ │ ├── qtpalette.h │ │ ├── r3d.c │ │ ├── rawdec.c │ │ ├── rawdec.h │ │ ├── rawenc.c │ │ ├── rawenc.h │ │ ├── rawvideodec.c │ │ ├── rdt.c │ │ ├── rdt.h │ │ ├── riff.c │ │ ├── riff.h │ │ ├── rl2.c │ │ ├── rm.c │ │ ├── rm.h │ │ ├── rmdec.c │ │ ├── rmenc.c │ │ ├── rpl.c │ │ ├── rso.c │ │ ├── rso.h │ │ ├── rsodec.c │ │ ├── rsoenc.c │ │ ├── rtmp.h │ │ ├── rtmppkt.c │ │ ├── rtmppkt.h │ │ ├── rtmpproto.c │ │ ├── rtp.c │ │ ├── rtp.h │ │ ├── rtpdec.c │ │ ├── rtpdec.h │ │ ├── rtpdec_amr.c │ │ ├── rtpdec_asf.c │ │ ├── rtpdec_formats.h │ │ ├── rtpdec_h263.c │ │ ├── rtpdec_h264.c │ │ ├── rtpdec_latm.c │ │ ├── rtpdec_mpeg4.c │ │ ├── rtpdec_qcelp.c │ │ ├── rtpdec_qdm2.c │ │ ├── rtpdec_qt.c │ │ ├── rtpdec_svq3.c │ │ ├── rtpdec_vp8.c │ │ ├── rtpdec_xiph.c │ │ ├── rtpenc.c │ │ ├── rtpenc.h │ │ ├── rtpenc_aac.c │ │ ├── rtpenc_amr.c │ │ ├── rtpenc_chain.c │ │ ├── rtpenc_chain.h │ │ ├── rtpenc_h263.c │ │ ├── rtpenc_h264.c │ │ ├── rtpenc_mpv.c │ │ ├── rtpenc_vp8.c │ │ ├── rtpenc_xiph.c │ │ ├── rtpproto.c │ │ ├── rtsp.c │ │ ├── rtsp.h │ │ ├── rtspcodes.h │ │ ├── rtspdec.c │ │ ├── rtspenc.c │ │ ├── sapdec.c │ │ ├── sapenc.c │ │ ├── sauce.c │ │ ├── sauce.h │ │ ├── sdp.c │ │ ├── seek.c │ │ ├── seek.h │ │ ├── segafilm.c │ │ ├── sierravmd.c │ │ ├── siff.c │ │ ├── smacker.c │ │ ├── sol.c │ │ ├── sox.h │ │ ├── soxdec.c │ │ ├── soxenc.c │ │ ├── spdif.c │ │ ├── spdif.h │ │ ├── spdifdec.c │ │ ├── spdifenc.c │ │ ├── srtdec.c │ │ ├── swf.h │ │ ├── swfdec.c │ │ ├── swfenc.c │ │ ├── tcp.c │ │ ├── thp.c │ │ ├── tiertexseq.c │ │ ├── timefilter.c │ │ ├── timefilter.h │ │ ├── tmv.c │ │ ├── tta.c │ │ ├── tty.c │ │ ├── txd.c │ │ ├── udp.c │ │ ├── utils.c │ │ ├── vc1test.c │ │ ├── vc1testenc.c │ │ ├── version.h │ │ ├── voc.c │ │ ├── voc.h │ │ ├── vocdec.c │ │ ├── vocenc.c │ │ ├── vorbiscomment.c │ │ ├── vorbiscomment.h │ │ ├── vqf.c │ │ ├── wav.c │ │ ├── wc3movie.c │ │ ├── westwood.c │ │ ├── wtv.c │ │ ├── wv.c │ │ ├── xa.c │ │ ├── yop.c │ │ └── yuv4mpeg.c │ ├── libavutil │ │ ├── Makefile │ │ ├── adler32.c │ │ ├── adler32.h │ │ ├── aes.c │ │ ├── aes.h │ │ ├── arm │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── intmath.h │ │ │ ├── intreadwrite.h │ │ │ └── timer.h │ │ ├── attributes.h │ │ ├── avassert.h │ │ ├── avr32 │ │ │ ├── bswap.h │ │ │ └── intreadwrite.h │ │ ├── avstring.c │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── base64.c │ │ ├── base64.h │ │ ├── bfin │ │ │ ├── bswap.h │ │ │ └── timer.h │ │ ├── bswap.h │ │ ├── colorspace.h │ │ ├── common.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── crc.c │ │ ├── crc.h │ │ ├── crc_data.h │ │ ├── des.c │ │ ├── des.h │ │ ├── error.c │ │ ├── error.h │ │ ├── eval.c │ │ ├── eval.h │ │ ├── fifo.c │ │ ├── fifo.h │ │ ├── file.c │ │ ├── file.h │ │ ├── integer.c │ │ ├── integer.h │ │ ├── internal.h │ │ ├── intfloat_readwrite.c │ │ ├── intfloat_readwrite.h │ │ ├── intmath.h │ │ ├── intreadwrite.h │ │ ├── inverse.c │ │ ├── lfg.c │ │ ├── lfg.h │ │ ├── libavutil.v │ │ ├── libm.h │ │ ├── lls.c │ │ ├── lls.h │ │ ├── log.c │ │ ├── log.h │ │ ├── lzo.c │ │ ├── lzo.h │ │ ├── mathematics.c │ │ ├── mathematics.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── mem.c │ │ ├── mem.h │ │ ├── mips │ │ │ └── intreadwrite.h │ │ ├── opt.c │ │ ├── opt.h │ │ ├── pca.c │ │ ├── pca.h │ │ ├── pixdesc.c │ │ ├── pixdesc.h │ │ ├── pixfmt.h │ │ ├── ppc │ │ │ ├── cpu.c │ │ │ ├── intreadwrite.h │ │ │ └── timer.h │ │ ├── random_seed.c │ │ ├── random_seed.h │ │ ├── rational.c │ │ ├── rational.h │ │ ├── rc4.c │ │ ├── rc4.h │ │ ├── sh4 │ │ │ └── bswap.h │ │ ├── sha.c │ │ ├── sha.h │ │ ├── sha1.h │ │ ├── softfloat.c │ │ ├── softfloat.h │ │ ├── timer.h │ │ ├── tomi │ │ │ └── intreadwrite.h │ │ ├── tree.c │ │ ├── tree.h │ │ ├── utils.c │ │ ├── x86 │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── intmath.h │ │ │ ├── intreadwrite.h │ │ │ └── timer.h │ │ └── x86_cpu.h │ ├── libpostproc │ │ ├── Makefile │ │ ├── libpostproc.v │ │ ├── postprocess.c │ │ ├── postprocess.h │ │ ├── postprocess_altivec_template.c │ │ ├── postprocess_internal.h │ │ └── postprocess_template.c │ ├── libswscale │ │ ├── Makefile │ │ ├── bfin │ │ │ ├── internal_bfin.S │ │ │ ├── swscale_bfin.c │ │ │ └── yuv2rgb_bfin.c │ │ ├── colorspace-test.c │ │ ├── libswscale.v │ │ ├── mlib │ │ │ └── yuv2rgb_mlib.c │ │ ├── options.c │ │ ├── ppc │ │ │ ├── swscale_altivec_template.c │ │ │ └── yuv2rgb_altivec.c │ │ ├── rgb2rgb.c │ │ ├── rgb2rgb.h │ │ ├── rgb2rgb_template.c │ │ ├── sparc │ │ │ └── yuv2rgb_vis.c │ │ ├── swscale-test.c │ │ ├── swscale.c │ │ ├── swscale.h │ │ ├── swscale_internal.h │ │ ├── swscale_template.c │ │ ├── utils.c │ │ ├── x86 │ │ │ ├── yuv2rgb_mmx.c │ │ │ └── yuv2rgb_template.c │ │ └── yuv2rgb.c │ ├── patches │ │ ├── 0001-changed-allow-reading-of-growing-avi-files-ie-curren.patch │ │ ├── 0002-w32thread-add-logging.patch │ │ ├── 0003-asf-hacks.patch │ │ ├── 0004-support-seeking-in-nuv-files.patch │ │ ├── 0005-fixed-5585-Media-file-gets-played-twice.-we-assume-a.patch │ │ ├── 0006-added-probe-file-header-for-cdxa.patch │ │ ├── 0007-if-av_read_packet-returns-AVERROR_IO-we-are-done.-ff.patch │ │ ├── 0008-added-Ticket-7187-TV-Teletext-support-for-DVB-EBU-Te.patch │ │ ├── 0009-additional-HDMV-types-and-reg-descriptors.patch │ │ ├── 0010-don-t-reparse-PMT-unless-it-s-version-has-changed-re.patch │ │ ├── 0011-mingw-workaround.patch │ │ ├── 0012-dvdsub-hacks.patch │ │ ├── 0013-fixed-compile-with-VDPAU-header-versions-without-MPE.patch │ │ ├── 0014-changed-check-some-more-url_fseeks-in-asf-demuxer-to.patch │ │ ├── 0015-Fix-7956-Adds-DTS-detection-to-MOV-files-ffmpeg-issu.patch │ │ ├── 0016-changed-only-require-first-packet-to-be-known-for-al.patch │ │ ├── 0017-Don-t-assume-reading-more-frames-in-av_find_stream_i.patch │ │ ├── 0018-changed-don-t-override-file-duration-with-bitrate-du.patch │ │ ├── 0019-changed-check-for-seek-error-when-attempting-to-read.patch │ │ ├── 0020-fixed-wrong-fps-for-rmvb-files-patch-by-taxigps.patch │ │ ├── 0021-fixed-when-playing-mpegts-over-rtp-rtsp-sdp-lavf-mus.patch │ │ ├── 0022-don-t-hardcode-subtitle-colors-to-16.patch │ │ ├── 0023-improved-mpegts-seeking.-NEEDS-REVIEW.patch │ │ ├── 0024-get-accurate-estimate-from-the-PTSes.patch │ │ ├── 0025-include-stdint.h.patch │ │ ├── 0026-add-files-needed-for-xbmc-win32-build.patch │ │ ├── 0027-changed-check-return-value-of-seeks-to-avoid-messing.patch │ │ ├── 0028-fixed-if-lavc-s-mpeg2-decoder-was-asked-to-drop-a-fr.patch │ │ ├── 0029-fixed-if-container-doesn-t-contain-timestamps-for-al.patch │ │ ├── 0030-aacenc-add-recognized-profiles-array.patch │ │ ├── 0031-fixed-vp3-decoder-should-set-key_frame-field-of-AVFr.patch │ │ ├── 0032-changed-allow-8-second-skew-between-streams-in-mov-b.patch │ │ ├── 0033-fixed-memleak-in-mpegts-demuxer-on-some-malformed-mp.patch │ │ ├── 0034-fixed-dvd-still-frames-as-first-frame-caused-lavf-to.patch │ │ ├── 0035-Speed-up-mpegts-av_find_stream_info.patch │ │ ├── 0036-swscale-fix-build-with-enable-runtime-cpudetect-disa.patch │ │ ├── 0037-configure-check-yasm-nasm-for-working-pextrd-opcode.patch │ │ ├── 0038-rtsp-Don-t-store-RTSPStream-in-AVStream-priv_data.patch │ │ ├── 0039-spdifenc-fix-byte-order-on-big-endian-systems.patch │ │ ├── 0040-Add-our-MAX_STREAMS-hack-back-it-was-lost-after-the-.patch │ │ ├── 0041-lavf-update-ff_probe_input_buffer-documentation.patch │ │ ├── 0042-lavf-simplify-pb-parameter-of-ff_probe_input_buffer.patch │ │ ├── 0043-lavf-rename-ff_probe_input_buffer-to-make-it-public.patch │ │ ├── 0044-MMS-also-discover-streams-in-extended-stream-propert.patch │ │ ├── 0045-allow-customizing-shared-library-soname-name-with-ma.patch │ │ ├── 0046-os_support-fix-poll-implementation.patch │ │ ├── 0047-Backporting-ffmpeg-feature-to-parse-flv-fileposition.patch │ │ ├── 0048-Dont-mark-genereted-dummy-frame-as-keyframe.patch │ │ ├── 0049-Added-ability-to-enable-workaround-for-dxva2-decodin.patch │ │ ├── 0050-Patch-for-memory-leaks-in-DVB-subtitles-decoder.patch │ │ ├── 0051-dxva-mpeg2-Allocate-slices-array-dynamically-fixes-v.patch │ │ ├── 0052-dxva-mpeg2-speed-up-slice-allocation.patch │ │ ├── 0053-dxva-vc1-Take-BI-into-account-for-forward-and-backwa.patch │ │ ├── 0054-dxva-vc1-Pass-overlapping-transforms-hint.patch │ │ ├── 0055-dxva-h264-Fix-dxva-playback-of-streams-that-don-t-st.patch │ │ ├── 0056-Changed-format-string-td-not-supported-by-our-MingW-.patch │ │ ├── 0057-Fixes-neon-usage-under-iOS5.patch │ │ ├── 0058-fixed-seeks-in-mmsh.patch │ │ ├── 0059-fix-h264-decode-size.patch │ │ ├── 0060-DXVA-Handle-return-value-of-BeginFrame-better.patch │ │ ├── 0061-fix-vc1-vaapi-intel-sandy-bridge.patch │ │ ├── 0062-fixed-crash-in-ffmpeg-matroskadec-with-some-files-fi.patch │ │ ├── 0063-fixed-playing-mpegts-over-rtsp-caused-ffmpeg-to-read.patch │ │ ├── 0064-ffmpeg-add-missing-check-for-NULL-pointer.patch │ │ ├── 0065-changed-allow-yadif-deinterlacer-to-enable-and-disab.patch │ │ ├── 0066-changed-updated-yadif-patch-to-same-as-will-be-appli.patch │ │ ├── 0067-changed-updated-dxva-zigzag-workaround-for-ATI-based.patch │ │ ├── 0068-fixed-yadif-should-copy-frame-properties-of-second-f.patch │ │ ├── 0069-ffmpeg-silence-compiler-warnings.patch │ │ ├── 0070-matroskadec-use-correct-compression-parameters-for-c.patch │ │ ├── 0071-fixed-Typo.patch │ │ ├── 0072-h264-Use-mismatching-frame-numbers-in-fields-to-sync.patch │ │ ├── 0073-Don-t-fill-in-frame-gaps-with-copied-refs-after-flus.patch │ │ ├── 0074-vaapi-do-not-assert-on-value-read-from-input-bitstre.patch │ │ ├── 0075-fixed-playback-from-mmst-urls-would-halt-after-some-.patch │ │ ├── 0076-Fix-dvb-subtitle-decoding-when-display-segment-is-mi.patch │ │ ├── 0077-Change-yadif-to-not-use-out-of-picture-lines.-Fixes-.patch │ │ └── 0078-fixed-ffmpeg-build-with-gcc-4.7-on-x86.patch │ ├── subdir.mak │ ├── tests │ │ ├── audiogen.c │ │ ├── base64.c │ │ ├── codec-regression.sh │ │ ├── copy.regression.ref │ │ ├── copycooker.sh │ │ ├── fate-run.sh │ │ ├── fate-update.sh │ │ ├── fate.mak │ │ ├── fate.sh │ │ ├── fate │ │ │ ├── aac.mak │ │ │ ├── als.mak │ │ │ ├── fft.mak │ │ │ ├── h264.mak │ │ │ ├── mp3.mak │ │ │ ├── vorbis.mak │ │ │ └── vp8.mak │ │ ├── fate2.mak │ │ ├── ffserver-regression.sh │ │ ├── ffserver.conf │ │ ├── ffserver.regression.ref │ │ ├── lavf-regression.sh │ │ ├── lavfi-regression.sh │ │ ├── lena.pnm │ │ ├── md5.sh │ │ ├── ref │ │ │ ├── acodec │ │ │ │ ├── ac3_fixed │ │ │ │ ├── adpcm_ima_qt │ │ │ │ ├── adpcm_ima_wav │ │ │ │ ├── adpcm_ms │ │ │ │ ├── adpcm_swf │ │ │ │ ├── adpcm_yam │ │ │ │ ├── alac │ │ │ │ ├── flac │ │ │ │ ├── g726 │ │ │ │ ├── mp2 │ │ │ │ ├── pcm │ │ │ │ ├── wmav1 │ │ │ │ └── wmav2 │ │ │ ├── fate │ │ │ │ ├── 4xm-1 │ │ │ │ ├── 4xm-2 │ │ │ │ ├── 8bps │ │ │ │ ├── aac-demux │ │ │ │ ├── aasc │ │ │ │ ├── adpcm-ea-r2 │ │ │ │ ├── adpcm-ea-r3 │ │ │ │ ├── aea-demux │ │ │ │ ├── alg-mm │ │ │ │ ├── amv │ │ │ │ ├── ansi │ │ │ │ ├── armovie-escape124 │ │ │ │ ├── auravision │ │ │ │ ├── auravision-v2 │ │ │ │ ├── bethsoft-vid │ │ │ │ ├── bfi │ │ │ │ ├── bink-demux │ │ │ │ ├── bink-demux-video │ │ │ │ ├── caf │ │ │ │ ├── cdgraphics │ │ │ │ ├── cljr │ │ │ │ ├── corepng │ │ │ │ ├── creative-adpcm │ │ │ │ ├── creative-adpcm-8-2.6bit │ │ │ │ ├── creative-adpcm-8-2bit │ │ │ │ ├── creative-adpcm-8-4bit │ │ │ │ ├── creatureshock-avs │ │ │ │ ├── cryo-apc │ │ │ │ ├── cscd │ │ │ │ ├── cvid │ │ │ │ ├── cvid-palette │ │ │ │ ├── cyberia-c93 │ │ │ │ ├── cyuv │ │ │ │ ├── d-cinema-demux │ │ │ │ ├── delphine-cin │ │ │ │ ├── deluxepaint-anm │ │ │ │ ├── dpx │ │ │ │ ├── duck-dk3 │ │ │ │ ├── duck-dk4 │ │ │ │ ├── duck-tm2 │ │ │ │ ├── dxa-scummvm │ │ │ │ ├── ea-cdata │ │ │ │ ├── ea-cmv │ │ │ │ ├── ea-dct │ │ │ │ ├── ea-mad-adpcm-ea-r1 │ │ │ │ ├── ea-mad-pcm-planar │ │ │ │ ├── ea-tgq │ │ │ │ ├── ea-tgv-ima-ea-eacs │ │ │ │ ├── ea-tgv-ima-ea-sead │ │ │ │ ├── ea-tqi-adpcm │ │ │ │ ├── ea-vp60 │ │ │ │ ├── ea-vp61 │ │ │ │ ├── fax-g3 │ │ │ │ ├── fax-g3s │ │ │ │ ├── feeble-dxa │ │ │ │ ├── film-cvid-pcm-stereo-8bit │ │ │ │ ├── flic-af11-palette-change │ │ │ │ ├── flic-af12 │ │ │ │ ├── flic-magiccarpet │ │ │ │ ├── fraps-v0 │ │ │ │ ├── fraps-v1 │ │ │ │ ├── fraps-v2 │ │ │ │ ├── fraps-v3 │ │ │ │ ├── fraps-v4 │ │ │ │ ├── fraps-v5 │ │ │ │ ├── frwu │ │ │ │ ├── funcom-iss │ │ │ │ ├── g722dec-1 │ │ │ │ ├── gsm │ │ │ │ ├── gsm-ms │ │ │ │ ├── h264-conformance-aud_mw_e │ │ │ │ ├── h264-conformance-ba1_ft_c │ │ │ │ ├── h264-conformance-ba1_sony_d │ │ │ │ ├── h264-conformance-ba2_sony_f │ │ │ │ ├── h264-conformance-ba3_sva_c │ │ │ │ ├── h264-conformance-ba_mw_d │ │ │ │ ├── h264-conformance-bamq1_jvc_c │ │ │ │ ├── h264-conformance-bamq2_jvc_c │ │ │ │ ├── h264-conformance-banm_mw_d │ │ │ │ ├── h264-conformance-basqp1_sony_c │ │ │ │ ├── h264-conformance-caba1_sony_d │ │ │ │ ├── h264-conformance-caba1_sva_b │ │ │ │ ├── h264-conformance-caba2_sony_e │ │ │ │ ├── h264-conformance-caba2_sva_b │ │ │ │ ├── h264-conformance-caba3_sony_c │ │ │ │ ├── h264-conformance-caba3_sva_b │ │ │ │ ├── h264-conformance-caba3_toshiba_e │ │ │ │ ├── h264-conformance-cabac_mot_fld0_full │ │ │ │ ├── h264-conformance-cabac_mot_frm0_full │ │ │ │ ├── h264-conformance-cabac_mot_mbaff0_full │ │ │ │ ├── h264-conformance-cabac_mot_picaff0_full │ │ │ │ ├── h264-conformance-cabaci3_sony_b │ │ │ │ ├── h264-conformance-cabast3_sony_e │ │ │ │ ├── h264-conformance-cabastbr3_sony_b │ │ │ │ ├── h264-conformance-cabref3_sand_d │ │ │ │ ├── h264-conformance-cacqp3_sony_d │ │ │ │ ├── h264-conformance-cafi1_sva_c │ │ │ │ ├── h264-conformance-cama1_sony_c │ │ │ │ ├── h264-conformance-cama1_toshiba_b │ │ │ │ ├── h264-conformance-cama1_vtc_c │ │ │ │ ├── h264-conformance-cama2_vtc_b │ │ │ │ ├── h264-conformance-cama3_sand_e │ │ │ │ ├── h264-conformance-cama3_vtc_b │ │ │ │ ├── h264-conformance-camaci3_sony_c │ │ │ │ ├── h264-conformance-camanl1_toshiba_b │ │ │ │ ├── h264-conformance-camanl2_toshiba_b │ │ │ │ ├── h264-conformance-camanl3_sand_e │ │ │ │ ├── h264-conformance-camasl3_sony_b │ │ │ │ ├── h264-conformance-camp_mot_mbaff_l30 │ │ │ │ ├── h264-conformance-camp_mot_mbaff_l31 │ │ │ │ ├── h264-conformance-canl1_sony_e │ │ │ │ ├── h264-conformance-canl1_sva_b │ │ │ │ ├── h264-conformance-canl1_toshiba_g │ │ │ │ ├── h264-conformance-canl2_sony_e │ │ │ │ ├── h264-conformance-canl2_sva_b │ │ │ │ ├── h264-conformance-canl3_sony_c │ │ │ │ ├── h264-conformance-canl3_sva_b │ │ │ │ ├── h264-conformance-canl4_sva_b │ │ │ │ ├── h264-conformance-canlma2_sony_c │ │ │ │ ├── h264-conformance-canlma3_sony_c │ │ │ │ ├── h264-conformance-capa1_toshiba_b │ │ │ │ ├── h264-conformance-capama3_sand_f │ │ │ │ ├── h264-conformance-capcm1_sand_e │ │ │ │ ├── h264-conformance-capcmnl1_sand_e │ │ │ │ ├── h264-conformance-capm3_sony_d │ │ │ │ ├── h264-conformance-caqp1_sony_b │ │ │ │ ├── h264-conformance-cavlc_mot_fld0_full_b │ │ │ │ ├── h264-conformance-cavlc_mot_frm0_full_b │ │ │ │ ├── h264-conformance-cavlc_mot_mbaff0_full_b │ │ │ │ ├── h264-conformance-cavlc_mot_picaff0_full_b │ │ │ │ ├── h264-conformance-cawp1_toshiba_e │ │ │ │ ├── h264-conformance-cawp5_toshiba_e │ │ │ │ ├── h264-conformance-ci1_ft_b │ │ │ │ ├── h264-conformance-ci_mw_d │ │ │ │ ├── h264-conformance-cvbs3_sony_c │ │ │ │ ├── h264-conformance-cvcanlma2_sony_c │ │ │ │ ├── h264-conformance-cvfi1_sony_d │ │ │ │ ├── h264-conformance-cvfi1_sva_c │ │ │ │ ├── h264-conformance-cvfi2_sony_h │ │ │ │ ├── h264-conformance-cvfi2_sva_c │ │ │ │ ├── h264-conformance-cvma1_sony_d │ │ │ │ ├── h264-conformance-cvma1_toshiba_b │ │ │ │ ├── h264-conformance-cvmanl1_toshiba_b │ │ │ │ ├── h264-conformance-cvmanl2_toshiba_b │ │ │ │ ├── h264-conformance-cvmapaqp3_sony_e │ │ │ │ ├── h264-conformance-cvmaqp2_sony_g │ │ │ │ ├── h264-conformance-cvmaqp3_sony_d │ │ │ │ ├── h264-conformance-cvmp_mot_fld_l30_b │ │ │ │ ├── h264-conformance-cvmp_mot_frm_l31_b │ │ │ │ ├── h264-conformance-cvnlfi1_sony_c │ │ │ │ ├── h264-conformance-cvnlfi2_sony_h │ │ │ │ ├── h264-conformance-cvpa1_toshiba_b │ │ │ │ ├── h264-conformance-cvpcmnl1_sva_c │ │ │ │ ├── h264-conformance-cvpcmnl2_sva_c │ │ │ │ ├── h264-conformance-cvwp1_toshiba_e │ │ │ │ ├── h264-conformance-cvwp2_toshiba_e │ │ │ │ ├── h264-conformance-cvwp3_toshiba_e │ │ │ │ ├── h264-conformance-cvwp5_toshiba_e │ │ │ │ ├── h264-conformance-fi1_sony_e │ │ │ │ ├── h264-conformance-frext-alphaconformanceg │ │ │ │ ├── h264-conformance-frext-bcrm_freh10 │ │ │ │ ├── h264-conformance-frext-brcm_freh11 │ │ │ │ ├── h264-conformance-frext-brcm_freh3 │ │ │ │ ├── h264-conformance-frext-brcm_freh4 │ │ │ │ ├── h264-conformance-frext-brcm_freh5 │ │ │ │ ├── h264-conformance-frext-brcm_freh8 │ │ │ │ ├── h264-conformance-frext-brcm_freh9 │ │ │ │ ├── h264-conformance-frext-freh12_b │ │ │ │ ├── h264-conformance-frext-freh1_b │ │ │ │ ├── h264-conformance-frext-freh2_b │ │ │ │ ├── h264-conformance-frext-freh6 │ │ │ │ ├── h264-conformance-frext-freh7_b │ │ │ │ ├── h264-conformance-frext-frext01_jvc_d │ │ │ │ ├── h264-conformance-frext-frext02_jvc_c │ │ │ │ ├── h264-conformance-frext-frext1_panasonic_c │ │ │ │ ├── h264-conformance-frext-frext2_panasonic_b │ │ │ │ ├── h264-conformance-frext-frext3_panasonic_d │ │ │ │ ├── h264-conformance-frext-frext4_panasonic_a │ │ │ │ ├── h264-conformance-frext-frext_mmco4_sony_b │ │ │ │ ├── h264-conformance-frext-hcaff1_hhi_b │ │ │ │ ├── h264-conformance-frext-hcafr1_hhi_c │ │ │ │ ├── h264-conformance-frext-hcafr2_hhi_a │ │ │ │ ├── h264-conformance-frext-hcafr3_hhi_a │ │ │ │ ├── h264-conformance-frext-hcafr4_hhi_a │ │ │ │ ├── h264-conformance-frext-hcamff1_hhi_b │ │ │ │ ├── h264-conformance-frext-hpca_brcm_c │ │ │ │ ├── h264-conformance-frext-hpcadq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcafl_bcrm_c │ │ │ │ ├── h264-conformance-frext-hpcaflnl_bcrm_c │ │ │ │ ├── h264-conformance-frext-hpcalq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcamapalq_bcrm_b │ │ │ │ ├── h264-conformance-frext-hpcamolq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcanl_brcm_c │ │ │ │ ├── h264-conformance-frext-hpcaq2lq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcv_brcm_a │ │ │ │ ├── h264-conformance-frext-hpcvfl_bcrm_a │ │ │ │ ├── h264-conformance-frext-hpcvflnl_bcrm_a │ │ │ │ ├── h264-conformance-frext-hpcvmolq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcvnl_brcm_a │ │ │ │ ├── h264-conformance-hcbp2_hhi_a │ │ │ │ ├── h264-conformance-hcmp1_hhi_a │ │ │ │ ├── h264-conformance-ls_sva_d │ │ │ │ ├── h264-conformance-midr_mw_d │ │ │ │ ├── h264-conformance-mps_mw_a │ │ │ │ ├── h264-conformance-mr1_bt_a │ │ │ │ ├── h264-conformance-mr1_mw_a │ │ │ │ ├── h264-conformance-mr2_mw_a │ │ │ │ ├── h264-conformance-mr2_tandberg_e │ │ │ │ ├── h264-conformance-mr3_tandberg_b │ │ │ │ ├── h264-conformance-mr4_tandberg_c │ │ │ │ ├── h264-conformance-mr5_tandberg_c │ │ │ │ ├── h264-conformance-mr6_bt_b │ │ │ │ ├── h264-conformance-mr7_bt_b │ │ │ │ ├── h264-conformance-mr8_bt_b │ │ │ │ ├── h264-conformance-mr9_bt_b │ │ │ │ ├── h264-conformance-mv1_brcm_d │ │ │ │ ├── h264-conformance-nl1_sony_d │ │ │ │ ├── h264-conformance-nl2_sony_h │ │ │ │ ├── h264-conformance-nl3_sva_e │ │ │ │ ├── h264-conformance-nlmq1_jvc_c │ │ │ │ ├── h264-conformance-nlmq2_jvc_c │ │ │ │ ├── h264-conformance-nrf_mw_e │ │ │ │ ├── h264-conformance-sharp_mp_field_1_b │ │ │ │ ├── h264-conformance-sharp_mp_field_2_b │ │ │ │ ├── h264-conformance-sharp_mp_field_3_b │ │ │ │ ├── h264-conformance-sharp_mp_paff_1r2 │ │ │ │ ├── h264-conformance-sharp_mp_paff_2r │ │ │ │ ├── h264-conformance-sl1_sva_b │ │ │ │ ├── h264-conformance-sva_ba1_b │ │ │ │ ├── h264-conformance-sva_ba2_d │ │ │ │ ├── h264-conformance-sva_base_b │ │ │ │ ├── h264-conformance-sva_cl1_e │ │ │ │ ├── h264-conformance-sva_fm1_e │ │ │ │ ├── h264-conformance-sva_nl1_b │ │ │ │ ├── h264-conformance-sva_nl2_e │ │ │ │ ├── h264-extreme-plane-pred │ │ │ │ ├── h264-interlace-crop │ │ │ │ ├── h264-lossless │ │ │ │ ├── id-cin-video │ │ │ │ ├── idroq-video-dpcm │ │ │ │ ├── idroq-video-encode │ │ │ │ ├── iff-byterun1 │ │ │ │ ├── iff-fibonacci │ │ │ │ ├── iff-ilbm │ │ │ │ ├── iff-pcm │ │ │ │ ├── indeo2 │ │ │ │ ├── indeo3 │ │ │ │ ├── indeo5 │ │ │ │ ├── interplay-mve-16bit │ │ │ │ ├── interplay-mve-8bit │ │ │ │ ├── iv8-demux │ │ │ │ ├── kmvc │ │ │ │ ├── lmlm4-demux │ │ │ │ ├── loco-rgb │ │ │ │ ├── loco-yuy2 │ │ │ │ ├── lossless-appleaudio │ │ │ │ ├── lossless-meridianaudio │ │ │ │ ├── lossless-monkeysaudio │ │ │ │ ├── lossless-shortenaudio │ │ │ │ ├── lossless-tta │ │ │ │ ├── lossless-wavpackaudio │ │ │ │ ├── maxis-xa │ │ │ │ ├── mimic │ │ │ │ ├── mjpegb │ │ │ │ ├── motionpixels │ │ │ │ ├── mpc7-demux │ │ │ │ ├── mpc8-demux │ │ │ │ ├── mpeg2-field-enc │ │ │ │ ├── mpeg4-als-conformance-00 │ │ │ │ ├── mpeg4-als-conformance-01 │ │ │ │ ├── mpeg4-als-conformance-02 │ │ │ │ ├── mpeg4-als-conformance-03 │ │ │ │ ├── mpeg4-als-conformance-04 │ │ │ │ ├── mpeg4-als-conformance-05 │ │ │ │ ├── msmpeg4v1 │ │ │ │ ├── msrle-8bit │ │ │ │ ├── msvideo1-16bit │ │ │ │ ├── msvideo1-8bit │ │ │ │ ├── mszh │ │ │ │ ├── mtv │ │ │ │ ├── mxf-demux │ │ │ │ ├── nc-demux │ │ │ │ ├── nsv-demux │ │ │ │ ├── nuv │ │ │ │ ├── oma-demux │ │ │ │ ├── pcm_dvd │ │ │ │ ├── pictor │ │ │ │ ├── psx-str │ │ │ │ ├── psx-str-v3 │ │ │ │ ├── ptx │ │ │ │ ├── pva-demux │ │ │ │ ├── qcp-demux │ │ │ │ ├── qpeg │ │ │ │ ├── qt-alaw-mono │ │ │ │ ├── qt-alaw-stereo │ │ │ │ ├── qt-ima4-mono │ │ │ │ ├── qt-ima4-stereo │ │ │ │ ├── qt-mac3-mono │ │ │ │ ├── qt-mac3-stereo │ │ │ │ ├── qt-mac6-mono │ │ │ │ ├── qt-mac6-stereo │ │ │ │ ├── qt-msadpcm-stereo │ │ │ │ ├── qt-msimaadpcm-stereo │ │ │ │ ├── qt-rawpcm-16bit-stereo-signed-be │ │ │ │ ├── qt-rawpcm-16bit-stereo-signed-le │ │ │ │ ├── qt-rawpcm-8bit-mono-unsigned │ │ │ │ ├── qt-rawpcm-8bit-stereo-unsigned │ │ │ │ ├── qt-ulaw-mono │ │ │ │ ├── qt-ulaw-stereo │ │ │ │ ├── qtrle-16bit │ │ │ │ ├── qtrle-1bit │ │ │ │ ├── qtrle-24bit │ │ │ │ ├── qtrle-2bit │ │ │ │ ├── qtrle-32bit │ │ │ │ ├── qtrle-4bit │ │ │ │ ├── qtrle-8bit │ │ │ │ ├── quickdraw │ │ │ │ ├── real-14_4 │ │ │ │ ├── real-rv40 │ │ │ │ ├── redcode-demux │ │ │ │ ├── rl2 │ │ │ │ ├── rpza │ │ │ │ ├── rv30 │ │ │ │ ├── sha │ │ │ │ ├── sierra-audio │ │ │ │ ├── sierra-vmd │ │ │ │ ├── siff │ │ │ │ ├── smacker │ │ │ │ ├── smc │ │ │ │ ├── sp5x │ │ │ │ ├── sub-srt │ │ │ │ ├── sunraster-1bit-raw │ │ │ │ ├── sunraster-1bit-rle │ │ │ │ ├── sunraster-24bit-raw │ │ │ │ ├── sunraster-24bit-rle │ │ │ │ ├── sunraster-8bit-raw │ │ │ │ ├── sunraster-8bit-rle │ │ │ │ ├── svq1 │ │ │ │ ├── svq3 │ │ │ │ ├── thp-mjpeg-adpcm │ │ │ │ ├── tiertex-seq │ │ │ │ ├── tmv │ │ │ │ ├── truemotion1-15 │ │ │ │ ├── truemotion1-24 │ │ │ │ ├── tscc-15bit │ │ │ │ ├── tscc-32bit │ │ │ │ ├── txd-16bpp │ │ │ │ ├── txd-pal8 │ │ │ │ ├── ulti │ │ │ │ ├── v210 │ │ │ │ ├── vc1 │ │ │ │ ├── vcr1 │ │ │ │ ├── video-xl │ │ │ │ ├── vmnc-16bit │ │ │ │ ├── vmnc-32bit │ │ │ │ ├── vp3 │ │ │ │ ├── vp5 │ │ │ │ ├── vp6a │ │ │ │ ├── vp6f │ │ │ │ ├── vp8-sign-bias │ │ │ │ ├── vp8-test-vector-001 │ │ │ │ ├── vp8-test-vector-002 │ │ │ │ ├── vp8-test-vector-003 │ │ │ │ ├── vp8-test-vector-004 │ │ │ │ ├── vp8-test-vector-005 │ │ │ │ ├── vp8-test-vector-006 │ │ │ │ ├── vp8-test-vector-007 │ │ │ │ ├── vp8-test-vector-008 │ │ │ │ ├── vp8-test-vector-009 │ │ │ │ ├── vp8-test-vector-010 │ │ │ │ ├── vp8-test-vector-011 │ │ │ │ ├── vp8-test-vector-012 │ │ │ │ ├── vp8-test-vector-013 │ │ │ │ ├── vp8-test-vector-014 │ │ │ │ ├── vp8-test-vector-015 │ │ │ │ ├── vp8-test-vector-016 │ │ │ │ ├── vp8-test-vector-017 │ │ │ │ ├── vqa-cc │ │ │ │ ├── vqf-demux │ │ │ │ ├── w64 │ │ │ │ ├── wc3movie-xan │ │ │ │ ├── westwood-aud │ │ │ │ ├── wmv8-drm │ │ │ │ ├── wmv8-drm-nodec │ │ │ │ ├── wnv1 │ │ │ │ ├── ws_snd │ │ │ │ ├── xan-dpcm │ │ │ │ ├── yop │ │ │ │ ├── zlib │ │ │ │ ├── zmbv-15bit │ │ │ │ ├── zmbv-16bit │ │ │ │ ├── zmbv-32bit │ │ │ │ └── zmbv-8bit │ │ │ ├── lavf │ │ │ │ ├── aiff │ │ │ │ ├── alaw │ │ │ │ ├── asf │ │ │ │ ├── au │ │ │ │ ├── avi │ │ │ │ ├── bmp │ │ │ │ ├── dv_fmt │ │ │ │ ├── ffm │ │ │ │ ├── flv_fmt │ │ │ │ ├── gif │ │ │ │ ├── gxf │ │ │ │ ├── jpg │ │ │ │ ├── mkv │ │ │ │ ├── mmf │ │ │ │ ├── mov │ │ │ │ ├── mpg │ │ │ │ ├── mulaw │ │ │ │ ├── mxf │ │ │ │ ├── nut │ │ │ │ ├── ogg │ │ │ │ ├── pbmpipe │ │ │ │ ├── pcx │ │ │ │ ├── pgm │ │ │ │ ├── pgmpipe │ │ │ │ ├── pixfmt │ │ │ │ ├── png │ │ │ │ ├── ppm │ │ │ │ ├── ppmpipe │ │ │ │ ├── rm │ │ │ │ ├── sgi │ │ │ │ ├── swf │ │ │ │ ├── tga │ │ │ │ ├── tiff │ │ │ │ ├── ts │ │ │ │ ├── voc │ │ │ │ ├── voc_s16 │ │ │ │ ├── wav │ │ │ │ └── yuv4mpeg │ │ │ ├── lavfi │ │ │ │ ├── crop │ │ │ │ ├── crop_scale │ │ │ │ ├── crop_scale_vflip │ │ │ │ ├── crop_vflip │ │ │ │ ├── null │ │ │ │ ├── pixdesc_be │ │ │ │ ├── pixdesc_le │ │ │ │ ├── pixfmts_copy_le │ │ │ │ ├── pixfmts_crop_le │ │ │ │ ├── pixfmts_hflip_le │ │ │ │ ├── pixfmts_null_le │ │ │ │ ├── pixfmts_pad_le │ │ │ │ ├── pixfmts_scale_le │ │ │ │ ├── pixfmts_vflip_le │ │ │ │ ├── scale200 │ │ │ │ ├── scale500 │ │ │ │ ├── vflip │ │ │ │ ├── vflip_crop │ │ │ │ └── vflip_vflip │ │ │ ├── seek │ │ │ │ ├── ac3_rm │ │ │ │ ├── adpcm_ima_wav │ │ │ │ ├── adpcm_ms_wav │ │ │ │ ├── adpcm_qt_aiff │ │ │ │ ├── adpcm_swf_flv │ │ │ │ ├── adpcm_yam_wav │ │ │ │ ├── alac_m4a │ │ │ │ ├── asv1_avi │ │ │ │ ├── asv2_avi │ │ │ │ ├── dnxhd_1080i_mov │ │ │ │ ├── dnxhd_720p_dnxhd │ │ │ │ ├── dnxhd_720p_rd_dnxhd │ │ │ │ ├── dv411_dv │ │ │ │ ├── dv50_dv │ │ │ │ ├── dv_dv │ │ │ │ ├── error_mpeg4_adv_avi │ │ │ │ ├── ffv1_avi │ │ │ │ ├── flac_flac │ │ │ │ ├── flashsv_flv │ │ │ │ ├── flv_flv │ │ │ │ ├── g726_wav │ │ │ │ ├── h261_avi │ │ │ │ ├── h263_avi │ │ │ │ ├── h263p_avi │ │ │ │ ├── huffyuv_avi │ │ │ │ ├── image_bmp │ │ │ │ ├── image_jpg │ │ │ │ ├── image_pcx │ │ │ │ ├── image_pgm │ │ │ │ ├── image_ppm │ │ │ │ ├── image_sgi │ │ │ │ ├── image_tga │ │ │ │ ├── image_tiff │ │ │ │ ├── jpegls_avi │ │ │ │ ├── lavf_aif │ │ │ │ ├── lavf_al │ │ │ │ ├── lavf_asf │ │ │ │ ├── lavf_au │ │ │ │ ├── lavf_avi │ │ │ │ ├── lavf_dv │ │ │ │ ├── lavf_ffm │ │ │ │ ├── lavf_flv │ │ │ │ ├── lavf_gif │ │ │ │ ├── lavf_gxf │ │ │ │ ├── lavf_mkv │ │ │ │ ├── lavf_mmf │ │ │ │ ├── lavf_mov │ │ │ │ ├── lavf_mpg │ │ │ │ ├── lavf_mxf │ │ │ │ ├── lavf_mxf_d10 │ │ │ │ ├── lavf_nut │ │ │ │ ├── lavf_ogg │ │ │ │ ├── lavf_rm │ │ │ │ ├── lavf_swf │ │ │ │ ├── lavf_ts │ │ │ │ ├── lavf_ul │ │ │ │ ├── lavf_voc │ │ │ │ ├── lavf_wav │ │ │ │ ├── lavf_y4m │ │ │ │ ├── ljpeg_avi │ │ │ │ ├── mjpeg_avi │ │ │ │ ├── mp2_mp2 │ │ │ │ ├── mpeg1_mpg │ │ │ │ ├── mpeg1b_mpg │ │ │ │ ├── mpeg2_422_mpg │ │ │ │ ├── mpeg2_mpg │ │ │ │ ├── mpeg2i_mpg │ │ │ │ ├── mpeg2ivlc_qprd_mpg │ │ │ │ ├── mpeg2reuse_mpg │ │ │ │ ├── mpeg2thread_mpg │ │ │ │ ├── mpeg2threadivlc_mpg │ │ │ │ ├── mpeg4_Q_avi │ │ │ │ ├── mpeg4_adap_avi │ │ │ │ ├── mpeg4_adv_avi │ │ │ │ ├── mpeg4_nr_avi │ │ │ │ ├── mpeg4_qprd_avi │ │ │ │ ├── mpeg4_rc_avi │ │ │ │ ├── mpeg4_thread_avi │ │ │ │ ├── msmpeg4_avi │ │ │ │ ├── msmpeg4v2_avi │ │ │ │ ├── odivx_mp4 │ │ │ │ ├── pbmpipe_pbm │ │ │ │ ├── pcm_alaw_wav │ │ │ │ ├── pcm_f32be_au │ │ │ │ ├── pcm_f32le_wav │ │ │ │ ├── pcm_f64be_au │ │ │ │ ├── pcm_f64le_wav │ │ │ │ ├── pcm_mulaw_wav │ │ │ │ ├── pcm_s16be_mkv │ │ │ │ ├── pcm_s16be_mov │ │ │ │ ├── pcm_s16le_mkv │ │ │ │ ├── pcm_s16le_wav │ │ │ │ ├── pcm_s24be_mov │ │ │ │ ├── pcm_s24daud_302 │ │ │ │ ├── pcm_s24le_wav │ │ │ │ ├── pcm_s32be_mov │ │ │ │ ├── pcm_s32le_wav │ │ │ │ ├── pcm_s8_mov │ │ │ │ ├── pcm_u8_wav │ │ │ │ ├── pcm_zork_wav │ │ │ │ ├── pgmpipe_pgm │ │ │ │ ├── ppmpipe_ppm │ │ │ │ ├── rgb_avi │ │ │ │ ├── roqav_roq │ │ │ │ ├── rv10_rm │ │ │ │ ├── rv20_rm │ │ │ │ ├── snow53_avi │ │ │ │ ├── snow_avi │ │ │ │ ├── svq1_mov │ │ │ │ ├── wmav1_asf │ │ │ │ ├── wmav2_asf │ │ │ │ ├── wmv1_avi │ │ │ │ ├── wmv2_avi │ │ │ │ └── yuv_avi │ │ │ ├── vsynth1 │ │ │ │ ├── asv1 │ │ │ │ ├── asv2 │ │ │ │ ├── dnxhd_1080i │ │ │ │ ├── dnxhd_720p │ │ │ │ ├── dnxhd_720p_rd │ │ │ │ ├── dv │ │ │ │ ├── dv50 │ │ │ │ ├── error │ │ │ │ ├── ffv1 │ │ │ │ ├── flashsv │ │ │ │ ├── flv │ │ │ │ ├── h261 │ │ │ │ ├── h263 │ │ │ │ ├── h263p │ │ │ │ ├── huffyuv │ │ │ │ ├── jpegls │ │ │ │ ├── ljpeg │ │ │ │ ├── mjpeg │ │ │ │ ├── mpeg │ │ │ │ ├── mpeg1b │ │ │ │ ├── mpeg2 │ │ │ │ ├── mpeg2thread │ │ │ │ ├── mpeg4 │ │ │ │ ├── mpeg4adv │ │ │ │ ├── mpeg4nr │ │ │ │ ├── mpeg4thread │ │ │ │ ├── msmpeg4 │ │ │ │ ├── msmpeg4v2 │ │ │ │ ├── qtrle │ │ │ │ ├── rc │ │ │ │ ├── rgb │ │ │ │ ├── roq │ │ │ │ ├── rv10 │ │ │ │ ├── rv20 │ │ │ │ ├── snow │ │ │ │ ├── snowll │ │ │ │ ├── svq1 │ │ │ │ ├── wmv1 │ │ │ │ ├── wmv2 │ │ │ │ └── yuv │ │ │ └── vsynth2 │ │ │ │ ├── asv1 │ │ │ │ ├── asv2 │ │ │ │ ├── dnxhd_1080i │ │ │ │ ├── dnxhd_720p │ │ │ │ ├── dnxhd_720p_rd │ │ │ │ ├── dv │ │ │ │ ├── dv50 │ │ │ │ ├── error │ │ │ │ ├── ffv1 │ │ │ │ ├── flashsv │ │ │ │ ├── flv │ │ │ │ ├── h261 │ │ │ │ ├── h263 │ │ │ │ ├── h263p │ │ │ │ ├── huffyuv │ │ │ │ ├── jpegls │ │ │ │ ├── ljpeg │ │ │ │ ├── mjpeg │ │ │ │ ├── mpeg │ │ │ │ ├── mpeg1b │ │ │ │ ├── mpeg2 │ │ │ │ ├── mpeg2thread │ │ │ │ ├── mpeg4 │ │ │ │ ├── mpeg4adv │ │ │ │ ├── mpeg4nr │ │ │ │ ├── mpeg4thread │ │ │ │ ├── msmpeg4 │ │ │ │ ├── msmpeg4v2 │ │ │ │ ├── qtrle │ │ │ │ ├── rc │ │ │ │ ├── rgb │ │ │ │ ├── roq │ │ │ │ ├── rv10 │ │ │ │ ├── rv20 │ │ │ │ ├── snow │ │ │ │ ├── snowll │ │ │ │ ├── svq1 │ │ │ │ ├── wmv1 │ │ │ │ ├── wmv2 │ │ │ │ └── yuv │ │ ├── regression-funcs.sh │ │ ├── rotozoom.c │ │ ├── seek_test.c │ │ ├── tiny_psnr.c │ │ └── videogen.c │ ├── tools │ │ ├── build_avopt │ │ ├── clean-diff │ │ ├── cws2fws.c │ │ ├── graph2dot.c │ │ ├── jauche_sortierer.sh │ │ ├── lavfi-showfiltfmts.c │ │ ├── patcheck │ │ ├── pktdumper.c │ │ ├── probetest.c │ │ ├── qt-faststart.c │ │ ├── trasher.c │ │ └── unwrap-diff │ └── version.sh ├── freetype │ ├── ChangeLog │ ├── ChangeLog.20 │ ├── ChangeLog.21 │ ├── ChangeLog.22 │ ├── Jamfile │ ├── Jamrules │ ├── Makefile │ ├── README │ ├── README.CVS │ ├── autogen.sh │ ├── builds │ │ ├── amiga │ │ │ ├── README │ │ │ ├── include │ │ │ │ └── freetype │ │ │ │ │ └── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ └── ftmodule.h │ │ │ ├── makefile │ │ │ ├── makefile.os4 │ │ │ ├── smakefile │ │ │ └── src │ │ │ │ └── base │ │ │ │ ├── ftdebug.c │ │ │ │ └── ftsystem.c │ │ ├── ansi │ │ │ ├── ansi-def.mk │ │ │ └── ansi.mk │ │ ├── atari │ │ │ ├── ATARI.H │ │ │ ├── FNames.SIC │ │ │ ├── FREETYPE.PRJ │ │ │ └── README.TXT │ │ ├── beos │ │ │ ├── beos-def.mk │ │ │ ├── beos.mk │ │ │ └── detect.mk │ │ ├── compiler │ │ │ ├── ansi-cc.mk │ │ │ ├── bcc-dev.mk │ │ │ ├── bcc.mk │ │ │ ├── emx.mk │ │ │ ├── gcc-dev.mk │ │ │ ├── gcc.mk │ │ │ ├── intelc.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── visualage.mk │ │ │ ├── visualc.mk │ │ │ ├── watcom.mk │ │ │ └── win-lcc.mk │ │ ├── detect.mk │ │ ├── dos │ │ │ ├── detect.mk │ │ │ ├── dos-def.mk │ │ │ ├── dos-emx.mk │ │ │ ├── dos-gcc.mk │ │ │ └── dos-wat.mk │ │ ├── exports.mk │ │ ├── freetype.mk │ │ ├── link_dos.mk │ │ ├── link_std.mk │ │ ├── mac │ │ │ ├── FreeType.m68k_cfm.make.txt │ │ │ ├── FreeType.m68k_far.make.txt │ │ │ ├── FreeType.ppc_carbon.make.txt │ │ │ ├── FreeType.ppc_classic.make.txt │ │ │ ├── README │ │ │ ├── ascii2mpw.py │ │ │ ├── ftlib.prj.xml │ │ │ └── ftmac.c │ │ ├── modules.mk │ │ ├── newline │ │ ├── os2 │ │ │ ├── detect.mk │ │ │ ├── os2-def.mk │ │ │ ├── os2-dev.mk │ │ │ └── os2-gcc.mk │ │ ├── symbian │ │ │ ├── bld.inf │ │ │ └── freetype.mmp │ │ ├── toplevel.mk │ │ ├── unix │ │ │ ├── aclocal.m4 │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── configure.raw │ │ │ ├── detect.mk │ │ │ ├── freetype-config.in │ │ │ ├── freetype2.in │ │ │ ├── freetype2.m4 │ │ │ ├── ft-munmap.m4 │ │ │ ├── ft2unix.h │ │ │ ├── ftconfig.in │ │ │ ├── ftsystem.c │ │ │ ├── install-sh │ │ │ ├── install.mk │ │ │ ├── ltmain.sh │ │ │ ├── mkinstalldirs │ │ │ ├── unix-cc.in │ │ │ ├── unix-def.in │ │ │ ├── unix-dev.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── unix.mk │ │ │ └── unixddef.mk │ │ ├── vms │ │ │ ├── ftconfig.h │ │ │ └── ftsystem.c │ │ ├── win32 │ │ │ ├── detect.mk │ │ │ ├── ftdebug.c │ │ │ ├── vc2005 │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ ├── vc2008 │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ ├── visualc │ │ │ │ ├── freetype.dsp │ │ │ │ ├── freetype.dsw │ │ │ │ └── index.html │ │ │ ├── vs2010 │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcxproj │ │ │ │ ├── freetype.vcxproj.filters │ │ │ │ └── index.html │ │ │ ├── w32-bcc.mk │ │ │ ├── w32-bccd.mk │ │ │ ├── w32-dev.mk │ │ │ ├── w32-gcc.mk │ │ │ ├── w32-icc.mk │ │ │ ├── w32-intl.mk │ │ │ ├── w32-lcc.mk │ │ │ ├── w32-mingw32.mk │ │ │ ├── w32-vcc.mk │ │ │ ├── w32-wat.mk │ │ │ └── win32-def.mk │ │ └── wince │ │ │ ├── ftdebug.c │ │ │ ├── vc2005-ce │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ │ └── vc2008-ce │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ ├── configure │ ├── devel │ │ ├── ft2build.h │ │ └── ftoption.h │ ├── docs │ │ ├── CHANGES │ │ ├── CUSTOMIZE │ │ ├── DEBUG │ │ ├── FTL.TXT │ │ ├── GPL.TXT │ │ ├── INSTALL │ │ ├── INSTALL.ANY │ │ ├── INSTALL.CROSS │ │ ├── INSTALL.GNU │ │ ├── INSTALL.MAC │ │ ├── INSTALL.UNIX │ │ ├── INSTALL.VMS │ │ ├── LICENSE.TXT │ │ ├── MAKEPP │ │ ├── PATENTS │ │ ├── PROBLEMS │ │ ├── TODO │ │ ├── TRUETYPE │ │ ├── UPGRADE.UNIX │ │ ├── VERSION.DLL │ │ ├── formats.txt │ │ ├── raster.txt │ │ ├── reference │ │ │ ├── README │ │ │ ├── ft2-base_interface.html │ │ │ ├── ft2-basic_types.html │ │ │ ├── ft2-bdf_fonts.html │ │ │ ├── ft2-bitmap_handling.html │ │ │ ├── ft2-cache_subsystem.html │ │ │ ├── ft2-cid_fonts.html │ │ │ ├── ft2-computations.html │ │ │ ├── ft2-font_formats.html │ │ │ ├── ft2-gasp_table.html │ │ │ ├── ft2-glyph_management.html │ │ │ ├── ft2-glyph_stroker.html │ │ │ ├── ft2-glyph_variants.html │ │ │ ├── ft2-gx_validation.html │ │ │ ├── ft2-gzip.html │ │ │ ├── ft2-header_file_macros.html │ │ │ ├── ft2-incremental.html │ │ │ ├── ft2-index.html │ │ │ ├── ft2-lcd_filtering.html │ │ │ ├── ft2-list_processing.html │ │ │ ├── ft2-lzw.html │ │ │ ├── ft2-mac_specific.html │ │ │ ├── ft2-module_management.html │ │ │ ├── ft2-multiple_masters.html │ │ │ ├── ft2-ot_validation.html │ │ │ ├── ft2-outline_processing.html │ │ │ ├── ft2-pfr_fonts.html │ │ │ ├── ft2-quick_advance.html │ │ │ ├── ft2-raster.html │ │ │ ├── ft2-sfnt_names.html │ │ │ ├── ft2-sizes_management.html │ │ │ ├── ft2-system_interface.html │ │ │ ├── ft2-toc.html │ │ │ ├── ft2-truetype_engine.html │ │ │ ├── ft2-truetype_tables.html │ │ │ ├── ft2-type1_tables.html │ │ │ ├── ft2-user_allocation.html │ │ │ ├── ft2-version.html │ │ │ └── ft2-winfnt_fonts.html │ │ └── release │ ├── include │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftcache.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── ftxf86.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.h │ │ │ │ ├── pcftypes.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ └── svxf86nm.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── t1types.h │ │ │ │ └── tttypes.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ ├── tttags.h │ │ │ └── ttunpat.h │ │ └── ft2build.h │ ├── modules.cfg │ ├── objs │ │ └── README │ ├── src │ │ ├── Jamfile │ │ ├── autofit │ │ │ ├── Jamfile │ │ │ ├── afangles.c │ │ │ ├── afangles.h │ │ │ ├── afcjk.c │ │ │ ├── afcjk.h │ │ │ ├── afdummy.c │ │ │ ├── afdummy.h │ │ │ ├── aferrors.h │ │ │ ├── afglobal.c │ │ │ ├── afglobal.h │ │ │ ├── afhints.c │ │ │ ├── afhints.h │ │ │ ├── afindic.c │ │ │ ├── afindic.h │ │ │ ├── aflatin.c │ │ │ ├── aflatin.h │ │ │ ├── aflatin2.c │ │ │ ├── aflatin2.h │ │ │ ├── afloader.c │ │ │ ├── afloader.h │ │ │ ├── afmodule.c │ │ │ ├── afmodule.h │ │ │ ├── aftypes.h │ │ │ ├── afwarp.c │ │ │ ├── afwarp.h │ │ │ ├── autofit.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── base │ │ │ ├── Jamfile │ │ │ ├── ftadvanc.c │ │ │ ├── ftapi.c │ │ │ ├── ftbase.c │ │ │ ├── ftbase.h │ │ │ ├── ftbbox.c │ │ │ ├── ftbdf.c │ │ │ ├── ftbitmap.c │ │ │ ├── ftcalc.c │ │ │ ├── ftcid.c │ │ │ ├── ftdbgmem.c │ │ │ ├── ftdebug.c │ │ │ ├── ftfstype.c │ │ │ ├── ftgasp.c │ │ │ ├── ftgloadr.c │ │ │ ├── ftglyph.c │ │ │ ├── ftgxval.c │ │ │ ├── ftinit.c │ │ │ ├── ftlcdfil.c │ │ │ ├── ftmac.c │ │ │ ├── ftmm.c │ │ │ ├── ftnames.c │ │ │ ├── ftobjs.c │ │ │ ├── ftotval.c │ │ │ ├── ftoutln.c │ │ │ ├── ftpatent.c │ │ │ ├── ftpfr.c │ │ │ ├── ftrfork.c │ │ │ ├── ftstream.c │ │ │ ├── ftstroke.c │ │ │ ├── ftsynth.c │ │ │ ├── ftsystem.c │ │ │ ├── fttrigon.c │ │ │ ├── fttype1.c │ │ │ ├── ftutil.c │ │ │ ├── ftwinfnt.c │ │ │ ├── ftxf86.c │ │ │ └── rules.mk │ │ ├── bdf │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── bdf.c │ │ │ ├── bdf.h │ │ │ ├── bdfdrivr.c │ │ │ ├── bdfdrivr.h │ │ │ ├── bdferror.h │ │ │ ├── bdflib.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── cache │ │ │ ├── Jamfile │ │ │ ├── ftcache.c │ │ │ ├── ftcbasic.c │ │ │ ├── ftccache.c │ │ │ ├── ftccache.h │ │ │ ├── ftccback.h │ │ │ ├── ftccmap.c │ │ │ ├── ftcerror.h │ │ │ ├── ftcglyph.c │ │ │ ├── ftcglyph.h │ │ │ ├── ftcimage.c │ │ │ ├── ftcimage.h │ │ │ ├── ftcmanag.c │ │ │ ├── ftcmanag.h │ │ │ ├── ftcmru.c │ │ │ ├── ftcmru.h │ │ │ ├── ftcsbits.c │ │ │ ├── ftcsbits.h │ │ │ └── rules.mk │ │ ├── cff │ │ │ ├── Jamfile │ │ │ ├── cff.c │ │ │ ├── cffcmap.c │ │ │ ├── cffcmap.h │ │ │ ├── cffdrivr.c │ │ │ ├── cffdrivr.h │ │ │ ├── cfferrs.h │ │ │ ├── cffgload.c │ │ │ ├── cffgload.h │ │ │ ├── cffload.c │ │ │ ├── cffload.h │ │ │ ├── cffobjs.c │ │ │ ├── cffobjs.h │ │ │ ├── cffparse.c │ │ │ ├── cffparse.h │ │ │ ├── cfftoken.h │ │ │ ├── cfftypes.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── cid │ │ │ ├── Jamfile │ │ │ ├── ciderrs.h │ │ │ ├── cidgload.c │ │ │ ├── cidgload.h │ │ │ ├── cidload.c │ │ │ ├── cidload.h │ │ │ ├── cidobjs.c │ │ │ ├── cidobjs.h │ │ │ ├── cidparse.c │ │ │ ├── cidparse.h │ │ │ ├── cidriver.c │ │ │ ├── cidriver.h │ │ │ ├── cidtoken.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── type1cid.c │ │ ├── gxvalid │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── gxvalid.c │ │ │ ├── gxvalid.h │ │ │ ├── gxvbsln.c │ │ │ ├── gxvcommn.c │ │ │ ├── gxvcommn.h │ │ │ ├── gxverror.h │ │ │ ├── gxvfeat.c │ │ │ ├── gxvfeat.h │ │ │ ├── gxvfgen.c │ │ │ ├── gxvjust.c │ │ │ ├── gxvkern.c │ │ │ ├── gxvlcar.c │ │ │ ├── gxvmod.c │ │ │ ├── gxvmod.h │ │ │ ├── gxvmort.c │ │ │ ├── gxvmort.h │ │ │ ├── gxvmort0.c │ │ │ ├── gxvmort1.c │ │ │ ├── gxvmort2.c │ │ │ ├── gxvmort4.c │ │ │ ├── gxvmort5.c │ │ │ ├── gxvmorx.c │ │ │ ├── gxvmorx.h │ │ │ ├── gxvmorx0.c │ │ │ ├── gxvmorx1.c │ │ │ ├── gxvmorx2.c │ │ │ ├── gxvmorx4.c │ │ │ ├── gxvmorx5.c │ │ │ ├── gxvopbd.c │ │ │ ├── gxvprop.c │ │ │ ├── gxvtrak.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── gzip │ │ │ ├── Jamfile │ │ │ ├── adler32.c │ │ │ ├── ftgzip.c │ │ │ ├── infblock.c │ │ │ ├── infblock.h │ │ │ ├── infcodes.c │ │ │ ├── infcodes.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── infutil.c │ │ │ ├── infutil.h │ │ │ ├── rules.mk │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── lzw │ │ │ ├── Jamfile │ │ │ ├── ftlzw.c │ │ │ ├── ftzopen.c │ │ │ ├── ftzopen.h │ │ │ └── rules.mk │ │ ├── otvalid │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── otvalid.c │ │ │ ├── otvalid.h │ │ │ ├── otvbase.c │ │ │ ├── otvcommn.c │ │ │ ├── otvcommn.h │ │ │ ├── otverror.h │ │ │ ├── otvgdef.c │ │ │ ├── otvgpos.c │ │ │ ├── otvgpos.h │ │ │ ├── otvgsub.c │ │ │ ├── otvjstf.c │ │ │ ├── otvmath.c │ │ │ ├── otvmod.c │ │ │ ├── otvmod.h │ │ │ └── rules.mk │ │ ├── pcf │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── module.mk │ │ │ ├── pcf.c │ │ │ ├── pcf.h │ │ │ ├── pcfdrivr.c │ │ │ ├── pcfdrivr.h │ │ │ ├── pcferror.h │ │ │ ├── pcfread.c │ │ │ ├── pcfread.h │ │ │ ├── pcfutil.c │ │ │ ├── pcfutil.h │ │ │ └── rules.mk │ │ ├── pfr │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pfr.c │ │ │ ├── pfrcmap.c │ │ │ ├── pfrcmap.h │ │ │ ├── pfrdrivr.c │ │ │ ├── pfrdrivr.h │ │ │ ├── pfrerror.h │ │ │ ├── pfrgload.c │ │ │ ├── pfrgload.h │ │ │ ├── pfrload.c │ │ │ ├── pfrload.h │ │ │ ├── pfrobjs.c │ │ │ ├── pfrobjs.h │ │ │ ├── pfrsbit.c │ │ │ ├── pfrsbit.h │ │ │ ├── pfrtypes.h │ │ │ └── rules.mk │ │ ├── psaux │ │ │ ├── Jamfile │ │ │ ├── afmparse.c │ │ │ ├── afmparse.h │ │ │ ├── module.mk │ │ │ ├── psaux.c │ │ │ ├── psauxerr.h │ │ │ ├── psauxmod.c │ │ │ ├── psauxmod.h │ │ │ ├── psconv.c │ │ │ ├── psconv.h │ │ │ ├── psobjs.c │ │ │ ├── psobjs.h │ │ │ ├── rules.mk │ │ │ ├── t1cmap.c │ │ │ ├── t1cmap.h │ │ │ ├── t1decode.c │ │ │ └── t1decode.h │ │ ├── pshinter │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pshalgo.c │ │ │ ├── pshalgo.h │ │ │ ├── pshglob.c │ │ │ ├── pshglob.h │ │ │ ├── pshinter.c │ │ │ ├── pshmod.c │ │ │ ├── pshmod.h │ │ │ ├── pshnterr.h │ │ │ ├── pshrec.c │ │ │ ├── pshrec.h │ │ │ └── rules.mk │ │ ├── psnames │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── psmodule.c │ │ │ ├── psmodule.h │ │ │ ├── psnamerr.h │ │ │ ├── psnames.c │ │ │ ├── pstables.h │ │ │ └── rules.mk │ │ ├── raster │ │ │ ├── Jamfile │ │ │ ├── ftmisc.h │ │ │ ├── ftraster.c │ │ │ ├── ftraster.h │ │ │ ├── ftrend1.c │ │ │ ├── ftrend1.h │ │ │ ├── module.mk │ │ │ ├── raster.c │ │ │ ├── rasterrs.h │ │ │ └── rules.mk │ │ ├── sfnt │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── sfdriver.c │ │ │ ├── sfdriver.h │ │ │ ├── sferrors.h │ │ │ ├── sfnt.c │ │ │ ├── sfobjs.c │ │ │ ├── sfobjs.h │ │ │ ├── ttbdf.c │ │ │ ├── ttbdf.h │ │ │ ├── ttcmap.c │ │ │ ├── ttcmap.h │ │ │ ├── ttkern.c │ │ │ ├── ttkern.h │ │ │ ├── ttload.c │ │ │ ├── ttload.h │ │ │ ├── ttmtx.c │ │ │ ├── ttmtx.h │ │ │ ├── ttpost.c │ │ │ ├── ttpost.h │ │ │ ├── ttsbit.c │ │ │ ├── ttsbit.h │ │ │ └── ttsbit0.c │ │ ├── smooth │ │ │ ├── Jamfile │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── smooth.c │ │ ├── tools │ │ │ ├── Jamfile │ │ │ ├── apinames.c │ │ │ ├── cordic.py │ │ │ ├── docmaker │ │ │ │ ├── content.py │ │ │ │ ├── docbeauty.py │ │ │ │ ├── docmaker.py │ │ │ │ ├── formatter.py │ │ │ │ ├── sources.py │ │ │ │ ├── tohtml.py │ │ │ │ └── utils.py │ │ │ ├── ftrandom │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ftrandom.c │ │ │ ├── glnames.py │ │ │ ├── test_afm.c │ │ │ ├── test_bbox.c │ │ │ └── test_trig.c │ │ ├── truetype │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── truetype.c │ │ │ ├── ttdriver.c │ │ │ ├── ttdriver.h │ │ │ ├── tterrors.h │ │ │ ├── ttgload.c │ │ │ ├── ttgload.h │ │ │ ├── ttgxvar.c │ │ │ ├── ttgxvar.h │ │ │ ├── ttinterp.c │ │ │ ├── ttinterp.h │ │ │ ├── ttobjs.c │ │ │ ├── ttobjs.h │ │ │ ├── ttpload.c │ │ │ └── ttpload.h │ │ ├── type1 │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t1afm.c │ │ │ ├── t1afm.h │ │ │ ├── t1driver.c │ │ │ ├── t1driver.h │ │ │ ├── t1errors.h │ │ │ ├── t1gload.c │ │ │ ├── t1gload.h │ │ │ ├── t1load.c │ │ │ ├── t1load.h │ │ │ ├── t1objs.c │ │ │ ├── t1objs.h │ │ │ ├── t1parse.c │ │ │ ├── t1parse.h │ │ │ ├── t1tokens.h │ │ │ └── type1.c │ │ ├── type42 │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t42drivr.c │ │ │ ├── t42drivr.h │ │ │ ├── t42error.h │ │ │ ├── t42objs.c │ │ │ ├── t42objs.h │ │ │ ├── t42parse.c │ │ │ ├── t42parse.h │ │ │ ├── t42types.h │ │ │ └── type42.c │ │ └── winfonts │ │ │ ├── Jamfile │ │ │ ├── fnterrs.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── winfnt.c │ │ │ └── winfnt.h │ ├── version.sed │ └── vms_make.com ├── libRTV │ ├── GuideParser.cpp │ ├── GuideParser.h │ ├── Makefile.in │ ├── crypt.c │ ├── crypt.h │ ├── guideclient.c │ ├── guideclient.h │ ├── httpclient.c │ ├── httpclient.h │ ├── httpfsclient.c │ ├── httpfsclient.h │ ├── interface.c │ ├── interface.h │ ├── libRTV.lib │ ├── libRTV.sln │ ├── libRTV.vcproj │ ├── libRTV.vcxproj │ ├── libRTV.vcxproj.filters │ ├── libRTVd.lib │ ├── md5.c │ ├── md5.h │ ├── netclient.c │ ├── netclient.h │ ├── rtv.c │ ├── rtv.h │ ├── sleep.c │ └── sleep.h ├── libUPnP │ ├── Makefile.in │ ├── Neptune │ │ ├── Build │ │ │ ├── Boot.scons │ │ │ ├── Build.scons │ │ │ ├── Targets │ │ │ │ ├── arm-android-linux │ │ │ │ │ └── Config.scons │ │ │ │ ├── arm-apple-darwin │ │ │ │ │ └── Config.scons │ │ │ │ ├── arm-microsoft-wince-vs2005 │ │ │ │ │ ├── ArraysTest1 │ │ │ │ │ │ └── ArraysTest1.vcproj │ │ │ │ │ ├── BufferedStreamsTest1 │ │ │ │ │ │ └── BufferedStreamsTest1.vcproj │ │ │ │ │ ├── HttpClientTest1 │ │ │ │ │ │ └── HttpClientTest1.vcproj │ │ │ │ │ ├── HttpServerTest1 │ │ │ │ │ │ └── HttpServerTest1.vcproj │ │ │ │ │ ├── ListsTest1 │ │ │ │ │ │ └── ListsTest1.vcproj │ │ │ │ │ ├── LoggingTest1 │ │ │ │ │ │ └── LoggingTest1.vcproj │ │ │ │ │ ├── MapsTest1 │ │ │ │ │ │ └── MapsTest1.vcproj │ │ │ │ │ ├── MessagesTest1 │ │ │ │ │ │ └── MessagesTest1.vcproj │ │ │ │ │ ├── MessagesTest2 │ │ │ │ │ │ └── MessagesTest2.vcproj │ │ │ │ │ ├── MiscTest1 │ │ │ │ │ │ └── MiscTest1.vcproj │ │ │ │ │ ├── Neptune.sln │ │ │ │ │ ├── Neptune │ │ │ │ │ │ └── Neptune.vcproj │ │ │ │ │ ├── NetConfig │ │ │ │ │ │ └── NetConfig.vcproj │ │ │ │ │ ├── RingBufferTest1 │ │ │ │ │ │ └── RingBufferTest1.vcproj │ │ │ │ │ ├── StringsTest1 │ │ │ │ │ │ └── StringsTest1.vcproj │ │ │ │ │ ├── ThreadsTest1 │ │ │ │ │ │ └── ThreadsTest1.vcproj │ │ │ │ │ ├── UdpTest1 │ │ │ │ │ │ └── UdpTest1.vcproj │ │ │ │ │ ├── UrlTest1 │ │ │ │ │ │ └── UrlTest1.vcproj │ │ │ │ │ └── XmlTest1 │ │ │ │ │ │ └── XmlTest1.vcproj │ │ │ │ ├── arm-symbian-symbianos │ │ │ │ │ ├── Config.scons │ │ │ │ │ └── Neptune │ │ │ │ │ │ ├── .cdtbuild │ │ │ │ │ │ ├── .cdtproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── .settings │ │ │ │ │ │ └── org.eclipse.cdt.managedbuilder.core.prefs │ │ │ │ ├── mipsel-psp-linux │ │ │ │ │ └── CodeWarrior │ │ │ │ │ │ ├── Neptune.mcp │ │ │ │ │ │ ├── Neptune_Data │ │ │ │ │ │ └── CWSettingsWindows.stg │ │ │ │ │ │ ├── PREFIX_PSP_DEBUG.h │ │ │ │ │ │ ├── PREFIX_PSP_RELEASE.h │ │ │ │ │ │ └── PSP_Lib_C++.mcp.xml │ │ │ │ ├── mipsel-sigma-linux │ │ │ │ │ └── Config.scons │ │ │ │ ├── ppu-sony-ps3 │ │ │ │ │ └── Config.scons │ │ │ │ ├── universal-apple-macosx │ │ │ │ │ ├── Config.scons │ │ │ │ │ └── Neptune.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── x86-microsoft-win32-vs2005 │ │ │ │ │ ├── ArraysTest1 │ │ │ │ │ │ └── ArraysTest1.vcproj │ │ │ │ │ ├── BufferedStreamsTest1 │ │ │ │ │ │ └── BufferedStreamsTest1.vcproj │ │ │ │ │ ├── Build.py │ │ │ │ │ ├── FileTest1 │ │ │ │ │ │ └── FileTest1.vcproj │ │ │ │ │ ├── FileTest2 │ │ │ │ │ │ └── FileTest2.vcproj │ │ │ │ │ ├── HttpClientTest1 │ │ │ │ │ │ └── HttpClientTest1.vcproj │ │ │ │ │ ├── HttpServerTest1 │ │ │ │ │ │ └── HttpServerTest1.vcproj │ │ │ │ │ ├── ListsTest1 │ │ │ │ │ │ └── ListsTest1.vcproj │ │ │ │ │ ├── LoggingTest1 │ │ │ │ │ │ └── LoggingTest1.vcproj │ │ │ │ │ ├── LoggingTest2 │ │ │ │ │ │ └── LoggingTest2.vcproj │ │ │ │ │ ├── MapsTest1 │ │ │ │ │ │ └── MapsTest1.vcproj │ │ │ │ │ ├── MessagesTest1 │ │ │ │ │ │ └── MessagesTest1.vcproj │ │ │ │ │ ├── MessagesTest2 │ │ │ │ │ │ └── MessagesTest2.vcproj │ │ │ │ │ ├── MiscTest1 │ │ │ │ │ │ └── MiscTest1.vcproj │ │ │ │ │ ├── Neptune.sln │ │ │ │ │ ├── Neptune │ │ │ │ │ │ └── Neptune.vcproj │ │ │ │ │ ├── NetConfig │ │ │ │ │ │ └── NetConfig.vcproj │ │ │ │ │ ├── NetEcho │ │ │ │ │ │ └── NetEcho.vcproj │ │ │ │ │ ├── NetPing │ │ │ │ │ │ └── NetPing.vcproj │ │ │ │ │ ├── NetPump │ │ │ │ │ │ └── NetPump.vcproj │ │ │ │ │ ├── QueueTest1 │ │ │ │ │ │ └── QueueTest1.vcproj │ │ │ │ │ ├── RingBufferTest1 │ │ │ │ │ │ └── RingBufferTest1.vcproj │ │ │ │ │ ├── StringsTest1 │ │ │ │ │ │ └── StringsTest1.vcproj │ │ │ │ │ ├── ThreadsTest1 │ │ │ │ │ │ └── ThreadsTest1.vcproj │ │ │ │ │ ├── UdpTest1 │ │ │ │ │ │ └── UdpTest1.vcproj │ │ │ │ │ ├── UrlTest1 │ │ │ │ │ │ └── UrlTest1.vcproj │ │ │ │ │ └── XmlTest1 │ │ │ │ │ │ └── XmlTest1.vcproj │ │ │ │ ├── x86-microsoft-win32-vs2008 │ │ │ │ │ ├── ArraysTest1 │ │ │ │ │ │ └── ArraysTest1.vcproj │ │ │ │ │ ├── BufferedStreamsTest1 │ │ │ │ │ │ └── BufferedStreamsTest1.vcproj │ │ │ │ │ ├── FileTest1 │ │ │ │ │ │ └── FileTest1.vcproj │ │ │ │ │ ├── FileTest2 │ │ │ │ │ │ └── FileTest2.vcproj │ │ │ │ │ ├── HttpClientTest1 │ │ │ │ │ │ └── HttpClientTest1.vcproj │ │ │ │ │ ├── HttpServerTest1 │ │ │ │ │ │ └── HttpServerTest1.vcproj │ │ │ │ │ ├── ListsTest1 │ │ │ │ │ │ └── ListsTest1.vcproj │ │ │ │ │ ├── LoggingTest1 │ │ │ │ │ │ └── LoggingTest1.vcproj │ │ │ │ │ ├── LoggingTest2 │ │ │ │ │ │ └── LoggingTest2.vcproj │ │ │ │ │ ├── MapsTest1 │ │ │ │ │ │ └── MapsTest1.vcproj │ │ │ │ │ ├── MessagesTest1 │ │ │ │ │ │ └── MessagesTest1.vcproj │ │ │ │ │ ├── MessagesTest2 │ │ │ │ │ │ └── MessagesTest2.vcproj │ │ │ │ │ ├── MiscTest1 │ │ │ │ │ │ └── MiscTest1.vcproj │ │ │ │ │ ├── Neptune.sln │ │ │ │ │ ├── Neptune │ │ │ │ │ │ └── Neptune.vcproj │ │ │ │ │ ├── NetConfig │ │ │ │ │ │ └── NetConfig.vcproj │ │ │ │ │ ├── NetEcho │ │ │ │ │ │ └── NetEcho.vcproj │ │ │ │ │ ├── NetPing │ │ │ │ │ │ └── NetPing.vcproj │ │ │ │ │ ├── NetPump │ │ │ │ │ │ └── NetPump.vcproj │ │ │ │ │ ├── QueueTest1 │ │ │ │ │ │ └── QueueTest1.vcproj │ │ │ │ │ ├── RingBufferTest1 │ │ │ │ │ │ └── RingBufferTest1.vcproj │ │ │ │ │ ├── StringsTest1 │ │ │ │ │ │ └── StringsTest1.vcproj │ │ │ │ │ ├── ThreadsTest1 │ │ │ │ │ │ └── ThreadsTest1.vcproj │ │ │ │ │ ├── TimeTest1 │ │ │ │ │ │ └── TimeTest1.vcproj │ │ │ │ │ ├── UdpTest1 │ │ │ │ │ │ └── UdpTest1.vcproj │ │ │ │ │ ├── UrlTest1 │ │ │ │ │ │ └── UrlTest1.vcproj │ │ │ │ │ └── XmlTest1 │ │ │ │ │ │ └── XmlTest1.vcproj │ │ │ │ ├── x86-microsoft-xbox │ │ │ │ │ └── Neptune │ │ │ │ │ │ └── Neptune.vcproj │ │ │ │ ├── x86-unknown-cygwin │ │ │ │ │ └── Config.scons │ │ │ │ └── x86-unknown-linux │ │ │ │ │ └── Config.scons │ │ │ └── Tools │ │ │ │ └── SCons │ │ │ │ └── gcc-generic.py │ │ ├── Documents │ │ │ ├── Automatic │ │ │ │ └── NeptuneErrorCodes.txt │ │ │ └── Manuals │ │ │ │ └── Neptune Logging.doc │ │ ├── Extras │ │ │ ├── Scripts │ │ │ │ ├── CodeScanner.py │ │ │ │ └── GenErrorMap.py │ │ │ ├── Tools │ │ │ │ └── Logging │ │ │ │ │ └── NeptuneLogConsole.py │ │ │ └── neptune-logging.properties │ │ ├── README.txt │ │ ├── SConstruct │ │ ├── Source │ │ │ ├── Apps │ │ │ │ ├── MiniHttpServer │ │ │ │ │ └── MiniHttpServer.cpp │ │ │ │ ├── NetConfig │ │ │ │ │ └── NetConfig.cpp │ │ │ │ ├── NetEcho │ │ │ │ │ └── NetEcho.cpp │ │ │ │ ├── NetPing │ │ │ │ │ └── NetPing.cpp │ │ │ │ └── NetPump │ │ │ │ │ └── NetPump.cpp │ │ │ ├── Core │ │ │ │ ├── Neptune.cpp │ │ │ │ ├── Neptune.h │ │ │ │ ├── NptArray.h │ │ │ │ ├── NptBase64.cpp │ │ │ │ ├── NptBase64.h │ │ │ │ ├── NptBufferedStreams.cpp │ │ │ │ ├── NptBufferedStreams.h │ │ │ │ ├── NptCommon.cpp │ │ │ │ ├── NptCommon.h │ │ │ │ ├── NptConfig.h │ │ │ │ ├── NptConsole.cpp │ │ │ │ ├── NptConsole.h │ │ │ │ ├── NptConstants.h │ │ │ │ ├── NptDataBuffer.cpp │ │ │ │ ├── NptDataBuffer.h │ │ │ │ ├── NptDebug.cpp │ │ │ │ ├── NptDebug.h │ │ │ │ ├── NptDefs.h │ │ │ │ ├── NptDynamicCast.h │ │ │ │ ├── NptDynamicLibraries.cpp │ │ │ │ ├── NptDynamicLibraries.h │ │ │ │ ├── NptFile.cpp │ │ │ │ ├── NptFile.h │ │ │ │ ├── NptHttp.cpp │ │ │ │ ├── NptHttp.h │ │ │ │ ├── NptInterfaces.h │ │ │ │ ├── NptList.cpp │ │ │ │ ├── NptList.h │ │ │ │ ├── NptLogging.cpp │ │ │ │ ├── NptLogging.h │ │ │ │ ├── NptMap.h │ │ │ │ ├── NptMessaging.cpp │ │ │ │ ├── NptMessaging.h │ │ │ │ ├── NptNetwork.cpp │ │ │ │ ├── NptNetwork.h │ │ │ │ ├── NptQueue.cpp │ │ │ │ ├── NptQueue.h │ │ │ │ ├── NptReferences.h │ │ │ │ ├── NptResults.cpp │ │ │ │ ├── NptResults.h │ │ │ │ ├── NptRingBuffer.cpp │ │ │ │ ├── NptRingBuffer.h │ │ │ │ ├── NptSelectableMessageQueue.h │ │ │ │ ├── NptSerialPort.h │ │ │ │ ├── NptSimpleMessageQueue.cpp │ │ │ │ ├── NptSimpleMessageQueue.h │ │ │ │ ├── NptSockets.cpp │ │ │ │ ├── NptSockets.h │ │ │ │ ├── NptStack.h │ │ │ │ ├── NptStreams.cpp │ │ │ │ ├── NptStreams.h │ │ │ │ ├── NptStrings.cpp │ │ │ │ ├── NptStrings.h │ │ │ │ ├── NptSystem.cpp │ │ │ │ ├── NptSystem.h │ │ │ │ ├── NptThreads.cpp │ │ │ │ ├── NptThreads.h │ │ │ │ ├── NptTime.cpp │ │ │ │ ├── NptTime.h │ │ │ │ ├── NptTls.cpp │ │ │ │ ├── NptTls.h │ │ │ │ ├── NptTypes.h │ │ │ │ ├── NptUri.cpp │ │ │ │ ├── NptUri.h │ │ │ │ ├── NptUtils.cpp │ │ │ │ ├── NptUtils.h │ │ │ │ ├── NptVersion.h │ │ │ │ ├── NptXml.cpp │ │ │ │ ├── NptXml.h │ │ │ │ ├── NptZip.cpp │ │ │ │ └── NptZip.h │ │ │ ├── System │ │ │ │ ├── Android │ │ │ │ │ └── NptAndroidDebug.cpp │ │ │ │ ├── Bsd │ │ │ │ │ ├── NptBsdNetwork.cpp │ │ │ │ │ └── NptBsdSockets.cpp │ │ │ │ ├── Cocoa │ │ │ │ │ ├── NptCocoaMessageQueue.h │ │ │ │ │ └── NptCocoaMessageQueue.mm │ │ │ │ ├── Null │ │ │ │ │ ├── NptNullHttpProxy.cpp │ │ │ │ │ ├── NptNullNetwork.cpp │ │ │ │ │ ├── NptNullQueue.cpp │ │ │ │ │ ├── NptNullSerialPort.cpp │ │ │ │ │ ├── NptNullSystem.cpp │ │ │ │ │ └── NptNullThreads.cpp │ │ │ │ ├── PS3 │ │ │ │ │ └── NptPs3System.cpp │ │ │ │ ├── PSP │ │ │ │ │ ├── NptPSPDirectory.cpp │ │ │ │ │ ├── NptPSPFile.cpp │ │ │ │ │ ├── NptPSPNetwork.cpp │ │ │ │ │ ├── NptPSPQueue.cpp │ │ │ │ │ ├── NptPSPSystem.cpp │ │ │ │ │ └── NptPSPThreads.cpp │ │ │ │ ├── Posix │ │ │ │ │ ├── NptPosixDynamicLibraries.cpp │ │ │ │ │ ├── NptPosixFile.cpp │ │ │ │ │ ├── NptPosixNetwork.cpp │ │ │ │ │ ├── NptPosixQueue.cpp │ │ │ │ │ ├── NptPosixSystem.cpp │ │ │ │ │ ├── NptPosixThreads.cpp │ │ │ │ │ └── NptSelectableMessageQueue.cpp │ │ │ │ ├── StdC │ │ │ │ │ ├── NptStdCTime.cpp │ │ │ │ │ ├── NptStdcConsole.cpp │ │ │ │ │ ├── NptStdcDebug.cpp │ │ │ │ │ ├── NptStdcEnvironment.cpp │ │ │ │ │ └── NptStdcFile.cpp │ │ │ │ ├── Symbian │ │ │ │ │ └── NptSymbianSystem.cpp │ │ │ │ ├── Win32 │ │ │ │ │ ├── NptWin32Console.cpp │ │ │ │ │ ├── NptWin32Debug.cpp │ │ │ │ │ ├── NptWin32DynamicLibraries.cpp │ │ │ │ │ ├── NptWin32File.cpp │ │ │ │ │ ├── NptWin32HttpProxy.cpp │ │ │ │ │ ├── NptWin32MessageQueue.cpp │ │ │ │ │ ├── NptWin32MessageQueue.h │ │ │ │ │ ├── NptWin32Network.cpp │ │ │ │ │ ├── NptWin32Network.h │ │ │ │ │ ├── NptWin32Queue.cpp │ │ │ │ │ ├── NptWin32SerialPort.cpp │ │ │ │ │ ├── NptWin32System.cpp │ │ │ │ │ ├── NptWin32Threads.cpp │ │ │ │ │ └── NptWin32Threads.h │ │ │ │ ├── WinCE │ │ │ │ │ ├── NptWinCeUtils.h │ │ │ │ │ ├── NptWinceConsole.cpp │ │ │ │ │ ├── NptWinceEnvironment.cpp │ │ │ │ │ └── NptWinceMain.cpp │ │ │ │ └── Xbox │ │ │ │ │ ├── NptXboxNetwork.cpp │ │ │ │ │ └── NptXboxNetwork.h │ │ │ └── Tests │ │ │ │ ├── Arrays1 │ │ │ │ └── ArraysTest1.cpp │ │ │ │ ├── BufferedStreams1 │ │ │ │ └── BufferedStreamsTest1.cpp │ │ │ │ ├── FileTest1 │ │ │ │ └── FileTest1.cpp │ │ │ │ ├── FileTest2 │ │ │ │ └── FileTest2.cpp │ │ │ │ ├── HttpClient1 │ │ │ │ └── HttpClientTest1.cpp │ │ │ │ ├── HttpServer1 │ │ │ │ └── HttpServerTest1.cpp │ │ │ │ ├── Lists1 │ │ │ │ └── ListsTest1.cpp │ │ │ │ ├── Logging1 │ │ │ │ └── LoggingTest1.cpp │ │ │ │ ├── Logging2 │ │ │ │ └── LoggingTest2.cpp │ │ │ │ ├── Maps1 │ │ │ │ └── MapsTest1.cpp │ │ │ │ ├── Messages1 │ │ │ │ └── MessagesTest1.cpp │ │ │ │ ├── Messages2 │ │ │ │ └── MessagesTest2.cpp │ │ │ │ ├── Misc1 │ │ │ │ └── MiscTest1.cpp │ │ │ │ ├── Queue1 │ │ │ │ └── QueueTest1.cpp │ │ │ │ ├── RingBuffer1 │ │ │ │ └── RingBufferTest1.cpp │ │ │ │ ├── Streams1 │ │ │ │ └── StreamsTest1.cpp │ │ │ │ ├── Strings1 │ │ │ │ └── StringsTest1.cpp │ │ │ │ ├── Threads1 │ │ │ │ └── ThreadsTest1.cpp │ │ │ │ ├── Time1 │ │ │ │ └── TimeTest1.cpp │ │ │ │ ├── Tls1 │ │ │ │ ├── TlsClientPrivate1.h │ │ │ │ ├── TlsClientPrivate2.h │ │ │ │ └── TlsTest1.cpp │ │ │ │ ├── Udp1 │ │ │ │ └── UdpTest1.cpp │ │ │ │ ├── Url1 │ │ │ │ └── UrlTest1.cpp │ │ │ │ ├── Xml1 │ │ │ │ ├── XmlTest1.cpp │ │ │ │ ├── XmlTest1Data.cpp │ │ │ │ ├── big.xml │ │ │ │ ├── test.xml │ │ │ │ └── unicode.xml │ │ │ │ └── Zip1 │ │ │ │ ├── ZipTest1.cpp │ │ │ │ └── ZipTestData1.cpp │ │ └── ThirdParty │ │ │ ├── axTLS │ │ │ ├── config │ │ │ │ └── config.h │ │ │ ├── crypto │ │ │ │ ├── aes.c │ │ │ │ ├── bigint.c │ │ │ │ ├── bigint.h │ │ │ │ ├── bigint_impl.h │ │ │ │ ├── crypto.h │ │ │ │ ├── crypto_misc.c │ │ │ │ ├── hmac.c │ │ │ │ ├── md2.c │ │ │ │ ├── md5.c │ │ │ │ ├── rc4.c │ │ │ │ ├── rsa.c │ │ │ │ └── sha1.c │ │ │ └── ssl │ │ │ │ ├── asn1.c │ │ │ │ ├── cert.h │ │ │ │ ├── crypto_misc.h │ │ │ │ ├── gen_cert.c │ │ │ │ ├── loader.c │ │ │ │ ├── os_port.h │ │ │ │ ├── p12.c │ │ │ │ ├── ssl.h │ │ │ │ ├── tls1.c │ │ │ │ ├── tls1.h │ │ │ │ ├── tls1_clnt.c │ │ │ │ ├── tls1_svr.c │ │ │ │ ├── version.h │ │ │ │ └── x509.c │ │ │ └── zlib-1.2.3 │ │ │ ├── README │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── zconf.h │ │ │ ├── zconf.in.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ ├── Platinum │ │ ├── Build │ │ │ ├── Boot.scons │ │ │ ├── Build.scons │ │ │ ├── Targets │ │ │ │ ├── arm-apple-darwin │ │ │ │ │ └── Config.scons │ │ │ │ ├── arm-gp2x-linux │ │ │ │ │ └── Config.scons │ │ │ │ ├── arm-unknown-linux │ │ │ │ │ └── Config.scons │ │ │ │ ├── mipsel-psp-linux │ │ │ │ │ ├── CodeWarrior │ │ │ │ │ │ ├── PREFIX_PSP_DEBUG.h │ │ │ │ │ │ ├── PREFIX_PSP_RELEASE.h │ │ │ │ │ │ ├── PSP_Lib_C++.mcp.xml │ │ │ │ │ │ ├── Platinum.mcp │ │ │ │ │ │ └── Platinum_Data │ │ │ │ │ │ │ └── CWSettingsWindows.stg │ │ │ │ │ ├── Common.mak │ │ │ │ │ └── Makefile │ │ │ │ ├── universal-apple-macosx │ │ │ │ │ ├── Config.scons │ │ │ │ │ ├── Platinum.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── PlatinumApps.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── x86-microsoft-win32-vs2005 │ │ │ │ │ ├── FileMediaServerTest │ │ │ │ │ │ └── FileMediaServerTest.vcproj │ │ │ │ │ ├── HttpTest │ │ │ │ │ │ └── HttpTest.vcproj │ │ │ │ │ ├── LightSampleTest │ │ │ │ │ │ └── LightSampleTest.vcproj │ │ │ │ │ ├── MediaConnect │ │ │ │ │ │ └── MediaConnect.vcproj │ │ │ │ │ ├── MediaCrawler │ │ │ │ │ │ ├── MediaCrawler.sln │ │ │ │ │ │ └── MediaCrawler.vcproj │ │ │ │ │ ├── MediaRendererTest │ │ │ │ │ │ └── MediaRendererTest.vcproj │ │ │ │ │ ├── MicroMediaController │ │ │ │ │ │ └── MicroMediaController.vcproj │ │ │ │ │ ├── Platinum.sln │ │ │ │ │ ├── Platinum │ │ │ │ │ │ └── Platinum.vcproj │ │ │ │ │ ├── SsdpProxy │ │ │ │ │ │ └── SsdpProxy.vcproj │ │ │ │ │ └── SsdpTest │ │ │ │ │ │ └── SsdpTest1.vcproj │ │ │ │ ├── x86-microsoft-win32-vs2008 │ │ │ │ │ ├── FileMediaServerTest │ │ │ │ │ │ └── FileMediaServerTest.vcproj │ │ │ │ │ ├── FrameStreamer │ │ │ │ │ │ └── FrameStreamer.vcproj │ │ │ │ │ ├── HttpTest │ │ │ │ │ │ └── HttpTest.vcproj │ │ │ │ │ ├── LightSampleTest │ │ │ │ │ │ └── LightSampleTest.vcproj │ │ │ │ │ ├── MediaConnect │ │ │ │ │ │ └── MediaConnect.vcproj │ │ │ │ │ ├── MediaCrawler │ │ │ │ │ │ ├── MediaCrawler.sln │ │ │ │ │ │ └── MediaCrawler.vcproj │ │ │ │ │ ├── MediaRendererTest │ │ │ │ │ │ └── MediaRendererTest.vcproj │ │ │ │ │ ├── MicroMediaController │ │ │ │ │ │ └── MicroMediaController.vcproj │ │ │ │ │ ├── Platinum.sln │ │ │ │ │ ├── Platinum │ │ │ │ │ │ └── Platinum.vcproj │ │ │ │ │ ├── SimpleTest │ │ │ │ │ │ └── SimpleTest.vcproj │ │ │ │ │ ├── SsdpProxy │ │ │ │ │ │ └── SsdpProxy.vcproj │ │ │ │ │ ├── SsdpTest │ │ │ │ │ │ └── SsdpTest1.vcproj │ │ │ │ │ └── TimeTest │ │ │ │ │ │ └── TimeTest.vcproj │ │ │ │ ├── x86-microsoft-xbox-vs2003 │ │ │ │ │ ├── MediaServer │ │ │ │ │ │ └── PltMediaServer.vcproj │ │ │ │ │ ├── Platinum.sln │ │ │ │ │ └── Platinum │ │ │ │ │ │ └── Platinum.vcproj │ │ │ │ ├── x86-unknown-cygwin │ │ │ │ │ └── Config.scons │ │ │ │ └── x86-unknown-linux │ │ │ │ │ └── Config.scons │ │ │ └── Tools │ │ │ │ └── SCons │ │ │ │ └── gcc-generic.py │ │ ├── CHANGELOG.txt │ │ ├── Extras │ │ │ ├── neptune-logging.properties │ │ │ ├── platinum-120x120.jpg │ │ │ ├── platinum-120x120.png │ │ │ ├── platinum-48x48.jpg │ │ │ └── platinum-48x48.png │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── SConstruct │ │ ├── Source │ │ │ ├── Apps │ │ │ │ ├── FrameStreamer │ │ │ │ │ └── main.cpp │ │ │ │ ├── MediaConnect │ │ │ │ │ └── main.cpp │ │ │ │ ├── MediaCrawler │ │ │ │ │ ├── MediaCrawler.cpp │ │ │ │ │ ├── MediaCrawler.h │ │ │ │ │ ├── StreamHandler.h │ │ │ │ │ └── main.cpp │ │ │ │ └── MicroMediaController │ │ │ │ │ ├── PltMicroMediaController.cpp │ │ │ │ │ ├── PltMicroMediaController.h │ │ │ │ │ └── main.cpp │ │ │ ├── Core │ │ │ │ ├── PltAction.cpp │ │ │ │ ├── PltAction.h │ │ │ │ ├── PltArgument.cpp │ │ │ │ ├── PltArgument.h │ │ │ │ ├── PltConstants.cpp │ │ │ │ ├── PltConstants.h │ │ │ │ ├── PltCtrlPoint.cpp │ │ │ │ ├── PltCtrlPoint.h │ │ │ │ ├── PltCtrlPointTask.cpp │ │ │ │ ├── PltCtrlPointTask.h │ │ │ │ ├── PltDatagramStream.cpp │ │ │ │ ├── PltDatagramStream.h │ │ │ │ ├── PltDeviceData.cpp │ │ │ │ ├── PltDeviceData.h │ │ │ │ ├── PltDeviceHost.cpp │ │ │ │ ├── PltDeviceHost.h │ │ │ │ ├── PltDownloader.cpp │ │ │ │ ├── PltDownloader.h │ │ │ │ ├── PltEvent.cpp │ │ │ │ ├── PltEvent.h │ │ │ │ ├── PltHttp.cpp │ │ │ │ ├── PltHttp.h │ │ │ │ ├── PltHttpClientTask.cpp │ │ │ │ ├── PltHttpClientTask.h │ │ │ │ ├── PltHttpServer.cpp │ │ │ │ ├── PltHttpServer.h │ │ │ │ ├── PltHttpServerListener.h │ │ │ │ ├── PltHttpServerTask.cpp │ │ │ │ ├── PltHttpServerTask.h │ │ │ │ ├── PltIconsData.cpp │ │ │ │ ├── PltLeaks.cpp │ │ │ │ ├── PltLeaks.h │ │ │ │ ├── PltMetadataHandler.cpp │ │ │ │ ├── PltMetadataHandler.h │ │ │ │ ├── PltRingBufferStream.cpp │ │ │ │ ├── PltRingBufferStream.h │ │ │ │ ├── PltService.cpp │ │ │ │ ├── PltService.h │ │ │ │ ├── PltSsdp.cpp │ │ │ │ ├── PltSsdp.h │ │ │ │ ├── PltSsdpListener.h │ │ │ │ ├── PltStateVariable.cpp │ │ │ │ ├── PltStateVariable.h │ │ │ │ ├── PltStreamPump.cpp │ │ │ │ ├── PltStreamPump.h │ │ │ │ ├── PltTaskManager.cpp │ │ │ │ ├── PltTaskManager.h │ │ │ │ ├── PltThreadTask.cpp │ │ │ │ ├── PltThreadTask.h │ │ │ │ ├── PltTime.cpp │ │ │ │ ├── PltTime.h │ │ │ │ ├── PltUPnP.cpp │ │ │ │ ├── PltUPnP.h │ │ │ │ ├── PltUPnPHelper.h │ │ │ │ └── PltXmlHelper.h │ │ │ ├── Devices │ │ │ │ ├── FrameStreamer │ │ │ │ │ ├── PltFrameBuffer.cpp │ │ │ │ │ ├── PltFrameBuffer.h │ │ │ │ │ ├── PltFrameServer.cpp │ │ │ │ │ ├── PltFrameServer.h │ │ │ │ │ ├── PltFrameStream.cpp │ │ │ │ │ └── PltFrameStream.h │ │ │ │ ├── MediaConnect │ │ │ │ │ ├── PltMediaConnect.cpp │ │ │ │ │ ├── PltMediaConnect.h │ │ │ │ │ ├── X_MS_MediaReceiverRegistrarSCPD.cpp │ │ │ │ │ ├── X_MS_MediaReceiverRegistrarSCPD.xml │ │ │ │ │ └── process_scpds.sh │ │ │ │ ├── MediaRenderer │ │ │ │ │ ├── AVTransportSCPD.cpp │ │ │ │ │ ├── AVTransportSCPD.xml │ │ │ │ │ ├── AVTransportSCPDFull.xml │ │ │ │ │ ├── PltMediaController.cpp │ │ │ │ │ ├── PltMediaController.h │ │ │ │ │ ├── PltMediaRenderer.cpp │ │ │ │ │ ├── PltMediaRenderer.h │ │ │ │ │ ├── RdrConnectionManagerSCPD.cpp │ │ │ │ │ ├── RenderingControlSCPD.cpp │ │ │ │ │ ├── RenderingControlSCPD.xml │ │ │ │ │ ├── RenderingControlSCPD_Full.xml │ │ │ │ │ └── process_scpds.sh │ │ │ │ └── MediaServer │ │ │ │ │ ├── ConnectionManagerSCPD.cpp │ │ │ │ │ ├── ConnectionManagerSCPD.xml │ │ │ │ │ ├── ContentDirectorySCPD.cpp │ │ │ │ │ ├── ContentDirectorySCPD.xml │ │ │ │ │ ├── ContentDirectorywSearchSCPD.cpp │ │ │ │ │ ├── ContentDirectorywSearchSCPD.xml │ │ │ │ │ ├── PltDidl.cpp │ │ │ │ │ ├── PltDidl.h │ │ │ │ │ ├── PltFileMediaServer.cpp │ │ │ │ │ ├── PltFileMediaServer.h │ │ │ │ │ ├── PltMediaBrowser.cpp │ │ │ │ │ ├── PltMediaBrowser.h │ │ │ │ │ ├── PltMediaCache.cpp │ │ │ │ │ ├── PltMediaCache.h │ │ │ │ │ ├── PltMediaItem.cpp │ │ │ │ │ ├── PltMediaItem.h │ │ │ │ │ ├── PltMediaPlaylist.cpp │ │ │ │ │ ├── PltMediaPlaylist.h │ │ │ │ │ ├── PltMediaServer.cpp │ │ │ │ │ ├── PltMediaServer.h │ │ │ │ │ ├── PltSyncMediaBrowser.cpp │ │ │ │ │ ├── PltSyncMediaBrowser.h │ │ │ │ │ └── process_scpds.sh │ │ │ ├── Platinum │ │ │ │ ├── Platinum.h │ │ │ │ ├── PltSvnVersion.h │ │ │ │ └── PltVersion.h │ │ │ ├── Tests │ │ │ │ ├── FileMediaServer │ │ │ │ │ └── FileMediaServerTest.cpp │ │ │ │ ├── Http │ │ │ │ │ └── HttpTest.cpp │ │ │ │ ├── LightSample │ │ │ │ │ ├── LightSampleTest.cpp │ │ │ │ │ ├── PltLightSample.cpp │ │ │ │ │ └── PltLightSample.h │ │ │ │ ├── MediaRenderer │ │ │ │ │ └── MediaRendererTest.cpp │ │ │ │ ├── Simple │ │ │ │ │ ├── PltSimple.cpp │ │ │ │ │ ├── PltSimple.h │ │ │ │ │ └── SimpleTest.cpp │ │ │ │ ├── Ssdp │ │ │ │ │ └── SsdpTest1.cpp │ │ │ │ └── Time │ │ │ │ │ └── TimeTest1.cpp │ │ │ └── Tools │ │ │ │ ├── SsdpProxy │ │ │ │ ├── SsdpProxy.cpp │ │ │ │ └── SsdpProxy.h │ │ │ │ └── TextToHeader │ │ │ │ └── TextToHeader.cpp │ │ └── Targets │ │ │ └── neptune-logging.properties │ ├── libPlatinum.vcproj │ └── libPlatinum_PC.vcproj ├── libXDAAP │ ├── Authentication │ │ ├── hasher.c │ │ ├── hasher.h │ │ ├── md5.c │ │ └── md5.h │ ├── Makefile.in │ ├── ReadMe.txt │ ├── client.h │ ├── compat.h │ ├── daap.c │ ├── daap.h │ ├── daap_contentcodes.h │ ├── daap_readtypes.h │ ├── debug.c │ ├── debug.h │ ├── dmap_generics.c │ ├── dmap_generics.h │ ├── endian_swap.h │ ├── global.c │ ├── httpClient.c │ ├── httpClient.h │ ├── ioloop.c │ ├── ioloop.h │ ├── libXDAAP.c │ ├── libXDAAP.h │ ├── libXDAAP_win32 │ │ ├── libXDAAP_win32.vcproj │ │ ├── libXDAAP_win32.vcxproj │ │ └── libXDAAP_win32.vcxproj.filters │ ├── portability.h │ ├── private.h │ ├── thread.h │ ├── threadlib.h │ ├── threadpool.c │ ├── threadpool.h │ └── types.h ├── libapetag │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── apetaglib.c │ ├── apetaglib.h │ ├── bootstrap │ ├── configure.in │ ├── file_io.c │ ├── file_io.h │ ├── genres.h │ ├── id3v2_read.c │ ├── id3v2_read.h │ ├── info_mac.c │ ├── info_mac.h │ ├── info_mpc.c │ ├── info_mpc.h │ ├── is_tag.c │ ├── is_tag.h │ ├── libapetag.sln │ ├── libapetag.vcproj │ ├── libapetag.vcxproj │ └── m4 │ │ └── .gitignore ├── libass │ ├── COPYING │ ├── Changelog │ ├── Makefile.am │ ├── configure.ac │ ├── libass.pc.in │ ├── libass │ │ ├── Makefile.am │ │ ├── ass.c │ │ ├── ass.h │ │ ├── ass_bitmap.c │ │ ├── ass_bitmap.h │ │ ├── ass_cache.c │ │ ├── ass_cache.h │ │ ├── ass_cache_template.h │ │ ├── ass_drawing.c │ │ ├── ass_drawing.h │ │ ├── ass_font.c │ │ ├── ass_font.h │ │ ├── ass_fontconfig.c │ │ ├── ass_fontconfig.h │ │ ├── ass_library.c │ │ ├── ass_library.h │ │ ├── ass_parse.c │ │ ├── ass_parse.h │ │ ├── ass_render.c │ │ ├── ass_render.h │ │ ├── ass_render_api.c │ │ ├── ass_strtod.c │ │ ├── ass_types.h │ │ ├── ass_utils.c │ │ ├── ass_utils.h │ │ └── libass.sym │ ├── m4 │ │ └── .gitignore │ ├── test │ │ ├── Makefile.am │ │ └── test.c │ └── xbmc │ │ └── libass_win32 │ │ ├── config.h │ │ ├── getopt.h │ │ ├── inttypes.h │ │ ├── libass.def │ │ ├── libass_win32_vs2008.sln │ │ ├── libass_win32_vs2008.vcproj │ │ ├── libass_win32_vs2010.vcxproj │ │ ├── stdint.h │ │ └── unistd.h ├── libbluray │ └── Makefile ├── libcec │ └── Makefile ├── libdvd │ ├── Makefile.in │ ├── build-xbmc-win32.sh │ ├── includes │ │ ├── dvdcss │ │ │ └── .ignoreme │ │ └── dvdread │ │ │ └── .ignoreme │ ├── libdvdcss │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── bootstrap │ │ ├── configure.ac │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── doxygen.cfg.in │ │ │ ├── footer.html │ │ │ └── header.html │ │ ├── libdvdcss.spec │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── bsdi_dvd.h │ │ │ ├── bsdi_ioctl.c │ │ │ ├── common.h │ │ │ ├── css.c │ │ │ ├── css.h │ │ │ ├── csstables.h │ │ │ ├── device.c │ │ │ ├── device.h │ │ │ ├── dvdcss │ │ │ │ ├── Makefile.am │ │ │ │ └── dvdcss.h │ │ │ ├── error.c │ │ │ ├── ioctl.c │ │ │ ├── ioctl.h │ │ │ ├── libdvdcss.c │ │ │ ├── libdvdcss.h │ │ │ └── libdvdcss.pc.in │ │ └── test │ │ │ ├── Makefile.am │ │ │ └── csstest.c │ ├── libdvdnav │ │ ├── .relignore │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── DEVELOPMENT-POLICY.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── autogen.sh │ │ ├── configure.ac │ │ ├── configure2 │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── doxy.conf │ │ │ ├── dvd_structures │ │ │ ├── library_layout │ │ │ ├── mainpage.cpp │ │ │ └── tutorial.cpp │ │ ├── examples │ │ │ ├── Makefile.am │ │ │ └── menus.c │ │ ├── m4 │ │ │ ├── Makefile.am │ │ │ └── dvdnav.m4 │ │ ├── misc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.common │ │ │ ├── dvdnav-config.in │ │ │ ├── dvdnav-config2.sh │ │ │ ├── dvdnav.pc.in │ │ │ ├── dvdnavmini.pc.in │ │ │ ├── libdvdnav.spec.in │ │ │ └── relchk.sh.in │ │ ├── msvc │ │ │ ├── config.h │ │ │ ├── contrib │ │ │ │ ├── bcopy.c │ │ │ │ ├── dirent │ │ │ │ │ ├── dirent.c │ │ │ │ │ └── dirent.h │ │ │ │ ├── dlfcn.c │ │ │ │ ├── getopt.c │ │ │ │ └── timer │ │ │ │ │ ├── timer.c │ │ │ │ │ └── timer.h │ │ │ ├── ifo_dump.dsp │ │ │ ├── include │ │ │ │ ├── dlfcn.h │ │ │ │ ├── dvdnav_internal.h │ │ │ │ ├── getopt.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── os_types.h │ │ │ │ ├── pthreads │ │ │ │ │ ├── pthread.h │ │ │ │ │ └── sched.h │ │ │ │ ├── sys │ │ │ │ │ └── time.h │ │ │ │ ├── timer.h │ │ │ │ └── unistd.h │ │ │ ├── install │ │ │ │ └── README │ │ │ ├── libdvdcss.def │ │ │ ├── libdvdcss.dsp │ │ │ ├── libdvdnav.def │ │ │ ├── libdvdnav.dsp │ │ │ ├── libdvdnav.dsw │ │ │ ├── libwin32utils.def │ │ │ ├── libwin32utils.dsp │ │ │ ├── play_title.dsp │ │ │ ├── scripts │ │ │ │ ├── libdvdcss_install.bat │ │ │ │ └── libdvdnav_install.bat │ │ │ └── title_info.dsp │ │ ├── src │ │ │ ├── FELLOWSHIP.map │ │ │ ├── Makefile.am │ │ │ ├── README.MAP │ │ │ ├── dvd_types.h │ │ │ ├── dvdnav.c │ │ │ ├── dvdnav.h │ │ │ ├── dvdnav_events.h │ │ │ ├── dvdnav_internal.h │ │ │ ├── highlight.c │ │ │ ├── navigation.c │ │ │ ├── read_cache.c │ │ │ ├── read_cache.h │ │ │ ├── remap.c │ │ │ ├── remap.h │ │ │ ├── searching.c │ │ │ ├── settings.c │ │ │ └── vm │ │ │ │ ├── Makefile.am │ │ │ │ ├── decoder.c │ │ │ │ ├── decoder.h │ │ │ │ ├── vm.c │ │ │ │ ├── vm.h │ │ │ │ ├── vmcmd.c │ │ │ │ └── vmcmd.h │ │ ├── version.h │ │ └── version.sh │ └── libdvdread │ │ ├── .relignore │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── DEVELOPMENT-POLICY.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── autogen.sh │ │ ├── configure.ac │ │ ├── configure2 │ │ ├── m4 │ │ ├── Makefile.am │ │ └── dvdread.m4 │ │ ├── misc │ │ ├── Makefile.am │ │ ├── Makefile.common │ │ ├── dvdread-config.in │ │ ├── dvdread-config.sh │ │ ├── dvdread.pc.in │ │ ├── libdvdread.spec.in │ │ └── relchk.sh.in │ │ ├── msvc │ │ ├── config.h │ │ ├── contrib │ │ │ ├── bcopy.c │ │ │ ├── dirent │ │ │ │ ├── dirent.c │ │ │ │ └── dirent.h │ │ │ ├── dlfcn.c │ │ │ ├── getopt.c │ │ │ └── timer │ │ │ │ ├── timer.c │ │ │ │ └── timer.h │ │ ├── ifo_dump.dsp │ │ ├── include │ │ │ ├── dlfcn.h │ │ │ ├── dvdnav_internal.h │ │ │ ├── getopt.h │ │ │ ├── inttypes.h │ │ │ ├── os_types.h │ │ │ ├── pthreads │ │ │ │ ├── pthread.h │ │ │ │ └── sched.h │ │ │ ├── sys │ │ │ │ └── time.h │ │ │ ├── timer.h │ │ │ └── unistd.h │ │ ├── install │ │ │ └── README │ │ ├── libdvdcss.def │ │ ├── libdvdcss.dsp │ │ ├── libdvdnav.def │ │ ├── libdvdnav.dsp │ │ ├── libdvdnav.dsw │ │ ├── libwin32utils.def │ │ ├── libwin32utils.dsp │ │ ├── play_title.dsp │ │ ├── scripts │ │ │ ├── libdvdcss_install.bat │ │ │ └── libdvdnav_install.bat │ │ └── title_info.dsp │ │ ├── src │ │ ├── Makefile.am │ │ ├── bitreader.c │ │ ├── bitreader.h │ │ ├── bswap.h │ │ ├── dvd_input.c │ │ ├── dvd_input.h │ │ ├── dvd_reader.c │ │ ├── dvd_reader.h │ │ ├── dvd_udf.c │ │ ├── dvd_udf.h │ │ ├── dvdread_internal.h │ │ ├── ifo_print.c │ │ ├── ifo_print.h │ │ ├── ifo_read.c │ │ ├── ifo_read.h │ │ ├── ifo_types.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── nav_print.c │ │ ├── nav_print.h │ │ ├── nav_read.c │ │ ├── nav_read.h │ │ └── nav_types.h │ │ ├── version.h │ │ └── version.sh ├── libexif │ ├── ExifParse.cpp │ ├── ExifParse.h │ ├── IptcParse.cpp │ ├── IptcParse.h │ ├── JpegParse.cpp │ ├── JpegParse.h │ ├── Makefile.in │ ├── libexif.cpp │ ├── libexif.h │ ├── libexif.sln │ ├── libexif.vcproj │ ├── libexif.vcxproj │ └── libexif.vcxproj.filters ├── libhdhomerun │ ├── Makefile.in │ ├── Makefile.win32 │ ├── README │ ├── hdhomerun.h │ ├── hdhomerun │ │ ├── hdhomerun.vcproj │ │ ├── hdhomerun.vcxproj │ │ └── hdhomerun.vcxproj.filters │ ├── hdhomerun_channels.c │ ├── hdhomerun_channels.h │ ├── hdhomerun_channelscan.c │ ├── hdhomerun_channelscan.h │ ├── hdhomerun_config.c │ ├── hdhomerun_control.c │ ├── hdhomerun_control.h │ ├── hdhomerun_debug.c │ ├── hdhomerun_debug.h │ ├── hdhomerun_device.c │ ├── hdhomerun_device.h │ ├── hdhomerun_dhcp.c │ ├── hdhomerun_dhcp.h │ ├── hdhomerun_discover.c │ ├── hdhomerun_discover.h │ ├── hdhomerun_os.h │ ├── hdhomerun_os_posix.h │ ├── hdhomerun_os_windows.h │ ├── hdhomerun_pkt.c │ ├── hdhomerun_pkt.h │ ├── hdhomerun_types.h │ ├── hdhomerun_video.c │ ├── hdhomerun_video.h │ └── lgpl.txt ├── libhts │ ├── Makefile │ ├── Win32 │ │ ├── include │ │ │ ├── getopt.h │ │ │ ├── inttypes.h │ │ │ ├── msvc.h │ │ │ ├── sys │ │ │ │ └── queue.h │ │ │ └── unistd.h │ │ ├── libhts_2010.vcxproj │ │ └── libhts_2010.vcxproj.filters │ ├── hts_strtab.h │ ├── htsatomic.c │ ├── htsatomic.h │ ├── htsbuf.c │ ├── htsbuf.h │ ├── htsmsg.c │ ├── htsmsg.h │ ├── htsmsg_binary.c │ ├── htsmsg_binary.h │ ├── htsq.h │ ├── htsstr.c │ ├── htsstr.h │ ├── net.h │ ├── net_posix.c │ ├── net_winsock.c │ ├── sha1.c │ └── sha1.h ├── libid3tag │ ├── Makefile.in │ ├── README │ ├── id3.sln │ ├── libid3tag │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── COPYRIGHT │ │ ├── CREDITS │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── TODO.txt │ │ ├── VERSION │ │ ├── compat.gperf │ │ ├── compat.h │ │ ├── compat2.c │ │ ├── configure.ac │ │ ├── crc.c │ │ ├── crc.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── field.c │ │ ├── field.h │ │ ├── file.c │ │ ├── file.h │ │ ├── frame.c │ │ ├── frame.h │ │ ├── frametype-9754.c │ │ ├── frametype.gperf │ │ ├── frametype.h │ │ ├── genre.c │ │ ├── genre.dat │ │ ├── genre.dat.in │ │ ├── genre.dat.sed │ │ ├── genre.h │ │ ├── global.h │ │ ├── id3tag.h │ │ ├── latin1.c │ │ ├── latin1.h │ │ ├── libid3tag.list.in │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── msvc++ │ │ │ ├── Makefile.am │ │ │ ├── config.h │ │ │ ├── libid3tag.dsp │ │ │ ├── libid3tag.vcproj │ │ │ ├── libid3tag.vcxproj │ │ │ └── libid3tag.vcxproj.filters │ │ ├── parse.c │ │ ├── parse.h │ │ ├── render.c │ │ ├── render.h │ │ ├── tag.c │ │ ├── tag.h │ │ ├── ucs4.c │ │ ├── ucs4.h │ │ ├── utf16.c │ │ ├── utf16.h │ │ ├── utf8.c │ │ ├── utf8.h │ │ ├── util.c │ │ ├── util.h │ │ ├── version.c │ │ └── version.h │ ├── readme.txt │ ├── testdriver │ │ ├── Resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── testdriver.aps │ │ ├── testdriver.cpp │ │ ├── testdriver.h │ │ ├── testdriver.rc │ │ ├── testdriver.vcproj │ │ └── writetest.mp3 │ └── zlib │ │ ├── ChangeLog │ │ ├── FAQ │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── adler32.c │ │ ├── algorithm.txt │ │ ├── amiga │ │ ├── Makefile.pup │ │ └── Makefile.sas │ │ ├── as400 │ │ ├── bndsrc │ │ ├── compile.clp │ │ ├── readme.txt │ │ └── zlib.inc │ │ ├── compress.c │ │ ├── configure │ │ ├── contrib │ │ ├── README.contrib │ │ ├── ada │ │ │ ├── buffer_demo.adb │ │ │ ├── mtest.adb │ │ │ ├── read.adb │ │ │ ├── readme.txt │ │ │ ├── test.adb │ │ │ ├── zlib-streams.adb │ │ │ ├── zlib-streams.ads │ │ │ ├── zlib-thin.adb │ │ │ ├── zlib-thin.ads │ │ │ ├── zlib.adb │ │ │ ├── zlib.ads │ │ │ └── zlib.gpr │ │ ├── asm586 │ │ │ ├── README.586 │ │ │ └── match.S │ │ ├── asm686 │ │ │ ├── README.686 │ │ │ └── match.S │ │ ├── blast │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── blast.c │ │ │ ├── blast.h │ │ │ ├── test.pk │ │ │ └── test.txt │ │ ├── delphi │ │ │ ├── ZLib.pas │ │ │ ├── ZLibConst.pas │ │ │ ├── readme.txt │ │ │ └── zlibd32.mak │ │ ├── dotzlib │ │ │ ├── DotZLib.build │ │ │ ├── DotZLib.chm │ │ │ ├── DotZLib.sln │ │ │ ├── DotZLib │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ ├── CircularBuffer.cs │ │ │ │ ├── CodecBase.cs │ │ │ │ ├── Deflater.cs │ │ │ │ ├── DotZLib.cs │ │ │ │ ├── DotZLib.csproj │ │ │ │ ├── GZipStream.cs │ │ │ │ ├── Inflater.cs │ │ │ │ └── UnitTests.cs │ │ │ ├── LICENSE_1_0.txt │ │ │ └── readme.txt │ │ ├── infback9 │ │ │ ├── README │ │ │ ├── infback9.c │ │ │ ├── infback9.h │ │ │ ├── inffix9.h │ │ │ ├── inflate9.h │ │ │ ├── inftree9.c │ │ │ └── inftree9.h │ │ ├── inflate86 │ │ │ ├── inffas86.c │ │ │ └── inffast.S │ │ ├── iostream │ │ │ ├── test.cpp │ │ │ ├── zfstream.cpp │ │ │ └── zfstream.h │ │ ├── iostream2 │ │ │ ├── zstream.h │ │ │ └── zstream_test.cpp │ │ ├── iostream3 │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── test.cc │ │ │ ├── zfstream.cc │ │ │ └── zfstream.h │ │ ├── masm686 │ │ │ └── match.asm │ │ ├── masmx64 │ │ │ ├── bld_ml64.bat │ │ │ ├── gvmat64.asm │ │ │ ├── gvmat64.obj │ │ │ ├── inffas8664.c │ │ │ ├── inffasx64.asm │ │ │ ├── inffasx64.obj │ │ │ └── readme.txt │ │ ├── masmx86 │ │ │ ├── bld_ml32.bat │ │ │ ├── gvmat32.asm │ │ │ ├── gvmat32.obj │ │ │ ├── gvmat32c.c │ │ │ ├── inffas32.asm │ │ │ ├── inffas32.obj │ │ │ ├── mkasm.bat │ │ │ └── readme.txt │ │ ├── minizip │ │ │ ├── ChangeLogUnzip │ │ │ ├── Makefile │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── iowin32.c │ │ │ ├── iowin32.h │ │ │ ├── miniunz.c │ │ │ ├── minizip.c │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ │ ├── pascal │ │ │ ├── example.pas │ │ │ ├── readme.txt │ │ │ ├── zlibd32.mak │ │ │ └── zlibpas.pas │ │ ├── puff │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── puff.c │ │ │ ├── puff.h │ │ │ └── zeros.raw │ │ ├── testzlib │ │ │ ├── testzlib.c │ │ │ └── testzlib.txt │ │ ├── untgz │ │ │ ├── Makefile │ │ │ ├── Makefile.msc │ │ │ └── untgz.c │ │ └── vstudio │ │ │ ├── readme.txt │ │ │ ├── vc7 │ │ │ ├── miniunz.vcproj │ │ │ ├── minizip.vcproj │ │ │ ├── testzlib.vcproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcproj │ │ │ └── vc8 │ │ │ ├── miniunz.vcproj │ │ │ ├── minizip.vcproj │ │ │ ├── testzlib.vcproj │ │ │ ├── testzlibdll.vcproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcproj │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── example.c │ │ ├── examples │ │ ├── README.examples │ │ ├── fitblk.c │ │ ├── gun.c │ │ ├── gzappend.c │ │ ├── gzjoin.c │ │ ├── gzlog.c │ │ ├── gzlog.h │ │ ├── zlib_how.html │ │ ├── zpipe.c │ │ └── zran.c │ │ ├── gzio.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── make_vms.com │ │ ├── minigzip.c │ │ ├── msdos │ │ ├── Makefile.bor │ │ ├── Makefile.dj2 │ │ ├── Makefile.emx │ │ ├── Makefile.msc │ │ └── Makefile.tc │ │ ├── old │ │ ├── Makefile.riscos │ │ ├── README │ │ ├── descrip.mms │ │ ├── os2 │ │ │ ├── Makefile.os2 │ │ │ └── zlib.def │ │ ├── visual-basic.txt │ │ └── zlib.html │ │ ├── projects │ │ ├── README.projects │ │ ├── visualc2003 │ │ │ └── zlib.vcproj │ │ └── visualc6 │ │ │ ├── README.txt │ │ │ ├── example.dsp │ │ │ ├── minigzip.dsp │ │ │ ├── zlib.dsp │ │ │ └── zlib.dsw │ │ ├── qnx │ │ └── package.qpg │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── win32 │ │ ├── DLL_FAQ.txt │ │ ├── Makefile.bor │ │ ├── Makefile.emx │ │ ├── Makefile.gcc │ │ ├── Makefile.msc │ │ ├── VisualC.txt │ │ ├── resource.h │ │ ├── zlib.def │ │ └── zlib1.rc │ │ ├── zconf.h │ │ ├── zconf.in.h │ │ ├── zlib.3 │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── liblame │ ├── ACM │ │ ├── ACM.cpp │ │ ├── ACM.h │ │ ├── ACMStream.cpp │ │ ├── ACMStream.h │ │ ├── ADbg │ │ │ ├── ADbg.cpp │ │ │ ├── ADbg.dsp │ │ │ ├── ADbg.h │ │ │ ├── ADbg_vc7.vcproj │ │ │ ├── Makefile.am │ │ │ └── Makefile.in │ │ ├── AEncodeProperties.cpp │ │ ├── AEncodeProperties.h │ │ ├── DecodeStream.cpp │ │ ├── DecodeStream.h │ │ ├── LameACM.inf │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── TODO │ │ ├── acm.rc │ │ ├── adebug.h │ │ ├── ddk │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── msacmdrv.h │ │ ├── lame.ico │ │ ├── lameACM.def │ │ ├── lameACM_vc6.dsp │ │ ├── lameACM_vc7.vcproj │ │ ├── lame_acm.xml │ │ ├── main.cpp │ │ ├── readme.txt │ │ ├── resource.h │ │ └── tinyxml │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.tinyxml │ │ │ ├── changes.txt │ │ │ ├── dox │ │ │ ├── makedistlinux │ │ │ ├── makedistwin.bat │ │ │ ├── readme.txt │ │ │ ├── test.dsp │ │ │ ├── test.dsw │ │ │ ├── tinyxml.cpp │ │ │ ├── tinyxml.dsp │ │ │ ├── tinyxml.h │ │ │ ├── tinyxml_vc7.vcproj │ │ │ ├── tinyxmlerror.cpp │ │ │ ├── tinyxmlparser.cpp │ │ │ └── xmltest.cpp │ ├── API │ ├── COPYING │ ├── ChangeLog │ ├── DEFINES │ ├── Dll │ │ ├── BladeMP3EncDLL.c │ │ ├── BladeMP3EncDLL.def │ │ ├── BladeMP3EncDLL.h │ │ ├── Example.cpp │ │ ├── Example_vc6.dsp │ │ ├── Example_vc6.dsw │ │ ├── LameDLLInterface.htm │ │ ├── LameDll_vc6.dsp │ │ ├── LameDll_vc8.vcproj │ │ ├── MP3export.pas │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.mingw32 │ │ └── README │ ├── HACKING │ ├── INSTALL │ ├── INSTALL.configure │ ├── LICENSE │ ├── Makefile.MSVC │ ├── Makefile.am │ ├── Makefile.am.global │ ├── Makefile.in │ ├── Makefile.unix │ ├── README │ ├── README.WINGTK │ ├── STYLEGUIDE │ ├── TODO │ ├── USAGE │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configMS.h │ ├── configure │ ├── configure.in │ ├── debian │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── lame.docs │ │ ├── lame.files │ │ ├── libmp3lame0-dev.docs │ │ ├── libmp3lame0-dev.files │ │ ├── libmp3lame0.files │ │ └── rules │ ├── depcomp │ ├── doc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── html │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── basic.html │ │ │ ├── contributors.html │ │ │ ├── examples.html │ │ │ ├── history.html │ │ │ ├── id3.html │ │ │ ├── index.html │ │ │ ├── lame.css │ │ │ ├── modes.html │ │ │ ├── node6.html │ │ │ └── switchs.html │ │ └── man │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── lame.1 │ ├── dshow │ │ ├── Encoder.cpp │ │ ├── Encoder.h │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Mpegac.cpp │ │ ├── Mpegac.def │ │ ├── Mpegac.h │ │ ├── PropPage.cpp │ │ ├── PropPage.h │ │ ├── PropPage_adv.cpp │ │ ├── PropPage_adv.h │ │ ├── Property.rc │ │ ├── README │ │ ├── REG.CPP │ │ ├── REG.H │ │ ├── UIDS.H │ │ ├── aboutprp.cpp │ │ ├── aboutprp.h │ │ ├── dshow.dsp │ │ ├── dshow.dsw │ │ ├── elogo.ico │ │ ├── iaudioprops.h │ │ └── resource.h │ ├── frontend │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── amiga_mpega.c │ │ ├── brhist.c │ │ ├── brhist.h │ │ ├── console.c │ │ ├── console.h │ │ ├── depcomp │ │ ├── get_audio.c │ │ ├── get_audio.h │ │ ├── gpkplotting.c │ │ ├── gpkplotting.h │ │ ├── gtkanal.c │ │ ├── gtkanal.h │ │ ├── lame_vc6.dsp │ │ ├── lame_vc8.vcproj │ │ ├── lametime.c │ │ ├── lametime.h │ │ ├── main.c │ │ ├── main.h │ │ ├── mp3rtp.c │ │ ├── mp3x.c │ │ ├── mp3x_vc6.dsp │ │ ├── parse.c │ │ ├── parse.h │ │ ├── portableio.c │ │ ├── portableio.h │ │ ├── rtp.c │ │ ├── rtp.h │ │ ├── timestatus.c │ │ └── timestatus.h │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── lame.def │ │ └── lame.h │ ├── install-sh │ ├── lame.bat │ ├── lame.spec │ ├── lame.spec.in │ ├── lame_clients_vc6.dsw │ ├── lame_projects_vc6.dsp │ ├── lame_vc6.dsw │ ├── lame_vc8.sln │ ├── libmp3lame │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── VbrTag.c │ │ ├── VbrTag.h │ │ ├── bitstream.c │ │ ├── bitstream.h │ │ ├── depcomp │ │ ├── encoder.c │ │ ├── encoder.h │ │ ├── fft.c │ │ ├── fft.h │ │ ├── gain_analysis.c │ │ ├── gain_analysis.h │ │ ├── i386 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── choose_table.nas │ │ │ ├── cpu_feat.nas │ │ │ ├── fft.nas │ │ │ ├── fft3dn.nas │ │ │ ├── fftfpu.nas │ │ │ ├── fftsse.nas │ │ │ ├── ffttbl.nas │ │ │ └── nasm.h │ │ ├── id3tag.c │ │ ├── id3tag.h │ │ ├── l3side.h │ │ ├── lame-analysis.h │ │ ├── lame.c │ │ ├── lame.rc │ │ ├── lame_global_flags.h │ │ ├── libmp3lame_dll_vc6.dsp │ │ ├── libmp3lame_vc6.dsp │ │ ├── libmp3lame_vc8.vcproj │ │ ├── logoe.ico │ │ ├── machine.h │ │ ├── mpglib_interface.c │ │ ├── newmdct.c │ │ ├── newmdct.h │ │ ├── presets.c │ │ ├── psymodel.c │ │ ├── psymodel.h │ │ ├── quantize.c │ │ ├── quantize.h │ │ ├── quantize_pvt.c │ │ ├── quantize_pvt.h │ │ ├── reservoir.c │ │ ├── reservoir.h │ │ ├── set_get.c │ │ ├── set_get.h │ │ ├── tables.c │ │ ├── tables.h │ │ ├── takehiro.c │ │ ├── util.c │ │ ├── util.h │ │ ├── vbrquantize.c │ │ ├── vbrquantize.h │ │ ├── vector │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── lame_intrin.h │ │ │ └── xmm_quantize_sub.c │ │ ├── version.c │ │ └── version.h │ ├── ltmain.sh │ ├── mac │ │ ├── LAME.mcp │ │ ├── LAME_Carbon_Debug.pch │ │ ├── LAME_Carbon_Final.pch │ │ ├── LAME_Classic_Debug.pch │ │ ├── LAME_Classic_Final.pch │ │ ├── MacDLLMain.c │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── Precompile_Common.h │ ├── macosx │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Makefile.am │ │ │ └── Makefile.in │ │ ├── Info.plist │ │ ├── LAME.xcodeproj │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── project.pbxproj │ │ ├── LAME_Prefix.pch │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── misc │ │ ├── Lame.vbs │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── abx.c │ │ ├── ath.c │ │ ├── auenc │ │ ├── depcomp │ │ ├── lame4dos.bat │ │ ├── lameGUI.html │ │ ├── lameid3.pl │ │ ├── mlame │ │ ├── mlame_corr.c │ │ ├── mugeco.sh │ │ └── scalartest.c │ ├── missing │ ├── mpglib │ │ ├── AUTHORS │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── common.c │ │ ├── common.h │ │ ├── dct64_i386.c │ │ ├── dct64_i386.h │ │ ├── decode_i386.c │ │ ├── decode_i386.h │ │ ├── depcomp │ │ ├── huffman.h │ │ ├── interface.c │ │ ├── interface.h │ │ ├── l2tables.h │ │ ├── layer1.c │ │ ├── layer1.h │ │ ├── layer2.c │ │ ├── layer2.h │ │ ├── layer3.c │ │ ├── layer3.h │ │ ├── mpg123.h │ │ ├── mpglib.h │ │ ├── mpglib_vc6.dsp │ │ ├── mpglib_vc8.vcproj │ │ ├── tabinit.c │ │ └── tabinit.h │ ├── testcase.mp3 │ ├── testcase.wav │ └── vc_solution │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── vc10_lame_config.props │ │ ├── vc10_libmp3lame_dll.vcxproj │ │ ├── vc10_libmp3lame_dll.vcxproj.filters │ │ ├── vc10_nasm.props │ │ ├── vc10_nasm.targets │ │ ├── vc10_nasm.xml │ │ ├── vc9_lame.sln │ │ ├── vc9_lame_acm.vcproj │ │ ├── vc9_lame_acm_adbg.vcproj │ │ ├── vc9_lame_acm_tinyxml.vcproj │ │ ├── vc9_lame_clients.sln │ │ ├── vc9_lame_config.vsprops │ │ ├── vc9_lame_dll.vcproj │ │ ├── vc9_lame_dll_example.vcproj │ │ ├── vc9_lame_dshow.vcproj │ │ ├── vc9_lame_lame.vcproj │ │ ├── vc9_lame_mp3x.vcproj │ │ ├── vc9_libmp3lame.vcproj │ │ ├── vc9_libmp3lame_dll.vcproj │ │ ├── vc9_mpglib.vcproj │ │ └── vc9_nasm.rules ├── libmad │ ├── AUTHORS │ ├── CHANGES │ ├── COPYING │ ├── COPYRIGHT │ ├── CREDITS │ ├── ChangeLog │ ├── D.dat │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── TODO │ ├── VERSION │ ├── aclocal.m4 │ ├── bit.c │ ├── bit.h │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── decoder.c │ ├── decoder.h │ ├── depcomp │ ├── fixed.c │ ├── fixed.h │ ├── frame.c │ ├── frame.h │ ├── global.h │ ├── huffman.c │ ├── huffman.h │ ├── imdct_l_arm.S │ ├── imdct_s.dat │ ├── install-sh │ ├── layer12.c │ ├── layer12.h │ ├── layer3.c │ ├── layer3.h │ ├── libmad.list.in │ ├── ltmain.sh │ ├── mad.h.sed │ ├── minimad.c │ ├── missing │ ├── mkinstalldirs │ ├── msvc++ │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── config.h │ │ ├── libmad.def │ │ ├── libmad.dsp │ │ ├── libmad.sln │ │ ├── libmad.vcproj │ │ ├── libmad.vcxproj │ │ ├── libmad.vcxproj.filters │ │ └── mad.h │ ├── qc_table.dat │ ├── rq_table.dat │ ├── sf_table.dat │ ├── stream.c │ ├── stream.h │ ├── synth.c │ ├── synth.h │ ├── timer.c │ ├── timer.h │ ├── version.c │ └── version.h ├── libmicrohttpd │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── MHD_config.h.in │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ascebc │ │ └── xcc │ ├── depcomp │ ├── doc │ │ ├── Doxyfile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── chapters │ │ │ ├── basicauthentication.inc │ │ │ ├── bibliography.inc │ │ │ ├── exploringrequests.inc │ │ │ ├── hellobrowser.inc │ │ │ ├── introduction.inc │ │ │ ├── largerpost.inc │ │ │ ├── processingpost.inc │ │ │ ├── responseheaders.inc │ │ │ └── tlsauthentication.inc │ │ ├── ecos.texi │ │ ├── examples │ │ │ ├── basicauthentication.c │ │ │ ├── hellobrowser.c │ │ │ ├── largepost.c │ │ │ ├── logging.c │ │ │ ├── responseheaders.c │ │ │ ├── simplepost.c │ │ │ └── tlsauthentication.c │ │ ├── fdl-1.3.texi │ │ ├── lgpl.texi │ │ ├── libmicrohttpd.3 │ │ ├── mdate-sh │ │ ├── microhttpd.texi │ │ ├── texinfo.tex │ │ └── tutorial.texi │ ├── install-sh │ ├── libmicrohttpd.pc.in │ ├── ltmain.sh │ ├── m4 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libcurl.m4 │ │ ├── libgcrypt.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── missing │ └── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── daemon │ │ ├── EXPORT.sym │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── connection.c │ │ ├── connection.h │ │ ├── connection_https.c │ │ ├── connection_https.h │ │ ├── daemon.c │ │ ├── daemon_test.c │ │ ├── https │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── gnutls.h │ │ │ ├── lgl │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── gc-libgcrypt.c │ │ │ │ └── gc.h │ │ │ ├── minitasn1 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── coding.c │ │ │ │ ├── decoding.c │ │ │ │ ├── element.c │ │ │ │ ├── element.h │ │ │ │ ├── gstr.c │ │ │ │ ├── gstr.h │ │ │ │ ├── int.h │ │ │ │ ├── libtasn1.h │ │ │ │ ├── mem.h │ │ │ │ ├── parser_aux.c │ │ │ │ ├── parser_aux.h │ │ │ │ ├── structure.c │ │ │ │ └── structure.h │ │ │ ├── tls │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── auth_cert.c │ │ │ │ ├── auth_cert.h │ │ │ │ ├── auth_dh_common.c │ │ │ │ ├── auth_dh_common.h │ │ │ │ ├── auth_dhe.c │ │ │ │ ├── auth_rsa.c │ │ │ │ ├── auth_rsa_export.c │ │ │ │ ├── debug.c │ │ │ │ ├── debug.h │ │ │ │ ├── defines.h │ │ │ │ ├── ext_cert_type.c │ │ │ │ ├── ext_cert_type.h │ │ │ │ ├── ext_max_record.c │ │ │ │ ├── ext_max_record.h │ │ │ │ ├── ext_server_name.c │ │ │ │ ├── ext_server_name.h │ │ │ │ ├── gnutls_alert.c │ │ │ │ ├── gnutls_algorithms.c │ │ │ │ ├── gnutls_algorithms.h │ │ │ │ ├── gnutls_asn1_tab.c │ │ │ │ ├── gnutls_auth.c │ │ │ │ ├── gnutls_auth.h │ │ │ │ ├── gnutls_auth_int.h │ │ │ │ ├── gnutls_buffers.c │ │ │ │ ├── gnutls_buffers.h │ │ │ │ ├── gnutls_cert.c │ │ │ │ ├── gnutls_cert.h │ │ │ │ ├── gnutls_cipher.c │ │ │ │ ├── gnutls_cipher.h │ │ │ │ ├── gnutls_cipher_int.c │ │ │ │ ├── gnutls_cipher_int.h │ │ │ │ ├── gnutls_constate.c │ │ │ │ ├── gnutls_constate.h │ │ │ │ ├── gnutls_datum.c │ │ │ │ ├── gnutls_datum.h │ │ │ │ ├── gnutls_dh.c │ │ │ │ ├── gnutls_dh.h │ │ │ │ ├── gnutls_dh_primes.c │ │ │ │ ├── gnutls_errors.c │ │ │ │ ├── gnutls_errors.h │ │ │ │ ├── gnutls_extensions.c │ │ │ │ ├── gnutls_extensions.h │ │ │ │ ├── gnutls_global.c │ │ │ │ ├── gnutls_global.h │ │ │ │ ├── gnutls_handshake.c │ │ │ │ ├── gnutls_handshake.h │ │ │ │ ├── gnutls_hash_int.c │ │ │ │ ├── gnutls_hash_int.h │ │ │ │ ├── gnutls_int.h │ │ │ │ ├── gnutls_kx.c │ │ │ │ ├── gnutls_kx.h │ │ │ │ ├── gnutls_mem.c │ │ │ │ ├── gnutls_mem.h │ │ │ │ ├── gnutls_mpi.c │ │ │ │ ├── gnutls_mpi.h │ │ │ │ ├── gnutls_num.c │ │ │ │ ├── gnutls_num.h │ │ │ │ ├── gnutls_pk.c │ │ │ │ ├── gnutls_pk.h │ │ │ │ ├── gnutls_priority.c │ │ │ │ ├── gnutls_record.c │ │ │ │ ├── gnutls_record.h │ │ │ │ ├── gnutls_rsa_export.c │ │ │ │ ├── gnutls_rsa_export.h │ │ │ │ ├── gnutls_sig.c │ │ │ │ ├── gnutls_sig.h │ │ │ │ ├── gnutls_state.c │ │ │ │ ├── gnutls_state.h │ │ │ │ ├── gnutls_str.c │ │ │ │ ├── gnutls_str.h │ │ │ │ ├── gnutls_supplemental.c │ │ │ │ ├── gnutls_supplemental.h │ │ │ │ ├── gnutls_ui.c │ │ │ │ ├── gnutls_x509.c │ │ │ │ ├── gnutls_x509.h │ │ │ │ ├── memmem.c │ │ │ │ ├── pkix_asn1_tab.c │ │ │ │ ├── str-two-way.h │ │ │ │ ├── x509_b64.c │ │ │ │ └── x509_b64.h │ │ │ └── x509 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── extensions.c │ │ │ │ ├── extensions.h │ │ │ │ ├── mpi.c │ │ │ │ ├── mpi.h │ │ │ │ ├── privkey.h │ │ │ │ ├── x509.c │ │ │ │ ├── x509.h │ │ │ │ └── x509_privkey.c │ │ ├── internal.c │ │ ├── internal.h │ │ ├── memorypool.c │ │ ├── memorypool.h │ │ ├── postprocessor.c │ │ ├── postprocessor_large_test.c │ │ ├── postprocessor_test.c │ │ ├── reason_phrase.c │ │ ├── reason_phrase.h │ │ ├── response.c │ │ └── response.h │ │ ├── examples │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── authorization_example.c │ │ ├── fileserver_example.c │ │ ├── fileserver_example_dirs.c │ │ ├── fileserver_example_external_select.c │ │ ├── https_fileserver_example.c │ │ ├── minimal_example.c │ │ ├── minimal_example_comet.c │ │ ├── querystring_example.c │ │ └── refuse_post_example.c │ │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── microhttpd.h │ │ ├── platform.h │ │ └── plibc.h │ │ ├── testcurl │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── curl_version_check.c │ │ ├── daemon_options_test.c │ │ ├── daemontest_get.c │ │ ├── daemontest_get_chunked.c │ │ ├── daemontest_iplimit.c │ │ ├── daemontest_large_put.c │ │ ├── daemontest_long_header.c │ │ ├── daemontest_parse_cookies.c │ │ ├── daemontest_post.c │ │ ├── daemontest_post_loop.c │ │ ├── daemontest_postform.c │ │ ├── daemontest_process_arguments.c │ │ ├── daemontest_process_headers.c │ │ ├── daemontest_put.c │ │ ├── daemontest_put_chunked.c │ │ ├── daemontest_termination.c │ │ └── https │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cert.pem │ │ │ ├── key.pem │ │ │ ├── mhds_get_test.c │ │ │ ├── mhds_multi_daemon_test.c │ │ │ ├── mhds_session_info_test.c │ │ │ ├── tls_alert_test.c │ │ │ ├── tls_authentication_test.c │ │ │ ├── tls_cipher_change_test.c │ │ │ ├── tls_daemon_options_test.c │ │ │ ├── tls_extension_test.c │ │ │ ├── tls_multi_thread_mode_test.c │ │ │ ├── tls_session_time_out_test.c │ │ │ ├── tls_test_common.c │ │ │ ├── tls_test_common.h │ │ │ ├── tls_test_keys.h │ │ │ └── tls_thread_mode_test.c │ │ └── testzzuf │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── daemontest_get.c │ │ ├── daemontest_get_chunked.c │ │ ├── daemontest_large_put.c │ │ ├── daemontest_long_header.c │ │ ├── daemontest_post.c │ │ ├── daemontest_postform.c │ │ ├── daemontest_put.c │ │ ├── daemontest_put_chunked.c │ │ └── socat.c ├── libmodplug │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── TODO │ ├── aclocal.m4 │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.in │ ├── depcomp │ ├── install-sh │ ├── libmodplug.def │ ├── libmodplug.pc.in │ ├── libmodplug_2008.sln │ ├── libmodplug_2008.vcproj │ ├── libmodplug_2010.vcxproj │ ├── ltmain.sh │ ├── missing │ └── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── config.h.in │ │ ├── fastmix.cpp │ │ ├── libmodplug │ │ ├── it_defs.h │ │ ├── sndfile.h │ │ └── stdafx.h │ │ ├── load_669.cpp │ │ ├── load_abc.cpp │ │ ├── load_amf.cpp │ │ ├── load_ams.cpp │ │ ├── load_dbm.cpp │ │ ├── load_dmf.cpp │ │ ├── load_dsm.cpp │ │ ├── load_far.cpp │ │ ├── load_it.cpp │ │ ├── load_j2b.cpp │ │ ├── load_mdl.cpp │ │ ├── load_med.cpp │ │ ├── load_mid.cpp │ │ ├── load_mod.cpp │ │ ├── load_mt2.cpp │ │ ├── load_mtm.cpp │ │ ├── load_okt.cpp │ │ ├── load_pat.cpp │ │ ├── load_pat.h │ │ ├── load_psm.cpp │ │ ├── load_ptm.cpp │ │ ├── load_s3m.cpp │ │ ├── load_stm.cpp │ │ ├── load_ult.cpp │ │ ├── load_umx.cpp │ │ ├── load_wav.cpp │ │ ├── load_xm.cpp │ │ ├── mmcmp.cpp │ │ ├── modplug.cpp │ │ ├── modplug.h │ │ ├── snd_dsp.cpp │ │ ├── snd_flt.cpp │ │ ├── snd_fx.cpp │ │ ├── sndfile.cpp │ │ ├── sndmix.cpp │ │ └── tables.h ├── libmpeg2 │ ├── .auto │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ └── missing │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── CodingStyle │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── TODO │ ├── aclocal.m4 │ ├── bootstrap │ ├── configure │ ├── configure.ac │ ├── doc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libmpeg2.txt │ │ ├── sample1.c │ │ ├── sample2.c │ │ ├── sample3.c │ │ ├── sample4.c │ │ ├── sample5.c │ │ └── sample6.c │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── alpha_asm.h │ │ ├── attributes.h │ │ ├── config.h.in │ │ ├── mmx.h │ │ ├── mpeg2.h │ │ ├── mpeg2convert.h │ │ ├── tendra.h │ │ ├── video_out.h │ │ └── vis.h │ ├── libmpeg2 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── alloc.c │ │ ├── convert │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── convert_internal.h │ │ │ ├── libmpeg2convert.pc.in │ │ │ ├── rgb.c │ │ │ ├── rgb_mmx.c │ │ │ ├── rgb_vis.c │ │ │ └── uyvy.c │ │ ├── cpu_accel.c │ │ ├── cpu_state.c │ │ ├── decode.c │ │ ├── header.c │ │ ├── idct.c │ │ ├── idct_alpha.c │ │ ├── idct_altivec.c │ │ ├── idct_mmx.c │ │ ├── libmpeg2.pc.in │ │ ├── motion_comp.c │ │ ├── motion_comp_alpha.c │ │ ├── motion_comp_altivec.c │ │ ├── motion_comp_arm.c │ │ ├── motion_comp_arm_s.S │ │ ├── motion_comp_mmx.c │ │ ├── motion_comp_vis.c │ │ ├── mpeg2_internal.h │ │ ├── slice.c │ │ └── vlc.h │ ├── libvo │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── video_out.c │ │ ├── video_out_dx.c │ │ ├── video_out_null.c │ │ ├── video_out_pgm.c │ │ ├── video_out_sdl.c │ │ ├── video_out_x11.c │ │ └── vo_internal.h │ ├── m4 │ │ ├── cflags.m4 │ │ ├── inttypes.m4 │ │ ├── keywords.m4 │ │ └── nonpic.m4 │ ├── make-xbmc-lib-win32.sh │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── corrupt_mpeg2.c │ │ ├── dump_state.c │ │ ├── extract_mpeg2.1 │ │ ├── extract_mpeg2.c │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── gettimeofday.c │ │ ├── gettimeofday.h │ │ ├── mpeg2dec.1 │ │ └── mpeg2dec.c │ ├── test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── compile │ │ ├── globals │ │ ├── regression │ │ ├── tek-525 │ │ ├── tek-625 │ │ └── tests │ └── vc++ │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── config.h │ │ ├── inttypes.h │ │ ├── libmpeg2.dsp │ │ ├── libmpeg2convert.dsp │ │ ├── libvo.dsp │ │ ├── mpeg2dec.dsp │ │ └── mpeg2dec.dsw ├── libnfs │ ├── 001_fix_hanewin.patch │ └── Makefile ├── librtmp │ ├── Makefile │ ├── darwin_package_librtmp.sh │ └── make_shared_lib_for_darwin-tag2.3.patch ├── libshairport │ ├── 001_add_ao.patch │ ├── 002_fix_install_header.patch │ ├── 003_fix_deadlock.patch │ ├── 004_fix_bad_access.patch │ ├── 005_fix_shutdown.patch │ ├── 006_no_printf.patch │ ├── 007_fix_syslog_defines.patch │ ├── 008-add-missing-libs.patch │ ├── 009_fix_ipv6.patch │ └── Makefile ├── libsidplay2 │ ├── Makefile.in │ ├── builders │ │ ├── hardsid-builder │ │ │ ├── COPYING │ │ │ ├── INSTALL │ │ │ ├── include │ │ │ │ ├── config.h │ │ │ │ └── sidplay │ │ │ │ │ └── builders │ │ │ │ │ └── hardsid.h │ │ │ ├── src │ │ │ │ ├── hardsid-builder.cpp │ │ │ │ ├── hardsid-emu.h │ │ │ │ ├── hardsid-unix.cpp │ │ │ │ └── hardsid-win.cpp │ │ │ └── win │ │ │ │ ├── VC │ │ │ │ ├── config.h │ │ │ │ ├── hardsid_builder.dsp │ │ │ │ └── hardsid_builder.vcproj │ │ │ │ └── VC5 │ │ │ │ └── hardsid_builder.dsp │ │ └── resid-builder │ │ │ ├── include │ │ │ ├── config.h │ │ │ └── sidplay │ │ │ │ └── builders │ │ │ │ └── resid.h │ │ │ ├── src │ │ │ ├── resid-builder.cpp │ │ │ ├── resid-emu.h │ │ │ └── resid.cpp │ │ │ └── win │ │ │ ├── VC │ │ │ ├── config.h │ │ │ ├── resid_builder.sln │ │ │ └── resid_builder.vcproj │ │ │ └── VC5 │ │ │ └── resid_builder.dsp │ ├── libsidplay │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── README │ │ ├── TODO │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── config.h │ │ │ ├── sidenv.h │ │ │ └── sidplay │ │ │ │ ├── Buffer.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── 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 │ │ │ ├── .deps │ │ │ │ ├── config.Plo │ │ │ │ ├── event.Plo │ │ │ │ ├── mixer.Plo │ │ │ │ ├── player.Plo │ │ │ │ ├── psiddrv.Plo │ │ │ │ ├── reloc65.Plo │ │ │ │ └── sidplay2.Plo │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── basic.bin │ │ │ ├── c64 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── c64cia.h │ │ │ │ ├── c64vic.h │ │ │ │ └── c64xsid.h │ │ │ ├── char.bin │ │ │ ├── config.cpp │ │ │ ├── event.cpp │ │ │ ├── kernal.bin │ │ │ ├── mixer.cpp │ │ │ ├── mos6510 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── conf6510.h │ │ │ │ ├── cycle_based │ │ │ │ │ ├── mos6510c.h │ │ │ │ │ ├── mos6510c.i │ │ │ │ │ ├── sid6510c.h │ │ │ │ │ └── sid6510c.i │ │ │ │ ├── mos6510.cpp │ │ │ │ ├── mos6510.h │ │ │ │ └── opcodes.h │ │ │ ├── mos6526 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── mos6526.cpp │ │ │ │ └── mos6526.h │ │ │ ├── mos656x │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── mos656x.cpp │ │ │ │ └── mos656x.h │ │ │ ├── nullsid.h │ │ │ ├── player.cpp │ │ │ ├── player.h │ │ │ ├── poweron.bin │ │ │ ├── psiddrv.a65 │ │ │ ├── psiddrv.bin │ │ │ ├── psiddrv.cpp │ │ │ ├── reloc65.c │ │ │ ├── sid6526 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── sid6526.cpp │ │ │ │ └── sid6526.h │ │ │ ├── sidplay2.cpp │ │ │ ├── sidtune │ │ │ │ ├── IconInfo.cpp │ │ │ │ ├── InfoFile.cpp │ │ │ │ ├── MUS.cpp │ │ │ │ ├── MUS.loT │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── PP20.cpp │ │ │ │ ├── PP20.h │ │ │ │ ├── PP20_Defs.h │ │ │ │ ├── PSID.cpp │ │ │ │ ├── SidTune.cpp │ │ │ │ ├── SidTuneCfg.h │ │ │ │ ├── SidTuneTools.cpp │ │ │ │ ├── SidTuneTools.h │ │ │ │ ├── p00.cpp │ │ │ │ └── prg.cpp │ │ │ └── xsid │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── xsid.cpp │ │ │ │ └── xsid.h │ │ ├── unix │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ac_compile_check_sizeof.m4 │ │ │ ├── ac_create_stdint_h.m4 │ │ │ ├── config.guess │ │ │ ├── config.h │ │ │ ├── config.h.in │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── libsidplay2.pc │ │ │ ├── libsidplay2.pc.in │ │ │ ├── libsidplay2.qpg │ │ │ ├── libsidplay2.qpg.in │ │ │ ├── libsidplay2.spec │ │ │ ├── libsidplay2.spec.in │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ ├── my_macros.m4 │ │ │ ├── sidconfig.h │ │ │ ├── sidconfig.h.in │ │ │ ├── sidint.h │ │ │ └── stamp-h1 │ │ └── win │ │ │ └── VC │ │ │ ├── XBMCSID.cpp │ │ │ ├── config.h │ │ │ ├── libsidplay.sln │ │ │ ├── libsidplay.vcproj │ │ │ ├── libsidplay.vcxproj │ │ │ ├── libsidplay.vcxproj.filters │ │ │ ├── sidconfig.h │ │ │ └── sidint.h │ ├── libsidutils │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── README │ │ ├── TODO │ │ ├── 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 │ │ │ ├── smm.cpp │ │ │ └── smm0.h │ │ └── win │ │ │ ├── VC │ │ │ ├── config.h │ │ │ ├── libsidutils.dsp │ │ │ └── libsidutils.vcproj │ │ │ └── VC5 │ │ │ └── libsidutils.dsp │ └── resid │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── README │ │ ├── THANKS │ │ ├── TODO │ │ ├── envelope.cc │ │ ├── envelope.h │ │ ├── extfilt.cc │ │ ├── extfilt.h │ │ ├── filter.cc │ │ ├── filter.h │ │ ├── pot.cc │ │ ├── pot.h │ │ ├── samp2src.pl │ │ ├── sid.cc │ │ ├── sid.h │ │ ├── siddefs.h │ │ ├── siddefs.h.in │ │ ├── spline.h │ │ ├── version.cc │ │ ├── voice.cc │ │ ├── voice.h │ │ ├── wave.cc │ │ ├── wave.h │ │ ├── wave6581_PST.cc │ │ ├── wave6581_PST.dat │ │ ├── wave6581_PS_.cc │ │ ├── wave6581_PS_.dat │ │ ├── wave6581_P_T.cc │ │ ├── wave6581_P_T.dat │ │ ├── wave6581__ST.cc │ │ ├── wave6581__ST.dat │ │ ├── wave8580_PST.cc │ │ ├── wave8580_PST.dat │ │ ├── wave8580_PS_.cc │ │ ├── wave8580_PS_.dat │ │ ├── wave8580_P_T.cc │ │ ├── wave8580_P_T.dat │ │ ├── wave8580__ST.cc │ │ └── wave8580__ST.dat ├── libsquish │ ├── ChangeLog │ ├── Doxyfile │ ├── Makefile.in │ ├── README │ ├── alpha.cpp │ ├── alpha.h │ ├── clusterfit.cpp │ ├── clusterfit.h │ ├── colourblock.cpp │ ├── colourblock.h │ ├── colourfit.cpp │ ├── colourfit.h │ ├── colourset.cpp │ ├── colourset.h │ ├── config │ ├── config.h │ ├── extra │ │ ├── squishgen.cpp │ │ ├── squishpng.cpp │ │ └── squishtest.cpp │ ├── maths.cpp │ ├── maths.h │ ├── rangefit.cpp │ ├── rangefit.h │ ├── simd.h │ ├── simd_float.h │ ├── simd_sse.h │ ├── simd_ve.h │ ├── singlecolourfit.cpp │ ├── singlecolourfit.h │ ├── singlecolourlookup.inl │ ├── squish-Info.plist │ ├── squish.cpp │ ├── squish.h │ ├── texture_compression_s3tc.txt │ └── vs7 │ │ ├── squish.sln │ │ ├── squish │ │ ├── squish.vcproj │ │ ├── squish_2008.vcproj │ │ ├── squish_2010.vcxproj │ │ └── squish_2010.vcxproj.filters │ │ ├── squishpng │ │ └── squishpng.vcproj │ │ └── squishtest │ │ └── squishtest.vcproj ├── nosefart │ ├── COPYING │ ├── Makefile.in │ ├── NoseFartDLL.cpp │ ├── NoseFartXBMC.sln │ ├── NoseFartXBMC.vcproj │ ├── NoseFartXBMC.vcxproj │ ├── NoseFartXBMC.vcxproj.filters │ ├── in_nsf.txt │ └── src │ │ ├── cpu │ │ └── nes6502 │ │ │ ├── dis6502.c │ │ │ ├── dis6502.h │ │ │ ├── nes6502.c │ │ │ └── nes6502.h │ │ ├── f │ │ └── nsf.c │ │ ├── log.c │ │ ├── log.h │ │ ├── machine │ │ ├── nsf.c │ │ └── nsf.h │ │ ├── memguard.c │ │ ├── memguard.h │ │ ├── osd.h │ │ ├── sndhrdw │ │ ├── fds_snd.c │ │ ├── fds_snd.h │ │ ├── fmopl.c │ │ ├── fmopl.h │ │ ├── mmc5_snd.c │ │ ├── mmc5_snd.h │ │ ├── nes_apu.c │ │ ├── nes_apu.h │ │ ├── vrc7_snd.c │ │ ├── vrc7_snd.h │ │ ├── vrcvisnd.c │ │ └── vrcvisnd.h │ │ ├── types.h │ │ └── version.h ├── platform │ ├── os.h │ ├── posix │ │ ├── os-socket.h │ │ ├── os-threads.h │ │ ├── os-types.h │ │ ├── serialport.cpp │ │ └── serversocket.cpp │ ├── sockets │ │ ├── serialport.h │ │ ├── serversocket.h │ │ ├── socket.h │ │ └── tcp.h │ ├── threads │ │ ├── mutex.h │ │ └── threads.h │ ├── util │ │ ├── StdString.h │ │ ├── baudrate.h │ │ ├── buffer.h │ │ ├── timeutils.h │ │ └── util.h │ └── windows │ │ ├── dlfcn-win32.cpp │ │ ├── dlfcn-win32.h │ │ ├── os-socket.h │ │ ├── os-threads.cpp │ │ ├── os-threads.h │ │ ├── os-types.h │ │ ├── serialport.cpp │ │ └── stdint.h ├── snesapu │ ├── A2Misc.h │ ├── Macro.Inc │ ├── SNES │ │ └── SNESAPU │ │ │ ├── APU.Asm │ │ │ ├── APU.Inc │ │ │ ├── APU.h │ │ │ ├── DSP.Asm │ │ │ ├── DSP.Inc │ │ │ ├── DSP.h │ │ │ ├── Makefile.in │ │ │ ├── ReadMe.Txt │ │ │ ├── SNESAPU.cpp │ │ │ ├── SNESAPU.def │ │ │ ├── SNESAPU.h │ │ │ ├── SNESAPU.lib │ │ │ ├── SNESAPU.sln │ │ │ ├── SNESAPU.vcproj │ │ │ ├── SPC700.Asm │ │ │ ├── SPC700.Inc │ │ │ ├── SPC700.h │ │ │ └── Version.rc │ ├── Types.h │ └── lgpl.txt ├── stsound │ ├── StSoundLibrary │ │ ├── Depacker.cpp │ │ ├── Depacker.h │ │ ├── LZH │ │ │ ├── lzh.h │ │ │ ├── lzhlib.txt │ │ │ └── lzhxlib.c │ │ ├── Makefile.in │ │ ├── StSoundLibrary.h │ │ ├── StSoundLibrary.vcproj │ │ ├── StSoundLibrary.vcxproj │ │ ├── StSoundLibrary.vcxproj.filters │ │ ├── XBMCYM.cpp │ │ ├── Ym2149Ex.cpp │ │ ├── Ym2149Ex.h │ │ ├── YmMusic.cpp │ │ ├── YmMusic.h │ │ ├── YmTypes.h │ │ ├── YmUserInterface.cpp │ │ ├── Ymload.cpp │ │ ├── Ymload.h │ │ ├── digidrum.cpp │ │ └── digidrum.h │ ├── license.txt │ ├── readme.html │ └── revision.txt ├── timidity │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── ChangeLog.1 │ ├── ChangeLog.2 │ ├── INSTALL │ ├── INSTALL.ja │ ├── Makefile.in │ ├── Makefile.win32 │ ├── NEWS │ ├── README │ ├── README.ja │ ├── TODO │ ├── TiMidity-uj.ad.in │ ├── TiMidity.ad.in │ ├── aclocal.m4 │ ├── autoconf │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── alsa.m4 │ │ ├── ao.m4 │ │ ├── arts.m4 │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── esd.m4 │ │ ├── gtk-2.0.m4 │ │ ├── gtk.m4 │ │ ├── install-sh │ │ ├── libFLAC.m4 │ │ ├── libOggFLAC.m4 │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── ogg.m4 │ │ ├── utils.m4 │ │ └── vorbis.m4 │ ├── common.makefile.in │ ├── config.h.in │ ├── configs │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── msc6-project.zip │ │ ├── msc6-sjis.txt │ │ ├── msc7-project.zip │ │ └── msc7-sjis.txt │ ├── configure.in │ ├── doc │ │ ├── C │ │ │ ├── CHANGES.02i │ │ │ ├── FAQ │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.alsaseq │ │ │ ├── README.dl │ │ │ ├── README.m2m │ │ │ ├── README.mts │ │ │ ├── README.sf │ │ │ ├── README.tk │ │ │ ├── README.w32 │ │ │ ├── README.xaw │ │ │ ├── README.xskin │ │ │ ├── timidity.1 │ │ │ └── timidity.cfg.5 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── ja_JP.eucJP │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.alsaseq │ │ │ ├── README.dl │ │ │ ├── README.m2m │ │ │ ├── README.mts │ │ │ ├── README.sf │ │ │ ├── README.tk │ │ │ ├── README.w32 │ │ │ ├── README.xaw │ │ │ ├── README.xskin │ │ │ ├── timidity.1 │ │ │ └── timidity.cfg.5 │ ├── exports.def │ ├── interface.h.in │ ├── interface │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── VTPrsTbl.c │ │ ├── VTparse.h │ │ ├── alsaseq_c.c │ │ ├── arrow.xbm │ │ ├── bitmaps │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── back.xbm │ │ │ ├── fwrd.xbm │ │ │ ├── next.xbm │ │ │ ├── pause.xbm │ │ │ ├── play.xbm │ │ │ ├── prev.xbm │ │ │ ├── quit.xbm │ │ │ ├── random.xbm │ │ │ ├── repeat.xbm │ │ │ ├── stop.xbm │ │ │ └── timidity.xbm │ │ ├── browser.tcl │ │ ├── check.xbm │ │ ├── dumb_c.c │ │ ├── dynamic_c.c │ │ ├── emacs_c.c │ │ ├── escape_sjis.pl │ │ ├── gtk_c.c │ │ ├── gtk_h.h │ │ ├── gtk_i.c │ │ ├── gtk_p.c │ │ ├── interface_T.txt │ │ ├── interface_a.txt │ │ ├── interface_e.txt │ │ ├── interface_g.txt │ │ ├── interface_i.txt │ │ ├── interface_k.txt │ │ ├── interface_m.txt │ │ ├── interface_n.txt │ │ ├── interface_s.txt │ │ ├── mac_c.c │ │ ├── mac_c.h │ │ ├── mac_mag.c │ │ ├── mac_mag.h │ │ ├── mac_trace.c │ │ ├── mac_wrdwindow.c │ │ ├── mac_wrdwindow.h │ │ ├── misc.tcl │ │ ├── motif.h │ │ ├── motif_bitmaps │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── back.xbm │ │ │ ├── fwd.xbm │ │ │ ├── next.xbm │ │ │ ├── pause.xbm │ │ │ ├── prev.xbm │ │ │ ├── quit.xbm │ │ │ ├── restart.xbm │ │ │ └── timidity.xbm │ │ ├── motif_c.c │ │ ├── motif_i.c │ │ ├── motif_p.c │ │ ├── ncurs_c.c │ │ ├── off.xbm │ │ ├── on.xbm │ │ ├── pixmaps │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── fast.xpm │ │ │ ├── ff.xpm │ │ │ ├── keydown.xpm │ │ │ ├── keyup.xpm │ │ │ ├── loud.xpm │ │ │ ├── nextdisc.xpm │ │ │ ├── nexttrk.xpm │ │ │ ├── open.xpm │ │ │ ├── playpaus.xpm │ │ │ ├── prevdisc.xpm │ │ │ ├── prevtrk.xpm │ │ │ ├── quiet.xpm │ │ │ ├── quit.xpm │ │ │ ├── restart.xpm │ │ │ ├── rew.xpm │ │ │ ├── slow.xpm │ │ │ ├── stop.xpm │ │ │ └── timidity.xpm │ │ ├── portmidisyn_c.c │ │ ├── rtsyn.h │ │ ├── rtsyn_common.c │ │ ├── rtsyn_portmidi.c │ │ ├── rtsyn_winmm.c │ │ ├── server_c.c │ │ ├── server_defs.h │ │ ├── slang_c.c │ │ ├── soundspec.c │ │ ├── soundspec.h │ │ ├── tclIndex │ │ ├── timidity.el │ │ ├── tk_c.c │ │ ├── tkmidity.ptcl │ │ ├── tkpanel.tcl │ │ ├── vt100.c │ │ ├── vt100.h │ │ ├── vt100_c.c │ │ ├── w32g.h │ │ ├── w32g_btn.bmp │ │ ├── w32g_c.c │ │ ├── w32g_dib.c │ │ ├── w32g_dib.h │ │ ├── w32g_i.c │ │ ├── w32g_icon.ico │ │ ├── w32g_ini.c │ │ ├── w32g_mag.c │ │ ├── w32g_mag.h │ │ ├── w32g_playlist.c │ │ ├── w32g_pref.c │ │ ├── w32g_pref.h │ │ ├── w32g_rec.h │ │ ├── w32g_res.h │ │ ├── w32g_res.rc │ │ ├── w32g_sleep.bmp │ │ ├── w32g_subbtn.bmp │ │ ├── w32g_subwin.c │ │ ├── w32g_subwin.h │ │ ├── w32g_subwin2.c │ │ ├── w32g_subwin3.c │ │ ├── w32g_syn.c │ │ ├── w32g_tracer.bmp │ │ ├── w32g_tracer.h │ │ ├── w32g_ut2.c │ │ ├── w32g_ut2.h │ │ ├── w32g_utl.c │ │ ├── w32g_utl.h │ │ ├── w32g_wrd.h │ │ ├── winsyn_c.c │ │ ├── wrdt_dumb.c │ │ ├── wrdt_mac.c │ │ ├── wrdt_tty.c │ │ ├── wrdt_w32g.c │ │ ├── wrdt_wcon.c │ │ ├── wrdt_x.c │ │ ├── x_mag.c │ │ ├── x_mag.h │ │ ├── x_sherry.c │ │ ├── x_sherry.h │ │ ├── x_wrdwindow.c │ │ ├── x_wrdwindow.h │ │ ├── xaw.h │ │ ├── xaw_c.c │ │ ├── xaw_i.c │ │ ├── xaw_redef.c │ │ ├── xskin.h │ │ ├── xskin_c.c │ │ ├── xskin_i.c │ │ ├── xskin_loadBMP.c │ │ └── xskin_spectrum.c │ ├── libarc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── arc.c │ │ ├── arc.h │ │ ├── arc_lzh.c │ │ ├── arc_mime.c │ │ ├── arc_tar.c │ │ ├── arc_zip.c │ │ ├── deflate.c │ │ ├── explode.c │ │ ├── explode.h │ │ ├── inflate.c │ │ ├── unlzh.c │ │ ├── unlzh.h │ │ ├── url.c │ │ ├── url.h │ │ ├── url_b64decode.c │ │ ├── url_buff.c │ │ ├── url_cache.c │ │ ├── url_dir.c │ │ ├── url_file.c │ │ ├── url_ftp.c │ │ ├── url_hqxdecode.c │ │ ├── url_http.c │ │ ├── url_inflate.c │ │ ├── url_mem.c │ │ ├── url_news.c │ │ ├── url_newsgroup.c │ │ ├── url_pipe.c │ │ ├── url_qsdecode.c │ │ ├── url_uudecode.c │ │ └── zip.h │ ├── libunimod │ │ ├── AUTHORS │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── load_669.c │ │ ├── load_amf.c │ │ ├── load_dsm.c │ │ ├── load_far.c │ │ ├── load_gdm.c │ │ ├── load_imf.c │ │ ├── load_it.c │ │ ├── load_m15.c │ │ ├── load_med.c │ │ ├── load_mod.c │ │ ├── load_mtm.c │ │ ├── load_okt.c │ │ ├── load_s3m.c │ │ ├── load_stm.c │ │ ├── load_stx.c │ │ ├── load_ult.c │ │ ├── load_uni.c │ │ ├── load_xm.c │ │ ├── mloader.c │ │ ├── mlutil.c │ │ ├── mmsup.c │ │ ├── munitrk.c │ │ ├── unimod.h │ │ └── unimod_priv.h │ ├── script │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dllutl.rb │ │ ├── lspatch.pl │ │ ├── readme.txt │ │ └── wcc386_w.sh │ ├── timidity │ │ ├── aRts_a.c │ │ ├── aenc.h │ │ ├── aiff_a.c │ │ ├── alsa_a.c │ │ ├── ao_a.c │ │ ├── aq.c │ │ ├── aq.h │ │ ├── au_a.c │ │ ├── audio_cnv.c │ │ ├── audio_cnv.h │ │ ├── audriv.h │ │ ├── audriv_a.c │ │ ├── audriv_al.c │ │ ├── audriv_mme.c │ │ ├── audriv_none.c │ │ ├── bsd20_a.c │ │ ├── buffer_a.c │ │ ├── calcnewt.c │ │ ├── common.c │ │ ├── common.h │ │ ├── controls.c │ │ ├── controls.h │ │ ├── darwin_a.c │ │ ├── dl_dld.c │ │ ├── dl_dlopen.c │ │ ├── dl_dyld.c │ │ ├── dl_hpux.c │ │ ├── dl_w32.c │ │ ├── dlutils.h │ │ ├── effect.c │ │ ├── esd_a.c │ │ ├── filter.c │ │ ├── filter.h │ │ ├── flac_a.c │ │ ├── freq.c │ │ ├── freq.h │ │ ├── gogo_a.c │ │ ├── gogo_a.h │ │ ├── hpux_a.c │ │ ├── hpux_d_a.c │ │ ├── instrum.c │ │ ├── instrum.h │ │ ├── jack_a.c │ │ ├── list_a.c │ │ ├── loadtab.c │ │ ├── m2m.c │ │ ├── mac_a.c │ │ ├── mac_com.h │ │ ├── mac_dlog.c │ │ ├── mac_main.c │ │ ├── mac_main.h │ │ ├── mac_qt_a.c │ │ ├── mac_soundspec.c │ │ ├── mfi.c │ │ ├── mfnode.c │ │ ├── mfnode.h │ │ ├── mid-j.defs │ │ ├── mid.defs │ │ ├── miditrace.c │ │ ├── miditrace.h │ │ ├── mix.c │ │ ├── mix.h │ │ ├── mod.c │ │ ├── mod.h │ │ ├── mod2midi.c │ │ ├── mod2midi.h │ │ ├── modmid_a.c │ │ ├── mt19937ar.c │ │ ├── mt19937ar.h │ │ ├── nas_a.c │ │ ├── newton_table.c │ │ ├── optcode.c │ │ ├── optcode.h │ │ ├── oss_a.c │ │ ├── output.c │ │ ├── output.h │ │ ├── playmidi.c │ │ ├── playmidi.h │ │ ├── portaudio_a.c │ │ ├── quantity.c │ │ ├── quantity.h │ │ ├── raw_a.c │ │ ├── rcp.c │ │ ├── readmidi.c │ │ ├── readmidi.h │ │ ├── recache.c │ │ ├── recache.h │ │ ├── resample.c │ │ ├── resample.h │ │ ├── reverb.c │ │ ├── reverb.h │ │ ├── sbkconv.c │ │ ├── sdl_c.c │ │ ├── sffile.c │ │ ├── sffile.h │ │ ├── sfitem.c │ │ ├── sfitem.h │ │ ├── sflayer.h │ │ ├── smfconv.c │ │ ├── smfconv.h │ │ ├── smplfile.c │ │ ├── sndfont.c │ │ ├── speex_a.c │ │ ├── sun_a.c │ │ ├── sysdep.h │ │ ├── tables.c │ │ ├── tables.h │ │ ├── timidity.c │ │ ├── timidity.h │ │ ├── version.c │ │ ├── vorbis_a.c │ │ ├── w32_a.c │ │ ├── w32_gogo.c │ │ ├── w32_gogo.h │ │ ├── w32_libFLAC_dll.c │ │ ├── w32_libFLAC_dll.h │ │ ├── w32_libFLAC_dll_g.h │ │ ├── w32_libFLAC_dll_i.h │ │ ├── w32_libOggFLAC_dll.c │ │ ├── w32_libOggFLAC_dll.h │ │ ├── w32_libOggFLAC_dll_g.h │ │ ├── w32_libOggFLAC_dll_i.h │ │ ├── w32_portaudio.h │ │ ├── w32_portaudio_dll.c │ │ ├── w32g_ogg_dll.c │ │ ├── w32g_vorbis_dll.c │ │ ├── w32g_vorbisenc_dll.c │ │ ├── wave_a.c │ │ ├── wrd.h │ │ ├── wrd_read.c │ │ └── wrdt.c │ ├── timidity_codec.c │ ├── timidity_codec.h │ └── utils │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bitset.c │ │ ├── bitset.h │ │ ├── fft.c │ │ ├── fft.h │ │ ├── fft4g.c │ │ ├── fft4g.h │ │ ├── getopt.c │ │ ├── mac_readdir.c │ │ ├── mac_readdir.h │ │ ├── mac_util.c │ │ ├── mac_util.h │ │ ├── mblock.c │ │ ├── mblock.h │ │ ├── memb.c │ │ ├── memb.h │ │ ├── net.c │ │ ├── net.h │ │ ├── nkflib.c │ │ ├── nkflib.h │ │ ├── readdir.h │ │ ├── readdir_win.c │ │ ├── strtab.c │ │ ├── strtab.h │ │ ├── support.c │ │ ├── support.h │ │ ├── timer.c │ │ ├── timer.h │ │ └── tmdy_getopt.h ├── vgmstream │ ├── COPYING │ ├── Makefile.in │ ├── XBMCVGM.cpp │ ├── ext_includes │ │ └── pstdint.h │ ├── readme.txt │ ├── src │ │ ├── coding │ │ │ ├── acm_decoder.c │ │ │ ├── acm_decoder.h │ │ │ ├── adx_decoder.c │ │ │ ├── aica_decoder.c │ │ │ ├── coding.h │ │ │ ├── eaxa_decoder.c │ │ │ ├── g721_decoder.c │ │ │ ├── g72x_state.h │ │ │ ├── ima_decoder.c │ │ │ ├── l5_555_decoder.c │ │ │ ├── mpeg_decoder.c │ │ │ ├── msadpcm_decoder.c │ │ │ ├── nds_procyon_decoder.c │ │ │ ├── ngc_afc_decoder.c │ │ │ ├── ngc_dsp_decoder.c │ │ │ ├── ngc_dtk_decoder.c │ │ │ ├── nwa_decoder.c │ │ │ ├── nwa_decoder.h │ │ │ ├── ogg_vorbis_decoder.c │ │ │ ├── pcm_decoder.c │ │ │ ├── psx_decoder.c │ │ │ ├── sdx2_decoder.c │ │ │ ├── ws_decoder.c │ │ │ └── xa_decoder.c │ │ ├── layout │ │ │ ├── aax_layout.c │ │ │ ├── aix_layout.c │ │ │ ├── ast_blocked.c │ │ │ ├── blocked.c │ │ │ ├── caf_blocked.c │ │ │ ├── de2_blocked.c │ │ │ ├── ea_block.c │ │ │ ├── emff_blocked.c │ │ │ ├── filp_blocked.c │ │ │ ├── gsb_blocked.c │ │ │ ├── halpst_blocked.c │ │ │ ├── ims_block.c │ │ │ ├── interleave.c │ │ │ ├── interleave_byte.c │ │ │ ├── layout.h │ │ │ ├── mus_acm_layout.c │ │ │ ├── nolayout.c │ │ │ ├── str_snds_blocked.c │ │ │ ├── thp_blocked.c │ │ │ ├── vs_blocked.c │ │ │ ├── ws_aud_blocked.c │ │ │ ├── wsi_blocked.c │ │ │ ├── xa_blocked.c │ │ │ └── xvas_block.c │ │ ├── libvgmstream.vcproj │ │ ├── meta │ │ │ ├── Cstr.c │ │ │ ├── aax.c │ │ │ ├── acm.c │ │ │ ├── adx_header.c │ │ │ ├── afc_header.c │ │ │ ├── agsc.c │ │ │ ├── ahx.c │ │ │ ├── aifc.c │ │ │ ├── aix.c │ │ │ ├── ast.c │ │ │ ├── bgw.c │ │ │ ├── brstm.c │ │ │ ├── capdsp.c │ │ │ ├── dc_asd.c │ │ │ ├── dc_idvi.c │ │ │ ├── dc_kcey.c │ │ │ ├── dc_str.c │ │ │ ├── dc_wav_dcs.c │ │ │ ├── de2.c │ │ │ ├── ea_header.c │ │ │ ├── ea_old.c │ │ │ ├── emff.c │ │ │ ├── fsb.c │ │ │ ├── gca.c │ │ │ ├── gcsw.c │ │ │ ├── genh.c │ │ │ ├── gsp_gsb.c │ │ │ ├── halpst.c │ │ │ ├── idsp.c │ │ │ ├── ish_isd.c │ │ │ ├── ivb.c │ │ │ ├── kraw.c │ │ │ ├── meta.h │ │ │ ├── msvp.c │ │ │ ├── mus_acm.c │ │ │ ├── musc.c │ │ │ ├── musx.c │ │ │ ├── naomi_spsd.c │ │ │ ├── nds_sad.c │ │ │ ├── nds_strm.c │ │ │ ├── ngc_adpdtk.c │ │ │ ├── ngc_bh2pcm.c │ │ │ ├── ngc_caf.c │ │ │ ├── ngc_dsp_std.c │ │ │ ├── ngc_ffcc_str.c │ │ │ ├── ngc_iadp.c │ │ │ ├── ngc_pdt.c │ │ │ ├── ngc_ssm.c │ │ │ ├── ngc_tydsp.c │ │ │ ├── ngc_waa_wac_wad_wam.c │ │ │ ├── ngc_ymf.c │ │ │ ├── nwa.c │ │ │ ├── ogg_vorbis_file.c │ │ │ ├── pcm.c │ │ │ ├── pos.c │ │ │ ├── ps2_ads.c │ │ │ ├── ps2_ass.c │ │ │ ├── ps2_aus.c │ │ │ ├── ps2_bg00.c │ │ │ ├── ps2_bmdx.c │ │ │ ├── ps2_ccc.c │ │ │ ├── ps2_dxh.c │ │ │ ├── ps2_enth.c │ │ │ ├── ps2_exst.c │ │ │ ├── ps2_filp.c │ │ │ ├── ps2_gbts.c │ │ │ ├── ps2_hgc1.c │ │ │ ├── ps2_ikm.c │ │ │ ├── ps2_ild.c │ │ │ ├── ps2_int.c │ │ │ ├── ps2_joe.c │ │ │ ├── ps2_kces.c │ │ │ ├── ps2_leg.c │ │ │ ├── ps2_mib.c │ │ │ ├── ps2_mic.c │ │ │ ├── ps2_mihb.c │ │ │ ├── ps2_npsf.c │ │ │ ├── ps2_p2bt.c │ │ │ ├── ps2_pnb.c │ │ │ ├── ps2_psh.c │ │ │ ├── ps2_psw.c │ │ │ ├── ps2_rkv.c │ │ │ ├── ps2_rnd.c │ │ │ ├── ps2_rstm.c │ │ │ ├── ps2_rws.c │ │ │ ├── ps2_rxw.c │ │ │ ├── ps2_seg.c │ │ │ ├── ps2_sfs.c │ │ │ ├── ps2_sl3.c │ │ │ ├── ps2_str.c │ │ │ ├── ps2_svag.c │ │ │ ├── ps2_tec.c │ │ │ ├── ps2_vag.c │ │ │ ├── ps2_vas.c │ │ │ ├── ps2_vpk.c │ │ │ ├── ps2_xa2.c │ │ │ ├── ps2_xa30.c │ │ │ ├── psx_cdxa.c │ │ │ ├── psx_fag.c │ │ │ ├── psx_gms.c │ │ │ ├── raw.c │ │ │ ├── riff.c │ │ │ ├── rs03.c │ │ │ ├── rsd.c │ │ │ ├── rsf.c │ │ │ ├── rwsd.c │ │ │ ├── rwx.c │ │ │ ├── sat_dvi.c │ │ │ ├── sat_sap.c │ │ │ ├── sdt.c │ │ │ ├── sfl.c │ │ │ ├── sli.c │ │ │ ├── spt_spd.c │ │ │ ├── ss_stream.c │ │ │ ├── str_asr.c │ │ │ ├── str_snds.c │ │ │ ├── svs.c │ │ │ ├── thp.c │ │ │ ├── vgs.c │ │ │ ├── vs.c │ │ │ ├── wii_mus.c │ │ │ ├── wii_smp.c │ │ │ ├── wii_sng.c │ │ │ ├── wii_sts.c │ │ │ ├── ws_aud.c │ │ │ ├── xbox_ims.c │ │ │ ├── xbox_stma.c │ │ │ ├── xbox_wavm.c │ │ │ ├── xbox_wvs.c │ │ │ ├── xbox_xmu.c │ │ │ ├── xbox_xvas.c │ │ │ ├── xbox_xwav.c │ │ │ ├── xss.c │ │ │ ├── xwb.c │ │ │ ├── ydsp.c │ │ │ └── zwdsp.c │ │ ├── streamfile.c │ │ ├── streamfile.h │ │ ├── streamtypes.h │ │ ├── util.c │ │ ├── util.h │ │ ├── vgmstream.c │ │ └── vgmstream.h │ └── win32 │ │ ├── win32.sln │ │ ├── win32.vcproj │ │ ├── win32.vcxproj │ │ └── win32.vcxproj.filters ├── win32 │ ├── libcrystalhd │ │ ├── bc_dts_defs.h │ │ ├── bc_dts_types.h │ │ ├── libcrystalhd_if.h │ │ └── libcrystalhd_version.h │ ├── liblzo │ │ ├── LZO-1.00.rar │ │ ├── LZO1X.H │ │ ├── LZOCONF.H │ │ └── lzo.lib │ └── pcre │ │ ├── 132html │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── CleanTxt │ │ ├── Detrail │ │ ├── HACKING │ │ ├── INSTALL │ │ ├── LICENCE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── NON-UNIX-USE │ │ ├── PrepareRelease │ │ ├── README │ │ ├── RunGrepTest │ │ ├── RunTest │ │ ├── RunTest.bat │ │ ├── aclocal.m4 │ │ ├── cmake │ │ ├── COPYING-CMAKE-SCRIPTS │ │ ├── FindPackageHandleStandardArgs.cmake │ │ └── FindReadline.cmake │ │ ├── config-cmake.h.in │ │ ├── config.guess │ │ ├── config.h │ │ ├── config.h.generic │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── dftables.c │ │ ├── doc │ │ ├── html │ │ │ ├── index.html │ │ │ ├── pcre-config.html │ │ │ ├── pcre.html │ │ │ ├── pcre_compile.html │ │ │ ├── pcre_compile2.html │ │ │ ├── pcre_config.html │ │ │ ├── pcre_copy_named_substring.html │ │ │ ├── pcre_copy_substring.html │ │ │ ├── pcre_dfa_exec.html │ │ │ ├── pcre_exec.html │ │ │ ├── pcre_free_substring.html │ │ │ ├── pcre_free_substring_list.html │ │ │ ├── pcre_fullinfo.html │ │ │ ├── pcre_get_named_substring.html │ │ │ ├── pcre_get_stringnumber.html │ │ │ ├── pcre_get_stringtable_entries.html │ │ │ ├── pcre_get_substring.html │ │ │ ├── pcre_get_substring_list.html │ │ │ ├── pcre_info.html │ │ │ ├── pcre_maketables.html │ │ │ ├── pcre_refcount.html │ │ │ ├── pcre_study.html │ │ │ ├── pcre_version.html │ │ │ ├── pcreapi.html │ │ │ ├── pcrebuild.html │ │ │ ├── pcrecallout.html │ │ │ ├── pcrecompat.html │ │ │ ├── pcrecpp.html │ │ │ ├── pcredemo.html │ │ │ ├── pcregrep.html │ │ │ ├── pcrematching.html │ │ │ ├── pcrepartial.html │ │ │ ├── pcrepattern.html │ │ │ ├── pcreperform.html │ │ │ ├── pcreposix.html │ │ │ ├── pcreprecompile.html │ │ │ ├── pcresample.html │ │ │ ├── pcrestack.html │ │ │ ├── pcresyntax.html │ │ │ └── pcretest.html │ │ ├── index.html.src │ │ ├── pcre-config.1 │ │ ├── pcre-config.txt │ │ ├── pcre.3 │ │ ├── pcre.txt │ │ ├── pcre_compile.3 │ │ ├── pcre_compile2.3 │ │ ├── pcre_config.3 │ │ ├── pcre_copy_named_substring.3 │ │ ├── pcre_copy_substring.3 │ │ ├── pcre_dfa_exec.3 │ │ ├── pcre_exec.3 │ │ ├── pcre_free_substring.3 │ │ ├── pcre_free_substring_list.3 │ │ ├── pcre_fullinfo.3 │ │ ├── pcre_get_named_substring.3 │ │ ├── pcre_get_stringnumber.3 │ │ ├── pcre_get_stringtable_entries.3 │ │ ├── pcre_get_substring.3 │ │ ├── pcre_get_substring_list.3 │ │ ├── pcre_info.3 │ │ ├── pcre_maketables.3 │ │ ├── pcre_refcount.3 │ │ ├── pcre_study.3 │ │ ├── pcre_version.3 │ │ ├── pcreapi.3 │ │ ├── pcrebuild.3 │ │ ├── pcrecallout.3 │ │ ├── pcrecompat.3 │ │ ├── pcrecpp.3 │ │ ├── pcregrep.1 │ │ ├── pcregrep.txt │ │ ├── pcrematching.3 │ │ ├── pcrepartial.3 │ │ ├── pcrepattern.3 │ │ ├── pcreperform.3 │ │ ├── pcreposix.3 │ │ ├── pcreprecompile.3 │ │ ├── pcresample.3 │ │ ├── pcrestack.3 │ │ ├── pcresyntax.3 │ │ ├── pcretest.1 │ │ ├── pcretest.txt │ │ └── perltest.txt │ │ ├── install-sh │ │ ├── libpcre.pc.in │ │ ├── libpcre │ │ ├── libpcre.vcproj │ │ ├── libpcre.vcxproj │ │ └── libpcre.vcxproj.filters │ │ ├── libpcrecpp.pc.in │ │ ├── libpcreposix.pc.in │ │ ├── ltmain.sh │ │ ├── makevp.bat │ │ ├── makevp_c.txt │ │ ├── makevp_l.txt │ │ ├── missing │ │ ├── pcre-config.in │ │ ├── pcre.h │ │ ├── pcre.h.generic │ │ ├── pcre.h.in │ │ ├── pcre_chartables.c │ │ ├── pcre_chartables.c.dist │ │ ├── pcre_compile.c │ │ ├── pcre_config.c │ │ ├── pcre_dfa_exec.c │ │ ├── pcre_exec.c │ │ ├── pcre_fullinfo.c │ │ ├── pcre_get.c │ │ ├── pcre_globals.c │ │ ├── pcre_info.c │ │ ├── pcre_internal.h │ │ ├── pcre_maketables.c │ │ ├── pcre_newline.c │ │ ├── pcre_ord2utf8.c │ │ ├── pcre_printint.src │ │ ├── pcre_refcount.c │ │ ├── pcre_scanner.cc │ │ ├── pcre_scanner.h │ │ ├── pcre_scanner_unittest.cc │ │ ├── pcre_stringpiece.cc │ │ ├── pcre_stringpiece.h │ │ ├── pcre_stringpiece.h.in │ │ ├── pcre_stringpiece_unittest.cc │ │ ├── pcre_study.c │ │ ├── pcre_tables.c │ │ ├── pcre_try_flipped.c │ │ ├── pcre_ucd.c │ │ ├── pcre_valid_utf8.c │ │ ├── pcre_version.c │ │ ├── pcre_xclass.c │ │ ├── pcrecpp.cc │ │ ├── pcrecpp.h │ │ ├── pcrecpp_internal.h │ │ ├── pcrecpp_unittest.cc │ │ ├── pcrecpparg.h │ │ ├── pcrecpparg.h.in │ │ ├── pcredemo.c │ │ ├── pcregexp.pas │ │ ├── pcregrep.c │ │ ├── pcreposix.c │ │ ├── pcreposix.h │ │ ├── pcretest.c │ │ ├── perltest.pl │ │ ├── testdata │ │ ├── grepinput │ │ ├── grepinput8 │ │ ├── grepinputv │ │ ├── grepinputx │ │ ├── greplist │ │ ├── grepoutput │ │ ├── grepoutput8 │ │ ├── grepoutputN │ │ ├── testinput1 │ │ ├── testinput10 │ │ ├── testinput11 │ │ ├── testinput12 │ │ ├── testinput2 │ │ ├── testinput3 │ │ ├── testinput4 │ │ ├── testinput5 │ │ ├── testinput6 │ │ ├── testinput7 │ │ ├── testinput8 │ │ ├── testinput9 │ │ ├── testoutput1 │ │ ├── testoutput10 │ │ ├── testoutput11 │ │ ├── testoutput12 │ │ ├── testoutput2 │ │ ├── testoutput3 │ │ ├── testoutput4 │ │ ├── testoutput5 │ │ ├── testoutput6 │ │ ├── testoutput7 │ │ ├── testoutput8 │ │ ├── testoutput9 │ │ ├── wintestinput3 │ │ └── wintestoutput3 │ │ └── ucp.h ├── xbadpcm │ ├── ADPCMDll.cpp │ ├── Makefile.in │ ├── adpcm.sln │ ├── adpcm.vcproj │ ├── adpcm.vcxproj │ ├── adpcm.vcxproj.filters │ ├── in_xbadpcm.txt │ ├── mywav.h │ ├── uXboxAdpcmDecoder.c │ └── uXboxAdpcmDecoder.h └── xbmc-dll-symbols │ ├── DllAvFormat.c │ └── Makefile ├── m4 └── ax_python_devel.m4 ├── media ├── Fonts │ ├── arial.ttf │ └── teletext.ttf ├── Splash.png ├── icon.png ├── icon32x32.png ├── weather.zip └── xbmc.icns ├── project ├── BuildDependencies │ ├── DownloadBuildDeps.bat │ ├── DownloadMingwBuildEnv.bat │ ├── bin │ │ ├── libeay32.dll │ │ ├── libiconv2.dll │ │ ├── libintl3.dll │ │ ├── libssl32.dll │ │ └── wget.exe │ ├── mingw_support │ │ └── postinstall │ │ │ ├── patches │ │ │ ├── nomt.diff │ │ │ ├── strcasecmp.diff │ │ │ └── tempnam.diff │ │ │ ├── pi_patches.bat │ │ │ └── pi_patches.sh │ └── scripts │ │ ├── 1_copy_deps_d.bat │ │ ├── PIL_d.bat │ │ ├── PIL_d.txt │ │ ├── boost_d.bat │ │ ├── boost_d.txt │ │ ├── dlextract.bat │ │ ├── dnss_d.bat │ │ ├── dnssd_d.txt │ │ ├── fontconfig_d.bat │ │ ├── fontconfig_d.txt │ │ ├── freetype_d.bat │ │ ├── freetype_d.txt │ │ ├── get_mingw_env.bat │ │ ├── get_mingw_env.txt │ │ ├── get_msys_env.bat │ │ ├── get_msys_env.txt │ │ ├── libbluray_d.bat │ │ ├── libbluray_d.txt │ │ ├── libbzip2_d.bat │ │ ├── libbzip2_d.txt │ │ ├── libcdio_d.bat │ │ ├── libcdio_d.txt │ │ ├── libcec_d.bat │ │ ├── libcec_d.txt │ │ ├── libcurl_d.bat │ │ ├── libcurl_d.txt │ │ ├── libexpat_d.bat │ │ ├── libexpat_d.txt │ │ ├── libflac_d.bat │ │ ├── libflac_d.txt │ │ ├── libfribidi_d.bat │ │ ├── libfribidi_d.txt │ │ ├── libglew_d.bat │ │ ├── libglew_d.txt │ │ ├── libiconv_d.bat │ │ ├── libiconv_d.txt │ │ ├── libjpeg-turbo_d.bat │ │ ├── libjpeg-turbo_d.txt │ │ ├── liblzo_d.bat │ │ ├── liblzo_d.txt │ │ ├── libmicrohttpd_d.bat │ │ ├── libmicrohttpd_d.txt │ │ ├── libnfs_d.bat │ │ ├── libnfs_d.txt │ │ ├── liboggvorbis_d.bat │ │ ├── liboggvorbis_d.txt │ │ ├── libpcre_d.bat.disabled │ │ ├── libpcre_d.txt.disabled │ │ ├── libplist_d.bat │ │ ├── libplist_d.txt │ │ ├── librtmp_d.bat │ │ ├── librtmp_d.txt │ │ ├── libsamplerate_d.bat │ │ ├── libsamplerate_d.txt │ │ ├── libsdl_d.bat │ │ ├── libsdl_d.txt │ │ ├── libsqlite_d.bat │ │ ├── libsqlite_d.txt │ │ ├── libssh_d.bat │ │ ├── libssh_d.txt │ │ ├── mysqlclient_d.bat │ │ ├── mysqlclient_d.txt │ │ ├── python_d.bat │ │ ├── python_d.txt │ │ ├── tinyxml_d.bat │ │ ├── tinyxml_d.txt │ │ ├── yajl_d.bat │ │ ├── yajl_d.txt │ │ ├── zlib_d.bat │ │ └── zlib_d.txt ├── VS2010Express │ ├── UnrarXLib.vcxproj │ ├── UnrarXLib.vcxproj.filters │ ├── VC90.CRT.x86.manifest │ ├── XBMC for Windows.props │ ├── XBMC for Windows.sln │ ├── XBMC.vcxproj │ ├── XBMC.vcxproj.filters │ ├── libPlatinum.vcxproj │ ├── libPlatinum.vcxproj.filters │ └── update_git_rev.bat └── Win32BuildSetup │ ├── BuildSetup.bat │ ├── XBMC for Windows.nsi │ ├── buildmingwlibs.bat │ ├── buildmingwlibs.sh │ ├── buildplugins.bat │ ├── buildscripts.bat │ ├── buildskins.bat │ ├── extract_git_rev.bat │ ├── genNsisIncludes.bat │ ├── getdeploydependencies.bat │ ├── readme.txt │ ├── tools │ ├── 7z │ │ ├── 7-zip.chm │ │ ├── 7za.exe │ │ ├── License.txt │ │ ├── copying.txt │ │ └── readme.txt │ └── Unrar │ │ ├── UnRAR.exe │ │ └── license.txt │ └── xbmc-left.bmp ├── sounds └── Bursting Bubbles │ ├── nav.wav │ └── sounds.xml ├── system ├── IRSSmap.xml ├── Lircmap.xml ├── PVRDemoAddonSettings.xml ├── X10-Lola-IRSSmap.xml ├── asound.conf ├── cdrip │ └── lame_enc-x86-osx.so ├── colors.xml ├── keymaps │ ├── appcommand.xml │ ├── gamepad.xml │ ├── joystick.Alienware.Dual.Compatible.Controller.xml │ ├── joystick.AppleRemote.xml │ ├── joystick.Harmony.xml │ ├── joystick.Interact.AxisPad.xml │ ├── joystick.Logitech.RumblePad.2.xml │ ├── joystick.Microsoft.Xbox.360.Controller.xml │ ├── joystick.Microsoft.Xbox.Controller.S.xml │ ├── joystick.PS3.Remote.Keyboard.xml │ ├── joystick.Sony.PLAYSTATION(R)3.Controller.xml │ ├── joystick.WiiRemote.xml │ ├── keyboard.xml │ ├── mouse.xml │ ├── nyxboard │ │ └── keyboard.xml │ └── remote.xml ├── peripherals.xml ├── playercorefactory.xml ├── players │ └── dvdplayer │ │ └── etc │ │ └── fonts │ │ ├── conf.avail │ │ ├── 10-autohint.conf │ │ ├── 10-no-sub-pixel.conf │ │ ├── 10-sub-pixel-bgr.conf │ │ ├── 10-sub-pixel-rgb.conf │ │ ├── 10-sub-pixel-vbgr.conf │ │ ├── 10-sub-pixel-vrgb.conf │ │ ├── 10-unhinted.conf │ │ ├── 20-fix-globaladvance.conf │ │ ├── 20-lohit-gujarati.conf │ │ ├── 20-unhint-small-vera.conf │ │ ├── 30-amt-aliases.conf │ │ ├── 30-urw-aliases.conf │ │ ├── 40-generic.conf │ │ ├── 49-sansserif.conf │ │ ├── 50-user.conf │ │ ├── 51-local.conf │ │ ├── 60-latin.conf │ │ ├── 65-fonts-persian.conf │ │ ├── 65-nonlatin.conf │ │ ├── 69-unifont.conf │ │ ├── 70-no-bitmaps.conf │ │ ├── 70-yes-bitmaps.conf │ │ ├── 80-delicious.conf │ │ ├── 90-synthetic.conf │ │ └── README │ │ ├── conf.d │ │ ├── 20-fix-globaladvance.conf │ │ ├── 20-lohit-gujarati.conf │ │ ├── 20-unhint-small-vera.conf │ │ ├── 30-amt-aliases.conf │ │ ├── 30-urw-aliases.conf │ │ ├── 40-generic.conf │ │ ├── 49-sansserif.conf │ │ ├── 50-user.conf │ │ ├── 51-local.conf │ │ ├── 60-latin.conf │ │ ├── 65-fonts-persian.conf │ │ ├── 65-nonlatin.conf │ │ ├── 69-unifont.conf │ │ ├── 80-delicious.conf │ │ └── 90-synthetic.conf │ │ ├── fonts.conf │ │ └── fonts.dtd ├── python │ └── readme.txt └── shaders │ ├── convolution-4x4.glsl │ ├── convolution-4x4_d3d.fx │ ├── convolution-6x6.glsl │ ├── convolution-6x6_d3d.fx │ ├── convolutionsep-4x4_d3d.fx │ ├── convolutionsep-6x6_d3d.fx │ ├── guishader_frag_default.glsl │ ├── guishader_frag_fonts.glsl │ ├── guishader_frag_multi.glsl │ ├── guishader_frag_multi_blendcolor.glsl │ ├── guishader_frag_rgba.glsl │ ├── guishader_frag_rgba_blendcolor.glsl │ ├── guishader_frag_texture.glsl │ ├── guishader_frag_texture_noblend.glsl │ ├── guishader_vert.glsl │ ├── stretch.glsl │ ├── testshader.fx │ ├── yuv2rgb_basic.glsl │ ├── yuv2rgb_basic_2d.arb │ ├── yuv2rgb_basic_2d_UYVY.arb │ ├── yuv2rgb_basic_2d_YUY2.arb │ ├── yuv2rgb_basic_gles.glsl │ ├── yuv2rgb_basic_rect.arb │ ├── yuv2rgb_basic_rect_UYVY.arb │ ├── yuv2rgb_basic_rect_YUY2.arb │ ├── yuv2rgb_bob.glsl │ ├── yuv2rgb_bob_gles.glsl │ ├── yuv2rgb_d3d.fx │ ├── yuv2rgb_vertex.glsl │ └── yuv2rgb_vertex_gles.glsl ├── tools ├── EventClients │ ├── Clients │ │ ├── J2ME Client │ │ │ ├── README │ │ │ ├── build.xml │ │ │ ├── icons │ │ │ │ └── icon.png │ │ │ ├── j2me_remote.py │ │ │ ├── manifest.mf │ │ │ └── src │ │ │ │ ├── BluetoothCommunicator.java │ │ │ │ ├── BluetoothEvent.java │ │ │ │ ├── BluetoothServiceDiscovery.java │ │ │ │ ├── KeyCanvas.java │ │ │ │ ├── KeyHandler.java │ │ │ │ ├── MainScreen.java │ │ │ │ └── XBMCRemote.jad │ │ ├── OSXRemote │ │ │ ├── HIDRemote │ │ │ │ ├── HIDRemote.h │ │ │ │ └── HIDRemote.m │ │ │ ├── Makefile.in │ │ │ ├── XBMCDebugHelpers.h │ │ │ ├── XBMCHelper.h │ │ │ ├── XBMCHelper.m │ │ │ ├── XBMCHelper.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── xbmcclientwrapper.h │ │ │ ├── xbmcclientwrapper.mm │ │ │ └── xbmchelper_main.mm │ │ ├── PS3 BD Remote │ │ │ └── ps3_remote.py │ │ ├── PS3 Sixaxis Controller │ │ │ ├── README.ubuntu │ │ │ └── ps3d.py │ │ ├── WiiRemote │ │ │ ├── CWIID_WiiRemote.cpp │ │ │ ├── CWIID_WiiRemote.h │ │ │ ├── Makefile │ │ │ ├── WiiUse_README │ │ │ ├── WiiUse_WiiRemote.cpp │ │ │ ├── WiiUse_WiiRemote.h │ │ │ └── wiiuse_v0.12 │ │ │ │ ├── CHANGELOG │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE_noncommercial │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── example-sdl │ │ │ │ ├── Makefile │ │ │ │ ├── msvc │ │ │ │ │ ├── wiiusesdl.dsp │ │ │ │ │ ├── wiiusesdl.dsw │ │ │ │ │ └── wiiusesdl.opt │ │ │ │ └── sdl.c │ │ │ │ ├── example │ │ │ │ ├── Makefile │ │ │ │ ├── example.c │ │ │ │ └── msvc │ │ │ │ │ ├── wiiuseexample.dsp │ │ │ │ │ ├── wiiuseexample.dsw │ │ │ │ │ └── wiiuseexample.opt │ │ │ │ ├── src │ │ │ │ ├── Makefile │ │ │ │ ├── classic.c │ │ │ │ ├── classic.h │ │ │ │ ├── definitions.h │ │ │ │ ├── dynamics.c │ │ │ │ ├── dynamics.h │ │ │ │ ├── events.c │ │ │ │ ├── events.h │ │ │ │ ├── guitar_hero_3.c │ │ │ │ ├── guitar_hero_3.h │ │ │ │ ├── io.c │ │ │ │ ├── io.h │ │ │ │ ├── io_nix.c │ │ │ │ ├── io_win.c │ │ │ │ ├── ir.c │ │ │ │ ├── ir.h │ │ │ │ ├── msvc │ │ │ │ │ ├── wiiuse.dsp │ │ │ │ │ ├── wiiuse.dsw │ │ │ │ │ └── wiiuse.opt │ │ │ │ ├── nunchuk.c │ │ │ │ ├── nunchuk.h │ │ │ │ ├── os.h │ │ │ │ ├── wiiuse.c │ │ │ │ ├── wiiuse.h │ │ │ │ └── wiiuse_internal.h │ │ │ │ ├── wiiuse.cbp │ │ │ │ └── wiiuse.layout │ │ ├── XBMC Send │ │ │ └── xbmc-send.py │ │ └── Xbox360 Controller │ │ │ ├── Xbox360Controller.cpp │ │ │ ├── Xbox360Controller.h │ │ │ ├── Xbox360EventClient.cpp │ │ │ ├── Xbox360EventClient.vcproj │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ ├── Makefile │ ├── README.txt │ ├── examples │ │ ├── c# │ │ │ └── XBMCDemoClient1.cs │ │ ├── c++ │ │ │ ├── example_button1.cpp │ │ │ ├── example_button2.cpp │ │ │ ├── example_log.cpp │ │ │ ├── example_mouse.cpp │ │ │ └── example_notification.cpp │ │ ├── java │ │ │ └── XBMCDemoClient1.java │ │ └── python │ │ │ ├── example_action.py │ │ │ ├── example_button1.py │ │ │ ├── example_button2.py │ │ │ ├── example_mouse.py │ │ │ ├── example_notification.py │ │ │ └── example_simple.py │ ├── icons │ │ ├── bluetooth.png │ │ ├── mail.png │ │ ├── mouse.png │ │ └── phone.png │ └── lib │ │ ├── c# │ │ └── EventClient.cs │ │ ├── c++ │ │ └── xbmcclient.h │ │ ├── java │ │ ├── build.xml │ │ └── src │ │ │ └── org │ │ │ └── xbmc │ │ │ └── eventclient │ │ │ ├── Packet.java │ │ │ ├── PacketACTION.java │ │ │ ├── PacketBUTTON.java │ │ │ ├── PacketBYE.java │ │ │ ├── PacketHELO.java │ │ │ ├── PacketLOG.java │ │ │ ├── PacketMOUSE.java │ │ │ ├── PacketNOTIFICATION.java │ │ │ ├── PacketPING.java │ │ │ └── XBMCClient.java │ │ └── python │ │ ├── __init__.py │ │ ├── bt │ │ ├── __init__.py │ │ ├── bt.py │ │ └── hid.py │ │ ├── ps3 │ │ ├── __init__.py │ │ ├── keymaps.py │ │ ├── sixaxis.py │ │ ├── sixpair.py │ │ └── sixwatch.py │ │ ├── xbmcclient.py │ │ └── zeroconf.py ├── Fake Episode Maker │ ├── main.py │ ├── openAnything.py │ ├── readme.txt │ └── shows.txt ├── Linux │ ├── FEH-ARM.py │ ├── FEH.py │ ├── xbmc-48x48.png │ ├── xbmc-standalone.sh.in │ ├── xbmc-standalone.sh.pulse │ ├── xbmc-xsession.desktop │ ├── xbmc.desktop │ └── xbmc.sh.in ├── TexturePacker │ ├── MakeDDS.cpp │ ├── Makefile.in │ ├── SDL_anigif.cpp │ ├── SDL_anigif.h │ ├── SimpleFS.h │ ├── TexturePacker.exe │ ├── Win32 │ │ ├── MakeDDS.vcxproj │ │ ├── MakeDDS.vcxproj.filters │ │ ├── TexturePacker.sln │ │ ├── TexturePacker.vcxproj │ │ ├── TexturePacker.vcxproj.filters │ │ ├── dirent.c │ │ └── dirent.h │ ├── XBMCTex.cpp │ ├── XBTFWriter.cpp │ ├── XBTFWriter.h │ ├── cmdlineargs.h │ ├── md5.cpp │ ├── md5.h │ ├── xwinapi.cpp │ └── xwinapi.h ├── Translator │ ├── Changelog.txt │ ├── Setup │ │ └── Setup.vdproj │ ├── Translator.sln │ └── Translator │ │ ├── AboutForm.cs │ │ ├── AboutForm.resx │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── ChooseLanguageForm.cs │ │ ├── ChooseLanguageForm.resx │ │ ├── EditStringForm.cs │ │ ├── EditStringForm.resx │ │ ├── Enumerator.cs │ │ ├── FindForm.cs │ │ ├── FindForm.resx │ │ ├── LanguageInfo.cs │ │ ├── LanguageInfoForm.cs │ │ ├── LanguageInfoForm.resx │ │ ├── ListViewItemString.cs │ │ ├── MainForm.cs │ │ ├── MainForm.de.resx │ │ ├── MainForm.en.resx │ │ ├── MainForm.resx │ │ ├── NewLanguageForm.cs │ │ ├── NewLanguageForm.resx │ │ ├── RegionForm.cs │ │ ├── RegionForm.resx │ │ ├── Settings.cs │ │ ├── StringArray.cs │ │ ├── StringItem.cs │ │ ├── TranslationManager.cs │ │ ├── Translator.csproj │ │ ├── TranslatorArray.cs │ │ ├── TranslatorException.cs │ │ ├── TranslatorItem.cs │ │ ├── UserForm.cs │ │ └── UserForm.resx ├── UpdateThumbs.py ├── arm │ └── arm-scripts │ │ ├── create-pkgsfile.sh │ │ ├── create-xbmcfile.sh │ │ ├── install-gcc4.5_armel.sh │ │ ├── install-pkgs.sh │ │ └── pkg-paths.txt ├── buildbot │ ├── darwin-depends-check │ └── gitrev-posix ├── darwin │ ├── depends │ │ ├── .autom4te.cfg │ │ ├── Backrow │ │ │ └── Makefile │ │ ├── COPYING │ │ ├── Makefile.in │ │ ├── Makefile.include.in │ │ ├── README │ │ ├── afpfs-ng │ │ │ ├── 01-gcrypt.patch │ │ │ ├── 02-pointer.patch │ │ │ ├── 04-boxee1.patch │ │ │ ├── 05-boxee2.patch │ │ │ ├── 06-boxee3.patch │ │ │ ├── 07-boxee4.patch │ │ │ ├── 08-boxee5.patch │ │ │ ├── 10-fix-errno.patch │ │ │ ├── 11-fix-stat.patch │ │ │ ├── Makefile │ │ │ └── fix_afpfs-ng_includes.patch │ │ ├── autoconf │ │ │ └── Makefile │ │ ├── automake │ │ │ └── Makefile │ │ ├── boost │ │ │ ├── Makefile │ │ │ └── user-config.jam.in │ │ ├── bootstrap │ │ ├── cmake │ │ │ └── Makefile │ │ ├── config.site_ios.in │ │ ├── config.site_ios.mk.in │ │ ├── config.site_osx.in │ │ ├── config.site_osx.mk.in │ │ ├── configure.in │ │ ├── curl │ │ │ └── Makefile │ │ ├── distribute │ │ │ └── Makefile │ │ ├── distutilscross │ │ │ └── Makefile │ │ ├── dpkg │ │ │ └── Makefile │ │ ├── expat │ │ │ └── Makefile │ │ ├── fontconfig │ │ │ ├── 01-fontconfig-cross-compile-fix.patch │ │ │ └── Makefile │ │ ├── freetype2 │ │ │ └── Makefile │ │ ├── fribidi │ │ │ └── Makefile │ │ ├── gas-preprocessor │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── gas-preprocessor.pl │ │ ├── gettext │ │ │ ├── 01-gettext-tools-Makefile.in.patch │ │ │ ├── 02-gettext-tools-stpncpy.patch │ │ │ └── Makefile │ │ ├── help2man │ │ │ └── Makefile │ │ ├── jpeg │ │ │ └── Makefile │ │ ├── lib-gpgerror │ │ │ └── Makefile │ │ ├── libGLEW │ │ │ ├── 01-Makefile.patch │ │ │ ├── 02-Makefile.darwin.patch │ │ │ └── Makefile │ │ ├── libarchive │ │ │ └── Makefile │ │ ├── libass │ │ │ └── Makefile │ │ ├── libbluray │ │ │ └── Makefile │ │ ├── libcdio │ │ │ └── Makefile │ │ ├── libcec │ │ │ └── Makefile │ │ ├── libcrystalhd │ │ │ ├── Makefile │ │ │ └── libcrystalhd │ │ │ │ ├── bc_dts_defs.h │ │ │ │ ├── bc_dts_types.h │ │ │ │ ├── libcrystalhd_if.h │ │ │ │ └── libcrystalhd_version.h │ │ ├── libflac │ │ │ └── Makefile │ │ ├── libgcrypt │ │ │ └── Makefile │ │ ├── libgpg-error │ │ │ └── Makefile │ │ ├── libjpeg-turbo │ │ │ └── Makefile │ │ ├── liblzo2 │ │ │ ├── 01-liblzo2-only-build-lib.patch │ │ │ └── Makefile │ │ ├── libmad │ │ │ ├── 01-libmad-pkgconfig.patch │ │ │ ├── 02-libmad-thumb-fix.patch │ │ │ └── Makefile │ │ ├── libmicrohttpd │ │ │ └── Makefile │ │ ├── libmodplug │ │ │ └── Makefile │ │ ├── libmpeg2 │ │ │ ├── 01-libmpeg2-add-asm-leading-underscores.patch │ │ │ ├── 02-neon.patch │ │ │ ├── 03-config-fix.patch │ │ │ └── Makefile │ │ ├── libnfs │ │ │ ├── 001_fix_hanewin.patch │ │ │ ├── Makefile │ │ │ └── rpcinc │ │ │ │ ├── auth.h │ │ │ │ ├── auth_unix.h │ │ │ │ ├── clnt.h │ │ │ │ ├── pmap_clnt.h │ │ │ │ ├── pmap_prot.h │ │ │ │ ├── pmap_rmt.h │ │ │ │ ├── rpc.h │ │ │ │ ├── rpc_msg.h │ │ │ │ ├── svc.h │ │ │ │ ├── svc_auth.h │ │ │ │ ├── types.h │ │ │ │ └── xdr.h │ │ ├── libogg │ │ │ └── Makefile │ │ ├── libplist │ │ │ ├── 0001-dontbuildswig.patch │ │ │ └── Makefile │ │ ├── libpng │ │ │ └── Makefile │ │ ├── librtmp │ │ │ └── Makefile │ │ ├── libsamplerate │ │ │ ├── 01-libsamplerate-arm.patch │ │ │ └── Makefile │ │ ├── libsdl │ │ │ ├── 01-SDL_SetWidthHeight.patch │ │ │ └── Makefile │ │ ├── libsdl_image │ │ │ └── Makefile │ │ ├── libsdl_mixer │ │ │ └── Makefile │ │ ├── libshairport │ │ │ ├── 001_add_ao.patch │ │ │ ├── 002_fix_install_header.patch │ │ │ ├── 003_fix_deadlock.patch │ │ │ ├── 004_fix_bad_access.patch │ │ │ ├── 005_fix_shutdown.patch │ │ │ ├── 006_no_printf.patch │ │ │ ├── 007_fix_syslog_defines.patch │ │ │ ├── 008-add-missing-libs.patch │ │ │ ├── 009_fix_ipv6.patch │ │ │ └── Makefile │ │ ├── libssh │ │ │ ├── Makefile │ │ │ └── removelegacy.patch │ │ ├── libssh2 │ │ │ └── Makefile │ │ ├── libtool │ │ │ └── Makefile │ │ ├── libusb │ │ │ └── Makefile │ │ ├── libvorbis │ │ │ └── Makefile │ │ ├── libyajl │ │ │ └── Makefile │ │ ├── m4 │ │ │ └── Makefile │ │ ├── mysqlclient │ │ │ ├── 01-mysqlclient-cross-compile.patch │ │ │ ├── 02-mysqlclient-ios.patch │ │ │ └── Makefile │ │ ├── openssl │ │ │ └── Makefile │ │ ├── pcre │ │ │ └── Makefile │ │ ├── pkg-config │ │ │ └── Makefile │ │ ├── python26 │ │ │ ├── Makefile.ios │ │ │ ├── Makefile.osx │ │ │ ├── Python-2.6-ctypes.patch │ │ │ └── Python-2.6.5-xcompile.patch │ │ ├── readline │ │ │ └── Makefile │ │ ├── samba │ │ │ ├── 01-bugfix-8385.patch │ │ │ └── Makefile │ │ ├── sed │ │ │ └── Makefile │ │ ├── sqlite3 │ │ │ └── Makefile │ │ ├── tar │ │ │ └── Makefile │ │ ├── tiff │ │ │ └── Makefile │ │ ├── tinyxml │ │ │ └── Makefile │ │ ├── xbmc │ │ │ └── Makefile │ │ └── yasm │ │ │ └── Makefile │ ├── packaging │ │ ├── xbmc-atv2 │ │ │ └── mkdeb-xbmc-atv2.sh │ │ ├── xbmc-icon │ │ │ ├── mirrors.xbmc.org.png │ │ │ └── mkdeb-xbmc-iconpack.sh │ │ ├── xbmc-ios │ │ │ └── mkdeb-xbmc-ios.sh │ │ ├── xbmc-osx │ │ │ ├── Makefile │ │ │ ├── VolumeDSStore │ │ │ ├── VolumeDSStoreApp │ │ │ ├── VolumeIcon.icns │ │ │ ├── background │ │ │ │ ├── DiskImageBackground.png │ │ │ │ └── DiskImageBackgroundDebug.png │ │ │ └── dmgmaker.pl │ │ └── xbmc-seatbeltunlock │ │ │ ├── 03e48c66a9cae1ff768eb3fe7981c499.patch │ │ │ ├── 12313417e3afeba6531255af58cb5283.patch │ │ │ ├── 42d00865f281bb662b6ce447c9815e59.patch │ │ │ ├── 5a28620a15c15d41e1ae836dd1f95f8d.patch │ │ │ └── mkdeb-xbmc-seatbeltunlock.sh │ └── runtime │ │ ├── XBMCHelper │ │ ├── org.xbmc.helper.plist │ │ └── preflight └── win32buildtools │ └── nasmw.exe ├── userdata ├── LCD.xml ├── ModeLines_template.xml ├── PictureIcon │ ├── Picon │ │ └── tuxbox.png │ ├── Readme.txt │ └── picon.xml └── RssFeeds.xml ├── xbmc-xrandr.c └── xbmc ├── Application.cpp ├── Application.h ├── ApplicationMessenger.cpp ├── ApplicationMessenger.h ├── AutoSwitch.cpp ├── AutoSwitch.h ├── Autorun.cpp ├── Autorun.h ├── BackgroundInfoLoader.cpp ├── BackgroundInfoLoader.h ├── CueDocument.cpp ├── CueDocument.h ├── DllPaths.h ├── DllPaths_generated.h.in ├── DllPaths_win32.h ├── DynamicDll.cpp ├── DynamicDll.h ├── Favourites.cpp ├── Favourites.h ├── FileItem.cpp ├── FileItem.h ├── GUIInfoManager.cpp ├── GUIInfoManager.h ├── GUILargeTextureManager.cpp ├── GUILargeTextureManager.h ├── GUIPassword.cpp ├── GUIPassword.h ├── GUIUserMessages.h ├── GUIViewControl.cpp ├── GUIViewControl.h ├── GUIViewState.cpp ├── GUIViewState.h ├── IProgressCallback.h ├── LangInfo.cpp ├── LangInfo.h ├── Makefile.in ├── MediaSource.cpp ├── MediaSource.h ├── NfoFile.cpp ├── NfoFile.h ├── PartyModeManager.cpp ├── PartyModeManager.h ├── PasswordManager.cpp ├── PasswordManager.h ├── PlayListPlayer.cpp ├── PlayListPlayer.h ├── SectionLoader.cpp ├── SectionLoader.h ├── SortFileItem.cpp ├── SortFileItem.h ├── SystemGlobals.cpp ├── Temperature.cpp ├── Temperature.h ├── TextureCache.cpp ├── TextureCache.h ├── TextureDatabase.cpp ├── TextureDatabase.h ├── ThumbLoader.cpp ├── ThumbLoader.h ├── ThumbnailCache.cpp ├── ThumbnailCache.h ├── URL.cpp ├── URL.h ├── Util.cpp ├── Util.h ├── ViewDatabase.cpp ├── ViewDatabase.h ├── ViewState.h ├── XBApplicationEx.cpp ├── XBApplicationEx.h ├── XBDateTime.cpp ├── XBDateTime.h ├── addons ├── Addon.cpp ├── Addon.h ├── AddonCallbacks.cpp ├── AddonCallbacks.h ├── AddonCallbacksAddon.cpp ├── AddonCallbacksAddon.h ├── AddonCallbacksGUI.cpp ├── AddonCallbacksGUI.h ├── AddonCallbacksPVR.cpp ├── AddonCallbacksPVR.h ├── AddonDatabase.cpp ├── AddonDatabase.h ├── AddonDll.h ├── AddonInstaller.cpp ├── AddonInstaller.h ├── AddonManager.cpp ├── AddonManager.h ├── AddonStatusHandler.cpp ├── AddonStatusHandler.h ├── AddonVersion.cpp ├── AddonVersion.h ├── DllAddon.h ├── DllLibCPluff.h ├── DllPVRClient.h ├── GUIDialogAddonInfo.cpp ├── GUIDialogAddonInfo.h ├── GUIDialogAddonSettings.cpp ├── GUIDialogAddonSettings.h ├── GUIViewStateAddonBrowser.cpp ├── GUIViewStateAddonBrowser.h ├── GUIWindowAddonBrowser.cpp ├── GUIWindowAddonBrowser.h ├── IAddon.h ├── Makefile ├── PluginSource.cpp ├── PluginSource.h ├── Repository.cpp ├── Repository.h ├── Scraper.cpp ├── Scraper.h ├── ScreenSaver.cpp ├── ScreenSaver.h ├── Service.cpp ├── Service.h ├── Skin.cpp ├── Skin.h ├── Visualisation.cpp ├── Visualisation.h └── include │ ├── NOTE │ ├── xbmc_addon_cpp_dll.h │ ├── xbmc_addon_dll.h │ ├── xbmc_addon_types.h │ ├── xbmc_pvr_dll.h │ ├── xbmc_pvr_types.h │ ├── xbmc_scr_dll.h │ ├── xbmc_scr_types.h │ ├── xbmc_vis_dll.h │ └── xbmc_vis_types.h ├── cdrip ├── CDDAReader.cpp ├── CDDAReader.h ├── CDDARipper.cpp ├── CDDARipper.h ├── DllFlacEnc.h ├── DllLameenc.h ├── DllOgg.h ├── DllVorbis.h ├── DllVorbisEnc.h ├── Encoder.cpp ├── Encoder.h ├── EncoderFFmpeg.cpp ├── EncoderFFmpeg.h ├── EncoderFlac.cpp ├── EncoderFlac.h ├── EncoderLame.cpp ├── EncoderLame.h ├── EncoderVorbis.cpp ├── EncoderVorbis.h ├── EncoderWav.cpp ├── EncoderWav.h ├── Makefile.in └── lame │ └── lame.h ├── cores ├── AudioRenderers │ ├── ALSADirectSound.cpp │ ├── ALSADirectSound.h │ ├── AudioRendererFactory.cpp │ ├── AudioRendererFactory.h │ ├── CoreAudioRenderer.cpp │ ├── CoreAudioRenderer.h │ ├── IAudioRenderer.h │ ├── IOSAudioRenderer.cpp │ ├── IOSAudioRenderer.h │ ├── IOSAudioRingBuffer.h │ ├── Makefile.in │ ├── Makefile.include │ ├── NullDirectSound.cpp │ ├── NullDirectSound.h │ ├── PulseAudioDirectSound.cpp │ ├── PulseAudioDirectSound.h │ ├── Win32DirectSound.cpp │ ├── Win32DirectSound.h │ ├── Win32WASAPI.cpp │ └── Win32WASAPI.h ├── DllLoader │ ├── DllLoader-linux.cpp │ ├── DllLoader.cpp │ ├── DllLoader.h │ ├── DllLoaderContainer.cpp │ ├── DllLoaderContainer.h │ ├── LibraryLoader.cpp │ ├── LibraryLoader.h │ ├── Makefile.in │ ├── SoLoader.cpp │ ├── SoLoader.h │ ├── Win32DllLoader.cpp │ ├── Win32DllLoader.h │ ├── coff.cpp │ ├── coff.h │ ├── coffldr.h │ ├── dll.cpp │ ├── dll.h │ ├── dll_tracker.cpp │ ├── dll_tracker.h │ ├── dll_tracker_file.cpp │ ├── dll_tracker_file.h │ ├── dll_tracker_library.cpp │ ├── dll_tracker_library.h │ ├── dll_util.cpp │ ├── dll_util.h │ ├── exports │ │ ├── Makefile │ │ ├── emu_dummy.cpp │ │ ├── emu_dummy.h │ │ ├── emu_kernel32.cpp │ │ ├── emu_kernel32.h │ │ ├── emu_msvcrt.cpp │ │ ├── emu_msvcrt.h │ │ ├── emu_socket │ │ │ ├── addrinfo.h │ │ │ ├── addrsize.h │ │ │ ├── bittypes.h │ │ │ ├── emu_socket.h │ │ │ ├── getaddrinfo.c │ │ │ ├── getnameinfo.c │ │ │ ├── inet_aton.c │ │ │ ├── inet_ntop.c │ │ │ ├── inet_pton.c │ │ │ └── sockstorage.h │ │ ├── kernel32.def │ │ ├── msvcrt.def │ │ ├── pncrt.def │ │ ├── util │ │ │ ├── EmuFileWrapper.cpp │ │ │ ├── EmuFileWrapper.h │ │ │ └── Makefile │ │ ├── win32-dirent.cpp │ │ ├── win32-dirent.h │ │ ├── winMM.def │ │ ├── wrapper.c │ │ ├── wrapper_mach_alias │ │ └── ws2_32.def │ ├── ldt_keeper.c │ ├── ldt_keeper.h │ ├── mmap_anon.c │ └── mmap_anon.h ├── DummyVideoPlayer.cpp ├── DummyVideoPlayer.h ├── ExternalPlayer │ ├── ExternalPlayer.cpp │ ├── ExternalPlayer.h │ └── Makefile ├── IAudioCallback.h ├── IPlayer.h ├── Makefile.in ├── VideoRenderers │ ├── BaseRenderer.cpp │ ├── BaseRenderer.h │ ├── LinuxRendererGL.cpp │ ├── LinuxRendererGL.h │ ├── LinuxRendererGLES.cpp │ ├── LinuxRendererGLES.h │ ├── Makefile.in │ ├── OverlayRenderer.cpp │ ├── OverlayRenderer.h │ ├── OverlayRendererDX.cpp │ ├── OverlayRendererDX.h │ ├── OverlayRendererGL.cpp │ ├── OverlayRendererGL.h │ ├── OverlayRendererUtil.cpp │ ├── OverlayRendererUtil.h │ ├── RenderCapture.cpp │ ├── RenderCapture.h │ ├── RenderFlags.h │ ├── RenderManager.cpp │ ├── RenderManager.h │ ├── VideoShaders │ │ ├── ConvolutionKernels.cpp │ │ ├── ConvolutionKernels.h │ │ ├── Makefile │ │ ├── VideoFilterShader.cpp │ │ ├── VideoFilterShader.h │ │ ├── WinVideoFilter.cpp │ │ ├── WinVideoFilter.h │ │ ├── YUV2RGBShader.cpp │ │ └── YUV2RGBShader.h │ ├── WinRenderer.cpp │ ├── WinRenderer.h │ ├── legacy │ │ ├── ComboRenderer.cpp │ │ ├── ComboRenderer.h │ │ ├── RGBRendererV2.cpp │ │ ├── RGBRendererV2.h │ │ ├── yuv2rgb_4x4_d3d.fx │ │ └── yuv2rgb_6x6_d3d.fx │ ├── yuv2rgb.neon.S │ └── yuv2rgb.neon.h ├── dvdplayer │ ├── DVDAudio.cpp │ ├── DVDAudio.h │ ├── DVDClock.cpp │ ├── DVDClock.h │ ├── DVDCodecs │ │ ├── Audio │ │ │ ├── DVDAudioCodec.h │ │ │ ├── DVDAudioCodecFFmpeg.cpp │ │ │ ├── DVDAudioCodecFFmpeg.h │ │ │ ├── DVDAudioCodecLPcm.cpp │ │ │ ├── DVDAudioCodecLPcm.h │ │ │ ├── DVDAudioCodecLibMad.cpp │ │ │ ├── DVDAudioCodecLibMad.h │ │ │ ├── DVDAudioCodecPassthroughFFmpeg.cpp │ │ │ ├── DVDAudioCodecPassthroughFFmpeg.h │ │ │ ├── DVDAudioCodecPcm.cpp │ │ │ ├── DVDAudioCodecPcm.h │ │ │ ├── DllLibMad.h │ │ │ ├── Encoders │ │ │ │ ├── DVDAudioEncoderFFmpeg.cpp │ │ │ │ ├── DVDAudioEncoderFFmpeg.h │ │ │ │ └── IDVDAudioEncoder.h │ │ │ ├── Makefile.in │ │ │ └── libmad │ │ │ │ └── mad.h │ │ ├── DVDCodecUtils.cpp │ │ ├── DVDCodecUtils.h │ │ ├── DVDCodecs.h │ │ ├── DVDFactoryCodec.cpp │ │ ├── DVDFactoryCodec.h │ │ ├── Makefile.in │ │ ├── Overlay │ │ │ ├── DVDOverlay.h │ │ │ ├── DVDOverlayCodec.h │ │ │ ├── DVDOverlayCodecCC.cpp │ │ │ ├── DVDOverlayCodecCC.h │ │ │ ├── DVDOverlayCodecFFmpeg.cpp │ │ │ ├── DVDOverlayCodecFFmpeg.h │ │ │ ├── DVDOverlayCodecSSA.cpp │ │ │ ├── DVDOverlayCodecSSA.h │ │ │ ├── DVDOverlayCodecTX3G.cpp │ │ │ ├── DVDOverlayCodecTX3G.h │ │ │ ├── DVDOverlayCodecText.cpp │ │ │ ├── DVDOverlayCodecText.h │ │ │ ├── DVDOverlayImage.h │ │ │ ├── DVDOverlaySSA.h │ │ │ ├── DVDOverlaySpu.h │ │ │ ├── DVDOverlayText.h │ │ │ ├── Makefile.in │ │ │ └── libspucc │ │ │ │ ├── cc_decoder.c │ │ │ │ └── cc_decoder.h │ │ └── Video │ │ │ ├── CrystalHD.cpp │ │ │ ├── CrystalHD.h │ │ │ ├── DVDVideoCodec.h │ │ │ ├── DVDVideoCodecCrystalHD.cpp │ │ │ ├── DVDVideoCodecCrystalHD.h │ │ │ ├── DVDVideoCodecFFmpeg.cpp │ │ │ ├── DVDVideoCodecFFmpeg.h │ │ │ ├── DVDVideoCodecLibMpeg2.cpp │ │ │ ├── DVDVideoCodecLibMpeg2.h │ │ │ ├── DVDVideoCodecOpenMax.cpp │ │ │ ├── DVDVideoCodecOpenMax.h │ │ │ ├── DVDVideoCodecVDA.cpp │ │ │ ├── DVDVideoCodecVDA.h │ │ │ ├── DVDVideoCodecVideoToolBox.cpp │ │ │ ├── DVDVideoCodecVideoToolBox.h │ │ │ ├── DVDVideoPPFFmpeg.cpp │ │ │ ├── DVDVideoPPFFmpeg.h │ │ │ ├── DXVA.cpp │ │ │ ├── DXVA.h │ │ │ ├── DllLibMpeg2.h │ │ │ ├── Makefile.in │ │ │ ├── OpenMax.cpp │ │ │ ├── OpenMax.h │ │ │ ├── OpenMaxVideo.cpp │ │ │ ├── OpenMaxVideo.h │ │ │ ├── VAAPI.cpp │ │ │ ├── VAAPI.h │ │ │ ├── VDPAU.cpp │ │ │ ├── VDPAU.h │ │ │ └── libmpeg2 │ │ │ ├── mpeg2.h │ │ │ └── mpeg2convert.h │ ├── DVDDemuxSPU.cpp │ ├── DVDDemuxSPU.h │ ├── DVDDemuxers │ │ ├── DVDDemux.cpp │ │ ├── DVDDemux.h │ │ ├── DVDDemuxFFmpeg.cpp │ │ ├── DVDDemuxFFmpeg.h │ │ ├── DVDDemuxHTSP.cpp │ │ ├── DVDDemuxHTSP.h │ │ ├── DVDDemuxPVRClient.cpp │ │ ├── DVDDemuxPVRClient.h │ │ ├── DVDDemuxPacket.h │ │ ├── DVDDemuxShoutcast.cpp │ │ ├── DVDDemuxShoutcast.h │ │ ├── DVDDemuxUtils.cpp │ │ ├── DVDDemuxUtils.h │ │ ├── DVDDemuxVobsub.cpp │ │ ├── DVDDemuxVobsub.h │ │ ├── DVDFactoryDemuxer.cpp │ │ ├── DVDFactoryDemuxer.h │ │ └── Makefile.in │ ├── DVDFileInfo.cpp │ ├── DVDFileInfo.h │ ├── DVDInputStreams │ │ ├── DVDFactoryInputStream.cpp │ │ ├── DVDFactoryInputStream.h │ │ ├── DVDInputStream.cpp │ │ ├── DVDInputStream.h │ │ ├── DVDInputStreamBluray.cpp │ │ ├── DVDInputStreamBluray.h │ │ ├── DVDInputStreamFFmpeg.cpp │ │ ├── DVDInputStreamFFmpeg.h │ │ ├── DVDInputStreamFile.cpp │ │ ├── DVDInputStreamFile.h │ │ ├── DVDInputStreamHTSP.cpp │ │ ├── DVDInputStreamHTSP.h │ │ ├── DVDInputStreamHttp.cpp │ │ ├── DVDInputStreamHttp.h │ │ ├── DVDInputStreamMemory.cpp │ │ ├── DVDInputStreamMemory.h │ │ ├── DVDInputStreamNavigator.cpp │ │ ├── DVDInputStreamNavigator.h │ │ ├── DVDInputStreamPVRManager.cpp │ │ ├── DVDInputStreamPVRManager.h │ │ ├── DVDInputStreamRTMP.cpp │ │ ├── DVDInputStreamRTMP.h │ │ ├── DVDInputStreamStack.cpp │ │ ├── DVDInputStreamStack.h │ │ ├── DVDInputStreamTV.cpp │ │ ├── DVDInputStreamTV.h │ │ ├── DVDStateSerializer.cpp │ │ ├── DVDStateSerializer.h │ │ ├── DllDvdNav.h │ │ ├── DllLibRTMP.h │ │ ├── Makefile │ │ └── dvdnav │ │ │ ├── config.h │ │ │ ├── decoder.h │ │ │ ├── dvd_reader.h │ │ │ ├── dvd_types.h │ │ │ ├── dvdnav.h │ │ │ ├── dvdnav_events.h │ │ │ ├── dvdnav_internal.h │ │ │ ├── ifo_types.h │ │ │ ├── nav_types.h │ │ │ ├── remap.h │ │ │ ├── vm.h │ │ │ └── vmcmd.h │ ├── DVDMessage.cpp │ ├── DVDMessage.h │ ├── DVDMessageQueue.cpp │ ├── DVDMessageQueue.h │ ├── DVDMessageTracker.cpp │ ├── DVDMessageTracker.h │ ├── DVDOverlayContainer.cpp │ ├── DVDOverlayContainer.h │ ├── DVDOverlayRenderer.cpp │ ├── DVDOverlayRenderer.h │ ├── DVDPerformanceCounter.cpp │ ├── DVDPerformanceCounter.h │ ├── DVDPlayer.cpp │ ├── DVDPlayer.h │ ├── DVDPlayerAudio.cpp │ ├── DVDPlayerAudio.h │ ├── DVDPlayerAudioResampler.cpp │ ├── DVDPlayerAudioResampler.h │ ├── DVDPlayerSubtitle.cpp │ ├── DVDPlayerSubtitle.h │ ├── DVDPlayerTeletext.cpp │ ├── DVDPlayerTeletext.h │ ├── DVDPlayerVideo.cpp │ ├── DVDPlayerVideo.h │ ├── DVDResource.h │ ├── DVDStreamInfo.cpp │ ├── DVDStreamInfo.h │ ├── DVDSubtitles │ │ ├── DVDFactorySubtitle.cpp │ │ ├── DVDFactorySubtitle.h │ │ ├── DVDSubtitleLineCollection.cpp │ │ ├── DVDSubtitleLineCollection.h │ │ ├── DVDSubtitleParser.h │ │ ├── DVDSubtitleParserMPL2.cpp │ │ ├── DVDSubtitleParserMPL2.h │ │ ├── DVDSubtitleParserMicroDVD.cpp │ │ ├── DVDSubtitleParserMicroDVD.h │ │ ├── DVDSubtitleParserSSA.cpp │ │ ├── DVDSubtitleParserSSA.h │ │ ├── DVDSubtitleParserSami.cpp │ │ ├── DVDSubtitleParserSami.h │ │ ├── DVDSubtitleParserSubrip.cpp │ │ ├── DVDSubtitleParserSubrip.h │ │ ├── DVDSubtitleParserVplayer.cpp │ │ ├── DVDSubtitleParserVplayer.h │ │ ├── DVDSubtitleStream.cpp │ │ ├── DVDSubtitleStream.h │ │ ├── DVDSubtitleTagMicroDVD.cpp │ │ ├── DVDSubtitleTagMicroDVD.h │ │ ├── DVDSubtitleTagSami.cpp │ │ ├── DVDSubtitleTagSami.h │ │ ├── DVDSubtitlesLibass.cpp │ │ ├── DVDSubtitlesLibass.h │ │ ├── DllLibass.h │ │ ├── Makefile.in │ │ ├── SamiTagConvertor.cpp │ │ └── SamiTagConvertor.h │ ├── DVDTSCorrection.cpp │ ├── DVDTSCorrection.h │ ├── Edl.cpp │ ├── Edl.h │ ├── IDVDPlayer.h │ ├── Makefile.in │ └── dvd_config.h ├── paplayer │ ├── ADPCMCodec.cpp │ ├── ADPCMCodec.h │ ├── ASAPCodec.cpp │ ├── ASAPCodec.h │ ├── AudioDecoder.cpp │ ├── AudioDecoder.h │ ├── BXAcodec.cpp │ ├── BXAcodec.h │ ├── CDDAcodec.cpp │ ├── CDDAcodec.h │ ├── CachingCodec.h │ ├── CodecFactory.cpp │ ├── CodecFactory.h │ ├── DVDPlayerCodec.cpp │ ├── DVDPlayerCodec.h │ ├── FLACcodec.cpp │ ├── FLACcodec.h │ ├── ICodec.h │ ├── MP3codec.cpp │ ├── MP3codec.h │ ├── Makefile.in │ ├── ModplugCodec.cpp │ ├── ModplugCodec.h │ ├── NSFCodec.cpp │ ├── NSFCodec.h │ ├── OGGcodec.cpp │ ├── OGGcodec.h │ ├── OggCallback.cpp │ ├── OggCallback.h │ ├── PAPlayer.cpp │ ├── PAPlayer.h │ ├── PCMCodec.cpp │ ├── PCMCodec.h │ ├── ReplayGain.cpp │ ├── ReplayGain.h │ ├── SIDCodec.cpp │ ├── SIDCodec.h │ ├── SPCCodec.cpp │ ├── SPCCodec.h │ ├── TimidityCodec.cpp │ ├── TimidityCodec.h │ ├── VGMCodec.cpp │ ├── VGMCodec.h │ ├── WAVcodec.cpp │ ├── WAVcodec.h │ ├── YMCodec.cpp │ └── YMCodec.h └── playercorefactory │ ├── Makefile.in │ ├── PlayerCoreConfig.h │ ├── PlayerCoreFactory.cpp │ ├── PlayerCoreFactory.h │ ├── PlayerSelectionRule.cpp │ └── PlayerSelectionRule.h ├── dbwrappers ├── Database.cpp ├── Database.h ├── Makefile ├── dataset.cpp ├── dataset.h ├── mysqldataset.cpp ├── mysqldataset.h ├── qry_dat.cpp ├── qry_dat.h ├── sqlitedataset.cpp └── sqlitedataset.h ├── dialogs ├── GUIDialogBoxBase.cpp ├── GUIDialogBoxBase.h ├── GUIDialogBusy.cpp ├── GUIDialogBusy.h ├── GUIDialogButtonMenu.cpp ├── GUIDialogButtonMenu.h ├── GUIDialogCache.cpp ├── GUIDialogCache.h ├── GUIDialogContextMenu.cpp ├── GUIDialogContextMenu.h ├── GUIDialogExtendedProgressBar.cpp ├── GUIDialogExtendedProgressBar.h ├── GUIDialogFavourites.cpp ├── GUIDialogFavourites.h ├── GUIDialogFileBrowser.cpp ├── GUIDialogFileBrowser.h ├── GUIDialogGamepad.cpp ├── GUIDialogGamepad.h ├── GUIDialogKaiToast.cpp ├── GUIDialogKaiToast.h ├── GUIDialogKeyboard.cpp ├── GUIDialogKeyboard.h ├── GUIDialogMediaSource.cpp ├── GUIDialogMediaSource.h ├── GUIDialogMuteBug.cpp ├── GUIDialogMuteBug.h ├── GUIDialogNumeric.cpp ├── GUIDialogNumeric.h ├── GUIDialogOK.cpp ├── GUIDialogOK.h ├── GUIDialogPlayEject.cpp ├── GUIDialogPlayEject.h ├── GUIDialogPlayerControls.cpp ├── GUIDialogPlayerControls.h ├── GUIDialogProgress.cpp ├── GUIDialogProgress.h ├── GUIDialogSeekBar.cpp ├── GUIDialogSeekBar.h ├── GUIDialogSelect.cpp ├── GUIDialogSelect.h ├── GUIDialogSlider.cpp ├── GUIDialogSlider.h ├── GUIDialogSmartPlaylistEditor.cpp ├── GUIDialogSmartPlaylistEditor.h ├── GUIDialogSmartPlaylistRule.cpp ├── GUIDialogSmartPlaylistRule.h ├── GUIDialogSubMenu.cpp ├── GUIDialogSubMenu.h ├── GUIDialogTextViewer.cpp ├── GUIDialogTextViewer.h ├── GUIDialogVolumeBar.cpp ├── GUIDialogVolumeBar.h ├── GUIDialogYesNo.cpp ├── GUIDialogYesNo.h └── Makefile ├── epg ├── Epg.cpp ├── Epg.h ├── EpgContainer.cpp ├── EpgContainer.h ├── EpgDatabase.cpp ├── EpgDatabase.h ├── EpgInfoTag.cpp ├── EpgInfoTag.h ├── EpgSearchFilter.cpp ├── EpgSearchFilter.h ├── GUIEPGGridContainer.cpp ├── GUIEPGGridContainer.h └── Makefile ├── filesystem ├── AFPDirectory.cpp ├── AFPDirectory.h ├── ASAPFileDirectory.cpp ├── ASAPFileDirectory.h ├── AddonsDirectory.cpp ├── AddonsDirectory.h ├── CDDADirectory.cpp ├── CDDADirectory.h ├── CacheCircular.cpp ├── CacheCircular.h ├── CacheMemBuffer.cpp ├── CacheMemBuffer.h ├── CacheStrategy.cpp ├── CacheStrategy.h ├── DAAPDirectory.cpp ├── DAAPDirectory.h ├── DAVDirectory.cpp ├── DAVDirectory.h ├── Directory.cpp ├── Directory.h ├── DirectoryCache.cpp ├── DirectoryCache.h ├── DirectoryHistory.cpp ├── DirectoryHistory.h ├── DirectoryTuxBox.cpp ├── DirectoryTuxBox.h ├── DllHDHomeRun.h ├── DllLibAfp.h ├── DllLibCMyth.h ├── DllLibCurl.cpp ├── DllLibCurl.h ├── DllLibNfs.h ├── FTPDirectory.cpp ├── FTPDirectory.h ├── FTPParse.cpp ├── FTPParse.h ├── FactoryDirectory.cpp ├── FactoryDirectory.h ├── FactoryFileDirectory.cpp ├── FactoryFileDirectory.h ├── File.cpp ├── File.h ├── FileAFP.cpp ├── FileAFP.h ├── FileCDDA.cpp ├── FileCDDA.h ├── FileCache.cpp ├── FileCache.h ├── FileCurl.cpp ├── FileCurl.h ├── FileDAAP.cpp ├── FileDAAP.h ├── FileFactory.cpp ├── FileFactory.h ├── FileFileReader.cpp ├── FileFileReader.h ├── FileHD.cpp ├── FileHD.h ├── FileISO.cpp ├── FileISO.h ├── FileLastFM.cpp ├── FileLastFM.h ├── FileMusicDatabase.cpp ├── FileMusicDatabase.h ├── FileNFS.cpp ├── FileNFS.h ├── FilePipe.cpp ├── FilePipe.h ├── FileRTV.cpp ├── FileRTV.h ├── FileRar.cpp ├── FileRar.h ├── FileSFTP.cpp ├── FileSFTP.h ├── FileShoutcast.cpp ├── FileShoutcast.h ├── FileSmb.cpp ├── FileSmb.h ├── FileSpecialProtocol.cpp ├── FileSpecialProtocol.h ├── FileTuxBox.cpp ├── FileTuxBox.h ├── FileUDF.cpp ├── FileUDF.h ├── FileUPnP.cpp ├── FileUPnP.h ├── FileZip.cpp ├── FileZip.h ├── HDDirectory.cpp ├── HDDirectory.h ├── HDHomeRun.cpp ├── HDHomeRun.h ├── HTSPDirectory.cpp ├── HTSPDirectory.h ├── HTSPSession.cpp ├── HTSPSession.h ├── HTTPDirectory.cpp ├── HTTPDirectory.h ├── IDirectory.cpp ├── IDirectory.h ├── IFile.cpp ├── IFile.h ├── IFileDirectory.h ├── ILiveTV.h ├── ISO9660Directory.cpp ├── ISO9660Directory.h ├── LastFMDirectory.cpp ├── LastFMDirectory.h ├── Makefile.in ├── MultiPathDirectory.cpp ├── MultiPathDirectory.h ├── MultiPathFile.cpp ├── MultiPathFile.h ├── MusicDatabaseDirectory.cpp ├── MusicDatabaseDirectory.h ├── MusicDatabaseDirectory │ ├── DirectoryNode.cpp │ ├── DirectoryNode.h │ ├── DirectoryNodeAlbum.cpp │ ├── DirectoryNodeAlbum.h │ ├── DirectoryNodeAlbumCompilations.cpp │ ├── DirectoryNodeAlbumCompilations.h │ ├── DirectoryNodeAlbumCompilationsSongs.cpp │ ├── DirectoryNodeAlbumCompilationsSongs.h │ ├── DirectoryNodeAlbumRecentlyAdded.cpp │ ├── DirectoryNodeAlbumRecentlyAdded.h │ ├── DirectoryNodeAlbumRecentlyAddedSong.cpp │ ├── DirectoryNodeAlbumRecentlyAddedSong.h │ ├── DirectoryNodeAlbumRecentlyPlayed.cpp │ ├── DirectoryNodeAlbumRecentlyPlayed.h │ ├── DirectoryNodeAlbumRecentlyPlayedSong.cpp │ ├── DirectoryNodeAlbumRecentlyPlayedSong.h │ ├── DirectoryNodeAlbumTop100.cpp │ ├── DirectoryNodeAlbumTop100.h │ ├── DirectoryNodeAlbumTop100Song.cpp │ ├── DirectoryNodeAlbumTop100Song.h │ ├── DirectoryNodeArtist.cpp │ ├── DirectoryNodeArtist.h │ ├── DirectoryNodeGenre.cpp │ ├── DirectoryNodeGenre.h │ ├── DirectoryNodeOverview.cpp │ ├── DirectoryNodeOverview.h │ ├── DirectoryNodeRoot.cpp │ ├── DirectoryNodeRoot.h │ ├── DirectoryNodeSingles.cpp │ ├── DirectoryNodeSingles.h │ ├── DirectoryNodeSong.cpp │ ├── DirectoryNodeSong.h │ ├── DirectoryNodeSongTop100.cpp │ ├── DirectoryNodeSongTop100.h │ ├── DirectoryNodeTop100.cpp │ ├── DirectoryNodeTop100.h │ ├── DirectoryNodeYear.cpp │ ├── DirectoryNodeYear.h │ ├── DirectoryNodeYearAlbum.cpp │ ├── DirectoryNodeYearAlbum.h │ ├── DirectoryNodeYearSong.cpp │ ├── DirectoryNodeYearSong.h │ ├── Makefile │ ├── QueryParams.cpp │ └── QueryParams.h ├── MusicFileDirectory.cpp ├── MusicFileDirectory.h ├── MusicSearchDirectory.cpp ├── MusicSearchDirectory.h ├── MythDirectory.cpp ├── MythDirectory.h ├── MythFile.cpp ├── MythFile.h ├── MythSession.cpp ├── MythSession.h ├── NFSDirectory.cpp ├── NFSDirectory.h ├── NSFFileDirectory.cpp ├── NSFFileDirectory.h ├── NptXbmcFile.cpp ├── OGGFileDirectory.cpp ├── OGGFileDirectory.h ├── PVRDirectory.cpp ├── PVRDirectory.h ├── PVRFile.cpp ├── PVRFile.h ├── PipesManager.cpp ├── PipesManager.h ├── PlaylistDirectory.cpp ├── PlaylistDirectory.h ├── PlaylistFileDirectory.cpp ├── PlaylistFileDirectory.h ├── PluginDirectory.cpp ├── PluginDirectory.h ├── RSSDirectory.cpp ├── RSSDirectory.h ├── RTVDirectory.cpp ├── RTVDirectory.h ├── RarDirectory.cpp ├── RarDirectory.h ├── RarManager.cpp ├── RarManager.h ├── SAPDirectory.cpp ├── SAPDirectory.h ├── SAPFile.cpp ├── SAPFile.h ├── SFTPDirectory.cpp ├── SFTPDirectory.h ├── SIDFileDirectory.cpp ├── SIDFileDirectory.h ├── SMBDirectory.cpp ├── SMBDirectory.h ├── Slingbox.cpp ├── Slingbox.h ├── SmartPlaylistDirectory.cpp ├── SmartPlaylistDirectory.h ├── SourcesDirectory.cpp ├── SourcesDirectory.h ├── SpecialProtocol.cpp ├── SpecialProtocol.h ├── SpecialProtocolDirectory.cpp ├── SpecialProtocolDirectory.h ├── StackDirectory.cpp ├── StackDirectory.h ├── UDFDirectory.cpp ├── UDFDirectory.h ├── UPnPDirectory.cpp ├── UPnPDirectory.h ├── VTPDirectory.cpp ├── VTPDirectory.h ├── VTPFile.cpp ├── VTPFile.h ├── VTPSession.cpp ├── VTPSession.h ├── VideoDatabaseDirectory.cpp ├── VideoDatabaseDirectory.h ├── VideoDatabaseDirectory │ ├── DirectoryNode.cpp │ ├── DirectoryNode.h │ ├── DirectoryNodeActor.cpp │ ├── DirectoryNodeActor.h │ ├── DirectoryNodeCountry.cpp │ ├── DirectoryNodeCountry.h │ ├── DirectoryNodeDirector.cpp │ ├── DirectoryNodeDirector.h │ ├── DirectoryNodeEpisodes.cpp │ ├── DirectoryNodeEpisodes.h │ ├── DirectoryNodeGenre.cpp │ ├── DirectoryNodeGenre.h │ ├── DirectoryNodeMoviesOverview.cpp │ ├── DirectoryNodeMoviesOverview.h │ ├── DirectoryNodeMusicVideoAlbum.cpp │ ├── DirectoryNodeMusicVideoAlbum.h │ ├── DirectoryNodeMusicVideosOverview.cpp │ ├── DirectoryNodeMusicVideosOverview.h │ ├── DirectoryNodeOverview.cpp │ ├── DirectoryNodeOverview.h │ ├── DirectoryNodeRecentlyAddedEpisodes.cpp │ ├── DirectoryNodeRecentlyAddedEpisodes.h │ ├── DirectoryNodeRecentlyAddedMovies.cpp │ ├── DirectoryNodeRecentlyAddedMovies.h │ ├── DirectoryNodeRecentlyAddedMusicVideos.cpp │ ├── DirectoryNodeRecentlyAddedMusicVideos.h │ ├── DirectoryNodeRoot.cpp │ ├── DirectoryNodeRoot.h │ ├── DirectoryNodeSeasons.cpp │ ├── DirectoryNodeSeasons.h │ ├── DirectoryNodeSets.cpp │ ├── DirectoryNodeSets.h │ ├── DirectoryNodeStudio.cpp │ ├── DirectoryNodeStudio.h │ ├── DirectoryNodeTitleMovies.cpp │ ├── DirectoryNodeTitleMovies.h │ ├── DirectoryNodeTitleMusicVideos.cpp │ ├── DirectoryNodeTitleMusicVideos.h │ ├── DirectoryNodeTitleTvShows.cpp │ ├── DirectoryNodeTitleTvShows.h │ ├── DirectoryNodeTvShowsOverview.cpp │ ├── DirectoryNodeTvShowsOverview.h │ ├── DirectoryNodeYear.cpp │ ├── DirectoryNodeYear.h │ ├── Makefile │ ├── QueryParams.cpp │ └── QueryParams.h ├── VirtualDirectory.cpp ├── VirtualDirectory.h ├── ZeroconfDirectory.cpp ├── ZeroconfDirectory.h ├── ZipDirectory.cpp ├── ZipDirectory.h ├── ZipManager.cpp ├── ZipManager.h ├── iso9660.cpp ├── iso9660.h ├── udf25.cpp └── udf25.h ├── guilib ├── AnimatedGif.cpp ├── AnimatedGif.h ├── AudioContext.cpp ├── AudioContext.h ├── D3DResource.cpp ├── D3DResource.h ├── DDSImage.cpp ├── DDSImage.h ├── DirectXGraphics.cpp ├── DirectXGraphics.h ├── DirtyRegion.h ├── DirtyRegionSolvers.cpp ├── DirtyRegionSolvers.h ├── DirtyRegionTracker.cpp ├── DirtyRegionTracker.h ├── DispResource.h ├── FrameBufferObject.cpp ├── FrameBufferObject.h ├── GUIAction.cpp ├── GUIAction.h ├── GUIAudioManager.cpp ├── GUIAudioManager.h ├── GUIBaseContainer.cpp ├── GUIBaseContainer.h ├── GUIBorderedImage.cpp ├── GUIBorderedImage.h ├── GUIButtonControl.cpp ├── GUIButtonControl.h ├── GUICallback.h ├── GUICheckMarkControl.cpp ├── GUICheckMarkControl.h ├── GUIColorManager.cpp ├── GUIColorManager.h ├── GUIControl.cpp ├── GUIControl.h ├── GUIControlFactory.cpp ├── GUIControlFactory.h ├── GUIControlGroup.cpp ├── GUIControlGroup.h ├── GUIControlGroupList.cpp ├── GUIControlGroupList.h ├── GUIControlProfiler.cpp ├── GUIControlProfiler.h ├── GUIDialog.cpp ├── GUIDialog.h ├── GUIEditControl.cpp ├── GUIEditControl.h ├── GUIFadeLabelControl.cpp ├── GUIFadeLabelControl.h ├── GUIFixedListContainer.cpp ├── GUIFixedListContainer.h ├── GUIFont.cpp ├── GUIFont.h ├── GUIFontManager.cpp ├── GUIFontManager.h ├── GUIFontTTF.cpp ├── GUIFontTTF.h ├── GUIFontTTFDX.cpp ├── GUIFontTTFDX.h ├── GUIFontTTFGL.cpp ├── GUIFontTTFGL.h ├── GUIImage.cpp ├── GUIImage.h ├── GUIIncludes.cpp ├── GUIIncludes.h ├── GUIInfoTypes.cpp ├── GUIInfoTypes.h ├── GUILabel.cpp ├── GUILabel.h ├── GUILabelControl.cpp ├── GUILabelControl.h ├── GUIListContainer.cpp ├── GUIListContainer.h ├── GUIListGroup.cpp ├── GUIListGroup.h ├── GUIListItem.cpp ├── GUIListItem.h ├── GUIListItemLayout.cpp ├── GUIListItemLayout.h ├── GUIListLabel.cpp ├── GUIListLabel.h ├── GUIMessage.cpp ├── GUIMessage.h ├── GUIMoverControl.cpp ├── GUIMoverControl.h ├── GUIMultiImage.cpp ├── GUIMultiImage.h ├── GUIMultiSelectText.cpp ├── GUIMultiSelectText.h ├── GUIPanelContainer.cpp ├── GUIPanelContainer.h ├── GUIProgressControl.cpp ├── GUIProgressControl.h ├── GUIRSSControl.cpp ├── GUIRSSControl.h ├── GUIRadioButtonControl.cpp ├── GUIRadioButtonControl.h ├── GUIRenderingControl.cpp ├── GUIRenderingControl.h ├── GUIResizeControl.cpp ├── GUIResizeControl.h ├── GUIScrollBarControl.cpp ├── GUIScrollBarControl.h ├── GUISelectButtonControl.cpp ├── GUISelectButtonControl.h ├── GUISettingsSliderControl.cpp ├── GUISettingsSliderControl.h ├── GUIShader.cpp ├── GUIShader.h ├── GUISliderControl.cpp ├── GUISliderControl.h ├── GUISound.cpp ├── GUISound.h ├── GUISpinControl.cpp ├── GUISpinControl.h ├── GUISpinControlEx.cpp ├── GUISpinControlEx.h ├── GUIStandardWindow.cpp ├── GUIStandardWindow.h ├── GUIStaticItem.cpp ├── GUIStaticItem.h ├── GUITextBox.cpp ├── GUITextBox.h ├── GUITextLayout.cpp ├── GUITextLayout.h ├── GUITexture.cpp ├── GUITexture.h ├── GUITextureD3D.cpp ├── GUITextureD3D.h ├── GUITextureGL.cpp ├── GUITextureGL.h ├── GUITextureGLES.cpp ├── GUITextureGLES.h ├── GUIToggleButtonControl.cpp ├── GUIToggleButtonControl.h ├── GUIVideoControl.cpp ├── GUIVideoControl.h ├── GUIVisualisationControl.cpp ├── GUIVisualisationControl.h ├── GUIWindow.cpp ├── GUIWindow.h ├── GUIWindowManager.cpp ├── GUIWindowManager.h ├── GUIWrappingListContainer.cpp ├── GUIWrappingListContainer.h ├── Geometry.h ├── GraphicContext.cpp ├── GraphicContext.h ├── IAudioDeviceChangedCallback.h ├── IDirtyRegionSolver.h ├── IMsgTargetCallback.h ├── IWindowManagerCallback.cpp ├── IWindowManagerCallback.h ├── JpegIO.cpp ├── JpegIO.h ├── Key.cpp ├── Key.h ├── LocalizeStrings.cpp ├── LocalizeStrings.h ├── Makefile.in ├── MatrixGLES.cpp ├── MatrixGLES.h ├── Resolution.h ├── Shader.cpp ├── Shader.h ├── Texture.cpp ├── Texture.h ├── TextureBundle.cpp ├── TextureBundle.h ├── TextureBundleXBT.cpp ├── TextureBundleXBT.h ├── TextureBundleXPR.cpp ├── TextureBundleXPR.h ├── TextureDX.cpp ├── TextureDX.h ├── TextureGL.cpp ├── TextureGL.h ├── TextureManager.cpp ├── TextureManager.h ├── TransformMatrix.h ├── Tween.h ├── VisibleEffect.cpp ├── VisibleEffect.h ├── XBTF.cpp ├── XBTF.h ├── XBTFReader.cpp ├── XBTFReader.h └── gui3d.h ├── input ├── ButtonTranslator.cpp ├── ButtonTranslator.h ├── InertialScrollingHandler.cpp ├── InertialScrollingHandler.h ├── KeyboardLayoutConfiguration.cpp ├── KeyboardLayoutConfiguration.h ├── KeyboardStat.cpp ├── KeyboardStat.h ├── Makefile ├── MouseStat.cpp ├── MouseStat.h ├── SDLJoystick.cpp ├── SDLJoystick.h ├── XBIRRemote.h ├── XBMC_keyboard.h ├── XBMC_keysym.h ├── XBMC_keytable.cpp ├── XBMC_keytable.h ├── XBMC_mouse.h ├── XBMC_vkeys.h ├── linux │ ├── LIRC.cpp │ ├── LIRC.h │ ├── LinuxInputDevices.cpp │ ├── LinuxInputDevices.h │ └── Makefile └── windows │ ├── IRServerSuite.cpp │ ├── IRServerSuite.h │ ├── IrssMessage.cpp │ └── IrssMessage.h ├── interfaces ├── AnnouncementManager.cpp ├── AnnouncementManager.h ├── AnnouncementUtils.h ├── Builtins.cpp ├── Builtins.h ├── IAnnouncer.h ├── Makefile.in ├── http-api │ ├── HttpApi.cpp │ ├── HttpApi.h │ ├── Makefile │ ├── XBMCConfiguration.cpp │ ├── XBMCConfiguration.h │ ├── XBMChttp.cpp │ └── XBMChttp.h ├── info │ ├── InfoBool.cpp │ ├── InfoBool.h │ ├── Makefile │ ├── SkinVariable.cpp │ └── SkinVariable.h ├── json-rpc │ ├── ApplicationOperations.cpp │ ├── ApplicationOperations.h │ ├── AudioLibrary.cpp │ ├── AudioLibrary.h │ ├── FileItemHandler.cpp │ ├── FileItemHandler.h │ ├── FileOperations.cpp │ ├── FileOperations.h │ ├── IClient.h │ ├── ITransportLayer.h │ ├── InputOperations.cpp │ ├── InputOperations.h │ ├── JSONRPC.cpp │ ├── JSONRPC.h │ ├── JSONServiceDescription.cpp │ ├── JSONServiceDescription.h │ ├── JSONUtils.h │ ├── Makefile │ ├── PVROperations.cpp │ ├── PVROperations.h │ ├── PlayerOperations.cpp │ ├── PlayerOperations.h │ ├── PlaylistOperations.cpp │ ├── PlaylistOperations.h │ ├── ServiceDescription.h │ ├── SystemOperations.cpp │ ├── SystemOperations.h │ ├── VideoLibrary.cpp │ ├── VideoLibrary.h │ ├── XBMCOperations.cpp │ ├── XBMCOperations.h │ ├── methods.json │ ├── notifications.json │ └── types.json └── python │ ├── Makefile.in │ ├── XBPyThread.cpp │ ├── XBPyThread.h │ ├── XBPython.cpp │ ├── XBPython.h │ └── xbmcmodule │ ├── GUIPythonWindow.cpp │ ├── GUIPythonWindow.h │ ├── GUIPythonWindowDialog.cpp │ ├── GUIPythonWindowDialog.h │ ├── GUIPythonWindowXML.cpp │ ├── GUIPythonWindowXML.h │ ├── GUIPythonWindowXMLDialog.cpp │ ├── GUIPythonWindowXMLDialog.h │ ├── Makefile.in │ ├── PythonAddon.cpp │ ├── PythonAddon.h │ ├── PythonPlayer.cpp │ ├── PythonPlayer.h │ ├── action.cpp │ ├── action.h │ ├── control.cpp │ ├── control.h │ ├── controlbutton.cpp │ ├── controlcheckmark.cpp │ ├── controledit.cpp │ ├── controlfadelabel.cpp │ ├── controlgroup.cpp │ ├── controlimage.cpp │ ├── controllabel.cpp │ ├── controllist.cpp │ ├── controlprogress.cpp │ ├── controlradiobutton.cpp │ ├── controlslider.cpp │ ├── controlspin.cpp │ ├── controltextbox.cpp │ ├── dialog.cpp │ ├── dialog.h │ ├── infotagmusic.cpp │ ├── infotagmusic.h │ ├── infotagvideo.cpp │ ├── infotagvideo.h │ ├── keyboard.cpp │ ├── keyboard.h │ ├── listitem.cpp │ ├── listitem.h │ ├── player.cpp │ ├── player.h │ ├── pyjsonrpc.h │ ├── pyplaylist.cpp │ ├── pyplaylist.h │ ├── pyrendercapture.cpp │ ├── pyrendercapture.h │ ├── pythreadstate.h │ ├── pyutil.cpp │ ├── pyutil.h │ ├── window.cpp │ ├── window.h │ ├── winxml.cpp │ ├── winxml.h │ ├── winxmldialog.cpp │ ├── xbmcaddonmodule.cpp │ ├── xbmcguimodule.cpp │ ├── xbmcmodule.cpp │ ├── xbmcplugin.cpp │ └── xbmcvfsmodule.cpp ├── linux ├── ConvUtils.cpp ├── ConvUtils.h ├── DBusMessage.cpp ├── DBusMessage.h ├── DBusReserve.cpp ├── DBusReserve.h ├── DBusUtil.cpp ├── DBusUtil.h ├── HALManager.cpp ├── HALManager.h ├── LinuxResourceCounter.cpp ├── LinuxResourceCounter.h ├── LinuxTimezone.cpp ├── LinuxTimezone.h ├── Makefile.in ├── PlatformDefs.h ├── PlatformInclude.h ├── PosixMountProvider.cpp ├── PosixMountProvider.h ├── XEventUtils.cpp ├── XEventUtils.h ├── XFileUtils.cpp ├── XFileUtils.h ├── XHandle.cpp ├── XHandle.h ├── XHandlePublic.h ├── XLCDproc.cpp ├── XLCDproc.h ├── XMemUtils.cpp ├── XMemUtils.h ├── XSyncUtils.cpp ├── XSyncUtils.h ├── XThreadUtils.cpp ├── XThreadUtils.h ├── XTimeUtils.cpp ├── XTimeUtils.h ├── stat_utf8.h └── stdio_utf8.h ├── music ├── Album.cpp ├── Album.h ├── Artist.cpp ├── Artist.h ├── GUIViewStateMusic.cpp ├── GUIViewStateMusic.h ├── LastFmManager.cpp ├── LastFmManager.h ├── Makefile ├── MusicDatabase.cpp ├── MusicDatabase.h ├── MusicInfoLoader.cpp ├── MusicInfoLoader.h ├── Song.cpp ├── Song.h ├── dialogs │ ├── GUIDialogMusicInfo.cpp │ ├── GUIDialogMusicInfo.h │ ├── GUIDialogMusicOSD.cpp │ ├── GUIDialogMusicOSD.h │ ├── GUIDialogMusicOverlay.cpp │ ├── GUIDialogMusicOverlay.h │ ├── GUIDialogMusicScan.cpp │ ├── GUIDialogMusicScan.h │ ├── GUIDialogSongInfo.cpp │ ├── GUIDialogSongInfo.h │ ├── GUIDialogVisualisationPresetList.cpp │ ├── GUIDialogVisualisationPresetList.h │ └── Makefile ├── infoscanner │ ├── Makefile │ ├── MusicAlbumInfo.cpp │ ├── MusicAlbumInfo.h │ ├── MusicArtistInfo.cpp │ ├── MusicArtistInfo.h │ ├── MusicInfoScanner.cpp │ ├── MusicInfoScanner.h │ ├── MusicInfoScraper.cpp │ └── MusicInfoScraper.h ├── karaoke │ ├── GUIDialogKaraokeSongSelector.cpp │ ├── GUIDialogKaraokeSongSelector.h │ ├── GUIWindowKaraokeLyrics.cpp │ ├── GUIWindowKaraokeLyrics.h │ ├── Makefile.in │ ├── cdgdata.h │ ├── karaokelyrics.cpp │ ├── karaokelyrics.h │ ├── karaokelyricscdg.cpp │ ├── karaokelyricscdg.h │ ├── karaokelyricsfactory.cpp │ ├── karaokelyricsfactory.h │ ├── karaokelyricsmanager.cpp │ ├── karaokelyricsmanager.h │ ├── karaokelyricstext.cpp │ ├── karaokelyricstext.h │ ├── karaokelyricstextkar.cpp │ ├── karaokelyricstextkar.h │ ├── karaokelyricstextlrc.cpp │ ├── karaokelyricstextlrc.h │ ├── karaokelyricstextustar.cpp │ ├── karaokelyricstextustar.h │ ├── karaokewindowbackground.cpp │ └── karaokewindowbackground.h ├── tags │ ├── APEv2Tag.cpp │ ├── APEv2Tag.h │ ├── DllLibapetag.h │ ├── DllLibid3tag.h │ ├── FlacTag.cpp │ ├── FlacTag.h │ ├── Id3Tag.cpp │ ├── Id3Tag.h │ ├── ImusicInfoTagLoader.h │ ├── Makefile │ ├── MusicInfoTag.cpp │ ├── MusicInfoTag.h │ ├── MusicInfoTagLoaderAAC.cpp │ ├── MusicInfoTagLoaderAAC.h │ ├── MusicInfoTagLoaderASAP.cpp │ ├── MusicInfoTagLoaderASAP.h │ ├── MusicInfoTagLoaderApe.cpp │ ├── MusicInfoTagLoaderApe.h │ ├── MusicInfoTagLoaderCDDA.cpp │ ├── MusicInfoTagLoaderCDDA.h │ ├── MusicInfoTagLoaderDatabase.cpp │ ├── MusicInfoTagLoaderDatabase.h │ ├── MusicInfoTagLoaderFactory.cpp │ ├── MusicInfoTagLoaderFactory.h │ ├── MusicInfoTagLoaderFlac.cpp │ ├── MusicInfoTagLoaderFlac.h │ ├── MusicInfoTagLoaderMP3.cpp │ ├── MusicInfoTagLoaderMP3.h │ ├── MusicInfoTagLoaderMP4.cpp │ ├── MusicInfoTagLoaderMP4.h │ ├── MusicInfoTagLoaderMPC.cpp │ ├── MusicInfoTagLoaderMPC.h │ ├── MusicInfoTagLoaderMidi.cpp │ ├── MusicInfoTagLoaderMidi.h │ ├── MusicInfoTagLoaderMod.cpp │ ├── MusicInfoTagLoaderMod.h │ ├── MusicInfoTagLoaderNSF.cpp │ ├── MusicInfoTagLoaderNSF.h │ ├── MusicInfoTagLoaderOgg.cpp │ ├── MusicInfoTagLoaderOgg.h │ ├── MusicInfoTagLoaderSPC.cpp │ ├── MusicInfoTagLoaderSPC.h │ ├── MusicInfoTagLoaderShn.cpp │ ├── MusicInfoTagLoaderShn.h │ ├── MusicInfoTagLoaderWMA.cpp │ ├── MusicInfoTagLoaderWMA.h │ ├── MusicInfoTagLoaderWav.cpp │ ├── MusicInfoTagLoaderWav.h │ ├── MusicInfoTagLoaderWavPack.cpp │ ├── MusicInfoTagLoaderWavPack.h │ ├── MusicInfoTagLoaderYM.cpp │ ├── MusicInfoTagLoaderYM.h │ ├── OggTag.cpp │ ├── OggTag.h │ ├── Tag.h │ ├── VorbisTag.cpp │ ├── VorbisTag.h │ └── id3v1genre.h └── windows │ ├── GUIWindowMusicBase.cpp │ ├── GUIWindowMusicBase.h │ ├── GUIWindowMusicNav.cpp │ ├── GUIWindowMusicNav.h │ ├── GUIWindowMusicPlaylist.cpp │ ├── GUIWindowMusicPlaylist.h │ ├── GUIWindowMusicPlaylistEditor.cpp │ ├── GUIWindowMusicPlaylistEditor.h │ ├── GUIWindowMusicSongs.cpp │ ├── GUIWindowMusicSongs.h │ ├── GUIWindowVisualisation.cpp │ ├── GUIWindowVisualisation.h │ └── Makefile ├── network ├── AirPlayServer.cpp ├── AirPlayServer.h ├── AirTunesServer.cpp ├── AirTunesServer.h ├── DNSNameCache.cpp ├── DNSNameCache.h ├── DllLibPlist.h ├── DllLibShairport.h ├── EventClient.cpp ├── EventClient.h ├── EventPacket.cpp ├── EventPacket.h ├── EventServer.cpp ├── EventServer.h ├── GUIDialogAccessPoints.cpp ├── GUIDialogAccessPoints.h ├── GUIDialogNetworkSetup.cpp ├── GUIDialogNetworkSetup.h ├── Makefile.in ├── Network.cpp ├── Network.h ├── Socket.cpp ├── Socket.h ├── TCPServer.cpp ├── TCPServer.h ├── UPnP.cpp ├── UPnP.h ├── UdpClient.cpp ├── UdpClient.h ├── WebServer.cpp ├── WebServer.h ├── Zeroconf.cpp ├── Zeroconf.h ├── ZeroconfBrowser.cpp ├── ZeroconfBrowser.h ├── cddb.cpp ├── cddb.h ├── libscrobbler │ ├── Makefile │ ├── errors.h │ ├── lastfmscrobbler.cpp │ ├── lastfmscrobbler.h │ ├── librefmscrobbler.cpp │ ├── librefmscrobbler.h │ ├── scrobbler.cpp │ └── scrobbler.h ├── linux │ ├── Makefile │ ├── NetworkLinux.cpp │ ├── NetworkLinux.h │ ├── ZeroconfAvahi.cpp │ ├── ZeroconfAvahi.h │ ├── ZeroconfBrowserAvahi.cpp │ └── ZeroconfBrowserAvahi.h ├── osx │ ├── Makefile │ ├── ZeroconfBrowserOSX.cpp │ ├── ZeroconfBrowserOSX.h │ ├── ZeroconfOSX.cpp │ └── ZeroconfOSX.h └── windows │ ├── NetworkWin32.cpp │ ├── NetworkWin32.h │ ├── ZeroconfWIN.cpp │ └── ZeroconfWIN.h ├── osx ├── AutoPool.h ├── AutoPool.mm ├── CocoaInterface.h ├── CocoaInterface.mm ├── CoreAudio.cpp ├── CoreAudio.h ├── CoreAudioSoundManager.cpp ├── CoreAudioSoundManager.h ├── Credits.html ├── DarwinUtils.h ├── DarwinUtils.mm ├── HotKeyController.h ├── HotKeyController.m ├── IOSCoreAudio.cpp ├── IOSCoreAudio.h ├── Info.plist ├── Makefile.in ├── OSXGNUReplacements.c ├── OSXGNUReplacements.h ├── SDLMain.h ├── SDLMain.mm ├── XBMCHelper.cpp ├── XBMCHelper.h ├── atv2 │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── XBMC.png │ ├── XBMCATV2-Info.plist │ ├── XBMCAppliance.h │ ├── XBMCAppliance.m │ ├── XBMCController.h │ ├── XBMCController.mm │ ├── XBMCDebugHelpers.h │ ├── XBMCEAGLView.h │ ├── XBMCEAGLView.mm │ ├── xbmcclient.h │ ├── xbmcclientwrapper.h │ └── xbmcclientwrapper.mm ├── eprintf.cpp └── ios │ ├── English.lproj │ └── InfoPlist.strings │ ├── XBMC.png │ ├── XBMCApplication.h │ ├── XBMCApplication.m │ ├── XBMCController.h │ ├── XBMCController.mm │ ├── XBMCDebugHelpers.h │ ├── XBMCEAGLView.h │ ├── XBMCEAGLView.mm │ └── XBMCIOS-Info.plist ├── peripherals ├── Makefile ├── PeripheralTypes.h ├── Peripherals.cpp ├── Peripherals.h ├── bus │ ├── Makefile.in │ ├── PeripheralBus.cpp │ ├── PeripheralBus.h │ ├── PeripheralBusUSB.h │ ├── linux │ │ ├── PeripheralBusUSBLibUSB.cpp │ │ ├── PeripheralBusUSBLibUSB.h │ │ ├── PeripheralBusUSBLibUdev.cpp │ │ └── PeripheralBusUSBLibUdev.h │ ├── osx │ │ ├── PeripheralBusUSB.cpp │ │ └── PeripheralBusUSB.h │ └── win32 │ │ ├── PeripheralBusUSB.cpp │ │ └── PeripheralBusUSB.h ├── devices │ ├── Makefile.in │ ├── Peripheral.cpp │ ├── Peripheral.h │ ├── PeripheralBluetooth.cpp │ ├── PeripheralBluetooth.h │ ├── PeripheralCecAdapter.cpp │ ├── PeripheralCecAdapter.h │ ├── PeripheralDisk.cpp │ ├── PeripheralDisk.h │ ├── PeripheralHID.cpp │ ├── PeripheralHID.h │ ├── PeripheralNIC.cpp │ ├── PeripheralNIC.h │ ├── PeripheralNyxboard.cpp │ ├── PeripheralNyxboard.h │ ├── PeripheralTuner.cpp │ └── PeripheralTuner.h └── dialogs │ ├── GUIDialogPeripheralManager.cpp │ ├── GUIDialogPeripheralManager.h │ ├── GUIDialogPeripheralSettings.cpp │ ├── GUIDialogPeripheralSettings.h │ └── Makefile ├── pictures ├── DllImageLib.h ├── DllLibExif.h ├── GUIDialogPictureInfo.cpp ├── GUIDialogPictureInfo.h ├── GUIViewStatePictures.cpp ├── GUIViewStatePictures.h ├── GUIWindowPictures.cpp ├── GUIWindowPictures.h ├── GUIWindowSlideShow.cpp ├── GUIWindowSlideShow.h ├── Makefile ├── Picture.cpp ├── Picture.h ├── PictureInfoLoader.cpp ├── PictureInfoLoader.h ├── PictureInfoTag.cpp ├── PictureInfoTag.h ├── PictureThumbLoader.cpp ├── PictureThumbLoader.h ├── SlideShowPicture.cpp └── SlideShowPicture.h ├── playlists ├── Makefile ├── PlayList.cpp ├── PlayList.h ├── PlayListB4S.cpp ├── PlayListB4S.h ├── PlayListFactory.cpp ├── PlayListFactory.h ├── PlayListM3U.cpp ├── PlayListM3U.h ├── PlayListPLS.cpp ├── PlayListPLS.h ├── PlayListURL.cpp ├── PlayListURL.h ├── PlayListWPL.cpp ├── PlayListWPL.h ├── PlayListXML.cpp ├── PlayListXML.h ├── SmartPlayList.cpp └── SmartPlayList.h ├── powermanagement ├── DPMSSupport.cpp ├── DPMSSupport.h ├── IPowerSyscall.h ├── Makefile ├── PowerManager.cpp ├── PowerManager.h ├── linux │ ├── ConsoleDeviceKitPowerSyscall.cpp │ ├── ConsoleDeviceKitPowerSyscall.h │ ├── ConsoleUPowerSyscall.cpp │ ├── ConsoleUPowerSyscall.h │ ├── HALPowerSyscall.cpp │ ├── HALPowerSyscall.h │ └── Makefile ├── osx │ ├── CocoaPowerSyscall.cpp │ ├── CocoaPowerSyscall.h │ └── Makefile └── windows │ ├── Win32PowerSyscall.cpp │ └── Win32PowerSyscall.h ├── programs ├── GUIViewStatePrograms.cpp ├── GUIViewStatePrograms.h ├── GUIWindowPrograms.cpp ├── GUIWindowPrograms.h ├── Makefile ├── ProgramDatabase.cpp ├── ProgramDatabase.h ├── Shortcut.cpp └── Shortcut.h ├── pvr ├── Makefile ├── PVRDatabase.cpp ├── PVRDatabase.h ├── PVRGUIInfo.cpp ├── PVRGUIInfo.h ├── PVRManager.cpp ├── PVRManager.h ├── addons │ ├── Makefile │ ├── PVRClient.cpp │ ├── PVRClient.h │ ├── PVRClients.cpp │ └── PVRClients.h ├── channels │ ├── Makefile │ ├── PVRChannel.cpp │ ├── PVRChannel.h │ ├── PVRChannelGroup.cpp │ ├── PVRChannelGroup.h │ ├── PVRChannelGroupInternal.cpp │ ├── PVRChannelGroupInternal.h │ ├── PVRChannelGroups.cpp │ ├── PVRChannelGroups.h │ ├── PVRChannelGroupsContainer.cpp │ └── PVRChannelGroupsContainer.h ├── dialogs │ ├── GUIDialogPVRChannelManager.cpp │ ├── GUIDialogPVRChannelManager.h │ ├── GUIDialogPVRChannelsOSD.cpp │ ├── GUIDialogPVRChannelsOSD.h │ ├── GUIDialogPVRCutterOSD.cpp │ ├── GUIDialogPVRCutterOSD.h │ ├── GUIDialogPVRDirectorOSD.cpp │ ├── GUIDialogPVRDirectorOSD.h │ ├── GUIDialogPVRGroupManager.cpp │ ├── GUIDialogPVRGroupManager.h │ ├── GUIDialogPVRGuideInfo.cpp │ ├── GUIDialogPVRGuideInfo.h │ ├── GUIDialogPVRGuideOSD.cpp │ ├── GUIDialogPVRGuideOSD.h │ ├── GUIDialogPVRGuideSearch.cpp │ ├── GUIDialogPVRGuideSearch.h │ ├── GUIDialogPVRRecordingInfo.cpp │ ├── GUIDialogPVRRecordingInfo.h │ ├── GUIDialogPVRTimerSettings.cpp │ ├── GUIDialogPVRTimerSettings.h │ └── Makefile ├── recordings │ ├── Makefile │ ├── PVRRecording.cpp │ ├── PVRRecording.h │ ├── PVRRecordings.cpp │ └── PVRRecordings.h ├── timers │ ├── Makefile │ ├── PVRTimerInfoTag.cpp │ ├── PVRTimerInfoTag.h │ ├── PVRTimers.cpp │ └── PVRTimers.h └── windows │ ├── GUIViewStatePVR.cpp │ ├── GUIViewStatePVR.h │ ├── GUIWindowPVR.cpp │ ├── GUIWindowPVR.h │ ├── GUIWindowPVRChannels.cpp │ ├── GUIWindowPVRChannels.h │ ├── GUIWindowPVRCommon.cpp │ ├── GUIWindowPVRCommon.h │ ├── GUIWindowPVRGuide.cpp │ ├── GUIWindowPVRGuide.h │ ├── GUIWindowPVRRecordings.cpp │ ├── GUIWindowPVRRecordings.h │ ├── GUIWindowPVRSearch.cpp │ ├── GUIWindowPVRSearch.h │ ├── GUIWindowPVRTimers.cpp │ ├── GUIWindowPVRTimers.h │ └── Makefile ├── pvrclients ├── Makefile.include.in ├── MediaPortal │ ├── Cards.cpp │ ├── Cards.h │ ├── FileUtils.h │ ├── GenreTable.cpp │ ├── GenreTable.h │ ├── Makefile.in │ ├── README │ ├── Socket.cpp │ ├── Socket.h │ ├── channels.cpp │ ├── channels.h │ ├── client.cpp │ ├── client.h │ ├── epg.cpp │ ├── epg.h │ ├── lib │ │ └── tinyxml │ │ │ ├── Makefile │ │ │ ├── readme.txt │ │ │ ├── tinystr.cpp │ │ │ ├── tinystr.h │ │ │ ├── tinyxml.cpp │ │ │ ├── tinyxml.h │ │ │ ├── tinyxmlerror.cpp │ │ │ └── tinyxmlparser.cpp │ ├── os-dependent.h │ ├── posix │ │ └── os_posix.h │ ├── project │ │ └── VS2010Express │ │ │ ├── XBMC_MPTV.vcxproj │ │ │ └── XBMC_MPTV.vcxproj.filters │ ├── pvrclient-mediaportal.cpp │ ├── pvrclient-mediaportal.h │ ├── recordings.cpp │ ├── recordings.h │ ├── timers.cpp │ ├── timers.h │ ├── uri.cpp │ ├── uri.h │ ├── utils.cpp │ ├── utils.h │ └── windows │ │ ├── FileUtils.cpp │ │ ├── WindowsUtils.cpp │ │ ├── WindowsUtils.h │ │ └── os_windows.h ├── mythtv │ ├── Makefile.in │ ├── MythXml.cpp │ ├── MythXml.h │ ├── client.cpp │ ├── client.h │ └── libmythxml │ │ ├── GetChannelListCommand.h │ │ ├── GetChannelListParameters.h │ │ ├── GetChannelListResult.cpp │ │ ├── GetChannelListResult.h │ │ ├── GetNumChannelsCommand.h │ │ ├── GetNumChannelsParameters.h │ │ ├── GetNumChannelsResult.cpp │ │ ├── GetNumChannelsResult.h │ │ ├── GetProgramGuideCommand.h │ │ ├── GetProgramGuideParameters.cpp │ │ ├── GetProgramGuideParameters.h │ │ ├── GetProgramGuideResult.cpp │ │ ├── GetProgramGuideResult.h │ │ ├── Makefile │ │ ├── MythXmlCommand.cpp │ │ ├── MythXmlCommand.h │ │ ├── MythXmlCommandParameters.cpp │ │ ├── MythXmlCommandParameters.h │ │ ├── MythXmlCommandResult.h │ │ ├── SChannel.h │ │ └── SEpg.h ├── pvr-demo │ ├── Makefile.in │ ├── PVRDemoData.cpp │ ├── PVRDemoData.h │ ├── client.cpp │ └── client.h ├── tvheadend │ ├── HTSPConnection.cpp │ ├── HTSPConnection.h │ ├── HTSPData.cpp │ ├── HTSPData.h │ ├── HTSPDemux.cpp │ ├── HTSPDemux.h │ ├── HTSPTypes.h │ ├── Makefile.in │ ├── client.cpp │ ├── client.h │ └── project │ │ └── VS2010Express │ │ ├── XBMC_tvheadend.vcxproj │ │ └── XBMC_tvheadend.vcxproj.filters └── vdr-vnsi │ ├── COPYING │ ├── Makefile.in │ ├── README │ ├── VNSIChannelScan.cpp │ ├── VNSIChannelScan.h │ ├── VNSIData.cpp │ ├── VNSIData.h │ ├── VNSIDemux.cpp │ ├── VNSIDemux.h │ ├── VNSIRecording.cpp │ ├── VNSIRecording.h │ ├── VNSISession.cpp │ ├── VNSISession.h │ ├── client.cpp │ ├── client.h │ ├── project │ └── VS2010Express │ │ ├── XBMC_VDR_vnsi.vcxproj │ │ └── XBMC_VDR_vnsi.vcxproj.filters │ ├── requestpacket.cpp │ ├── requestpacket.h │ ├── responsepacket.cpp │ ├── responsepacket.h │ ├── tools.cpp │ ├── tools.h │ ├── vdr-plugin-vnsiserver │ ├── COPYING │ ├── HISTORY │ ├── Makefile │ ├── README │ ├── bitstream.c │ ├── bitstream.h │ ├── config.c │ ├── config.h │ ├── cxsocket.c │ ├── cxsocket.h │ ├── demuxer.c │ ├── demuxer.h │ ├── demuxer_AAC.c │ ├── demuxer_AAC.h │ ├── demuxer_AC3.c │ ├── demuxer_AC3.h │ ├── demuxer_DTS.c │ ├── demuxer_DTS.h │ ├── demuxer_MPEGAudio.c │ ├── demuxer_MPEGAudio.h │ ├── demuxer_MPEGVideo.c │ ├── demuxer_MPEGVideo.h │ ├── demuxer_Subtitle.c │ ├── demuxer_Subtitle.h │ ├── demuxer_Teletext.c │ ├── demuxer_Teletext.h │ ├── demuxer_h264.c │ ├── demuxer_h264.h │ ├── hash.c │ ├── hash.h │ ├── patches │ │ └── vdr-wirbelscan-0.0.5-pre11e-AddServiceInterface.diff │ ├── receiver.c │ ├── receiver.h │ ├── recordingscache.c │ ├── recordingscache.h │ ├── recplayer.c │ ├── recplayer.h │ ├── requestpacket.c │ ├── requestpacket.h │ ├── responsepacket.c │ ├── responsepacket.h │ ├── vnsi.c │ ├── vnsi.h │ ├── vnsiclient.c │ ├── vnsiclient.h │ ├── vnsicommand.h │ ├── vnsiserver.c │ ├── vnsiserver.h │ ├── vnsiserver │ │ └── allowed_hosts.conf │ └── wirbelscanservice.h │ └── vnsicommand.h ├── rendering ├── Makefile ├── RenderSystem.cpp ├── RenderSystem.h ├── dx │ ├── GUIWindowTestPatternDX.cpp │ ├── GUIWindowTestPatternDX.h │ ├── RenderSystemDX.cpp │ └── RenderSystemDX.h ├── gl │ ├── GUIWindowTestPatternGL.cpp │ ├── GUIWindowTestPatternGL.h │ ├── Makefile │ ├── RenderSystemGL.cpp │ └── RenderSystemGL.h └── gles │ ├── Makefile │ ├── RenderSystemGLES.cpp │ └── RenderSystemGLES.h ├── screensavers └── rsxs-0.9 │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README.xbmc │ ├── THANKS │ ├── acinclude.m4 │ ├── config │ ├── Makefile.am │ ├── rs-cyclone.xml │ ├── rs-euphoria.xml │ ├── rs-fieldlines.xml │ ├── rs-flocks.xml │ ├── rs-flux.xml │ ├── rs-helios.xml │ ├── rs-hyperspace.xml │ ├── rs-lattice.xml │ ├── rs-plasma.xml │ ├── rs-skyrocket.xml │ └── rs-solarwinds.xml │ ├── configure.ac │ ├── lib │ ├── Makefile.am │ ├── alloca.c │ ├── alloca_.h │ ├── argp-ba.c │ ├── argp-eexst.c │ ├── argp-fmtstream.c │ ├── argp-fmtstream.h │ ├── argp-fs-xinl.c │ ├── argp-help.c │ ├── argp-namefrob.h │ ├── argp-parse.c │ ├── argp-pin.c │ ├── argp-pv.c │ ├── argp-pvh.c │ ├── argp-xinl.c │ ├── argp.h │ ├── argz.c │ ├── argz_.h │ ├── asnprintf.c │ ├── basename.c │ ├── dirname.c │ ├── dirname.h │ ├── error.c │ ├── error.h │ ├── exit.h │ ├── exitfail.c │ ├── exitfail.h │ ├── getopt.c │ ├── getopt1.c │ ├── getopt_.h │ ├── getopt_int.h │ ├── gettext.h │ ├── gettimeofday.c │ ├── mbchar.c │ ├── mbchar.h │ ├── mbuiter.h │ ├── memchr.c │ ├── mempcpy.c │ ├── mempcpy.h │ ├── minmax.h │ ├── printf-args.c │ ├── printf-args.h │ ├── printf-parse.c │ ├── printf-parse.h │ ├── size_max.h │ ├── stdbool_.h │ ├── strcase.h │ ├── strcasecmp.c │ ├── strchrnul.c │ ├── strchrnul.h │ ├── stripslash.c │ ├── strncasecmp.c │ ├── strndup.c │ ├── strndup.h │ ├── strnlen.c │ ├── strnlen.h │ ├── strnlen1.c │ ├── strnlen1.h │ ├── sysexit_.h │ ├── vasnprintf.c │ ├── vasnprintf.h │ ├── vsnprintf.c │ ├── vsnprintf.h │ ├── wcwidth.h │ ├── xalloc-die.c │ ├── xalloc.h │ ├── xmalloc.c │ ├── xsize.h │ ├── xstrndup.c │ └── xstrndup.h │ ├── libltdl │ ├── Makefile.am │ ├── ltdl.c │ └── ltdl.h │ ├── m4 │ ├── alloca.m4 │ ├── argp.m4 │ ├── argz.m4 │ ├── dirname.m4 │ ├── dos.m4 │ ├── double-slash-root.m4 │ ├── eoverflow.m4 │ ├── error.m4 │ ├── exitfail.m4 │ ├── extensions.m4 │ ├── getopt.m4 │ ├── gettimeofday.m4 │ ├── gnulib-comp.m4 │ ├── intmax_t.m4 │ ├── inttypes_h.m4 │ ├── longdouble.m4 │ ├── longlong.m4 │ ├── mbchar.m4 │ ├── mbiter.m4 │ ├── mbrtowc.m4 │ ├── memchr.m4 │ ├── mempcpy.m4 │ ├── minmax.m4 │ ├── onceonly_2_57.m4 │ ├── restrict.m4 │ ├── signed.m4 │ ├── size_max.m4 │ ├── stdbool.m4 │ ├── stdint_h.m4 │ ├── strcase.m4 │ ├── strchrnul.m4 │ ├── strndup.m4 │ ├── strnlen.m4 │ ├── sysexits.m4 │ ├── unistd_h.m4 │ ├── vasnprintf.m4 │ ├── vsnprintf.m4 │ ├── wchar_t.m4 │ ├── wcwidth.m4 │ ├── wint_t.m4 │ ├── xalloc.m4 │ ├── xsize.m4 │ └── xstrndup.m4 │ ├── rsxs.spec.in │ ├── scripts │ ├── install.awk │ ├── uninstall.awk │ └── verify.awk │ ├── src │ ├── Makefile.am │ ├── Makefile.common │ ├── color.cc │ ├── color.hh │ ├── common.cc │ ├── common.hh │ ├── cyclone │ │ ├── Makefile.am │ │ ├── blend.cc │ │ ├── blend.hh │ │ ├── cyclone.cc │ │ ├── cyclone.hh │ │ ├── particle.cc │ │ └── particle.hh │ ├── dlopen.hh │ ├── euphoria │ │ ├── Makefile.am │ │ ├── euphoria.cc │ │ ├── euphoria.hh │ │ ├── lines.png │ │ ├── plasma.png │ │ ├── stringy.png │ │ ├── wisp.cc │ │ └── wisp.hh │ ├── fieldlines │ │ ├── Makefile.am │ │ ├── fieldlines.cc │ │ ├── fieldlines.hh │ │ └── ion.hh │ ├── flocks │ │ ├── Makefile.am │ │ ├── bug.cc │ │ ├── bug.hh │ │ ├── flocks.cc │ │ └── flocks.hh │ ├── flux │ │ ├── Makefile.am │ │ ├── flux.cc │ │ ├── flux.hh │ │ ├── trail.cc │ │ └── trail.hh │ ├── hack.hh │ ├── helios │ │ ├── Makefile.am │ │ ├── helios.cc │ │ ├── helios.hh │ │ ├── particle.cc │ │ ├── particle.hh │ │ ├── sphere.hh │ │ └── spheremap.png │ ├── hyperspace │ │ ├── Makefile.am │ │ ├── caustic.cc │ │ ├── caustic.hh │ │ ├── cubemaps.cc │ │ ├── cubemaps.hh │ │ ├── extensions.cc │ │ ├── extensions.hh │ │ ├── flares.cc │ │ ├── flares.hh │ │ ├── goo.cc │ │ ├── goo.hh │ │ ├── hyperspace.cc │ │ ├── hyperspace.hh │ │ ├── nebula.cc │ │ ├── nebula.hh │ │ ├── nebula.png │ │ ├── particle.cc │ │ ├── particle.hh │ │ ├── shaders.cc │ │ ├── shaders.hh │ │ ├── spline.cc │ │ ├── spline.hh │ │ ├── starburst.cc │ │ ├── starburst.hh │ │ ├── tunnel.cc │ │ └── tunnel.hh │ ├── implicit.cc │ ├── implicit.hh │ ├── lattice │ │ ├── Makefile.am │ │ ├── brass.png │ │ ├── camera.hh │ │ ├── chrome.png │ │ ├── circuits.png │ │ ├── crystal.png │ │ ├── doughnuts.png │ │ ├── ghostly.png │ │ ├── industrial1.png │ │ ├── industrial2.png │ │ ├── lattice.cc │ │ ├── lattice.hh │ │ ├── resources.cc │ │ ├── resources.hh │ │ └── shiny.png │ ├── oggsound.cc │ ├── oggsound.hh │ ├── plasma │ │ ├── Makefile.am │ │ ├── plasma.cc │ │ └── plasma.hh │ ├── pngimage.cc │ ├── pngimage.hh │ ├── resource.hh │ ├── skyrocket │ │ ├── Makefile.am │ │ ├── bee.cc │ │ ├── bee.hh │ │ ├── bigmama.cc │ │ ├── bigmama.hh │ │ ├── bomb.cc │ │ ├── bomb.hh │ │ ├── boom1.ogg │ │ ├── boom2.ogg │ │ ├── boom3.ogg │ │ ├── boom4.ogg │ │ ├── cloud.png │ │ ├── earth-far.png │ │ ├── earth-light.png │ │ ├── earth-near.png │ │ ├── explosion.cc │ │ ├── explosion.hh │ │ ├── flares.cc │ │ ├── flares.hh │ │ ├── fountain.cc │ │ ├── fountain.hh │ │ ├── launch1.ogg │ │ ├── launch2.ogg │ │ ├── meteor.cc │ │ ├── meteor.hh │ │ ├── moon.png │ │ ├── nuke.ogg │ │ ├── overlay.cc │ │ ├── overlay.hh │ │ ├── particle.hh │ │ ├── popper.ogg │ │ ├── resources.cc │ │ ├── resources.hh │ │ ├── rocket.cc │ │ ├── rocket.hh │ │ ├── shockwave.cc │ │ ├── shockwave.hh │ │ ├── skyrocket.cc │ │ ├── skyrocket.hh │ │ ├── smoke.cc │ │ ├── smoke.hh │ │ ├── smoke1.png │ │ ├── smoke2.png │ │ ├── smoke3.png │ │ ├── smoke4.png │ │ ├── smoke5.png │ │ ├── spinner.cc │ │ ├── spinner.hh │ │ ├── star.cc │ │ ├── star.hh │ │ ├── streamer.cc │ │ ├── streamer.hh │ │ ├── stretcher.cc │ │ ├── stretcher.hh │ │ ├── suck.ogg │ │ ├── sucker.cc │ │ ├── sucker.hh │ │ ├── whistle.ogg │ │ ├── world.cc │ │ └── world.hh │ ├── solarwinds │ │ ├── Makefile.am │ │ ├── Makefile.xbmc │ │ ├── solarwinds.cc │ │ ├── solarwinds.hh │ │ ├── wind.cc │ │ └── wind.hh │ ├── sound.cc │ ├── sound.hh │ ├── vector.hh │ └── vroot.hh │ └── xbmc │ └── Makefile.in ├── settings ├── AdvancedSettings.cpp ├── AdvancedSettings.h ├── AppParamParser.cpp ├── AppParamParser.h ├── GUIDialogContentSettings.cpp ├── GUIDialogContentSettings.h ├── GUIDialogLockSettings.cpp ├── GUIDialogLockSettings.h ├── GUIDialogProfileSettings.cpp ├── GUIDialogProfileSettings.h ├── GUIDialogSettings.cpp ├── GUIDialogSettings.h ├── GUISettings.cpp ├── GUISettings.h ├── GUIWindowSettings.cpp ├── GUIWindowSettings.h ├── GUIWindowSettingsCategory.cpp ├── GUIWindowSettingsCategory.h ├── GUIWindowSettingsProfile.cpp ├── GUIWindowSettingsProfile.h ├── GUIWindowSettingsScreenCalibration.cpp ├── GUIWindowSettingsScreenCalibration.h ├── GUIWindowTestPattern.cpp ├── GUIWindowTestPattern.h ├── Makefile ├── Profile.cpp ├── Profile.h ├── Settings.cpp ├── Settings.h ├── SettingsControls.cpp ├── SettingsControls.h ├── VideoSettings.cpp └── VideoSettings.h ├── storage ├── AutorunMediaJob.cpp ├── AutorunMediaJob.h ├── DetectDVDType.cpp ├── DetectDVDType.h ├── IStorageProvider.h ├── IoSupport.cpp ├── IoSupport.h ├── Makefile ├── MediaManager.cpp ├── MediaManager.h ├── cdioSupport.cpp ├── cdioSupport.h ├── linux │ ├── DeviceKitDisksProvider.cpp │ ├── DeviceKitDisksProvider.h │ ├── HALProvider.cpp │ ├── HALProvider.h │ ├── LinuxStorageProvider.h │ ├── Makefile │ ├── UDisksProvider.cpp │ └── UDisksProvider.h ├── osx │ ├── DarwinStorageProvider.cpp │ ├── DarwinStorageProvider.h │ └── Makefile └── windows │ ├── Win32StorageProvider.cpp │ └── Win32StorageProvider.h ├── system.h ├── threads ├── Atomics.cpp ├── Atomics.h ├── Condition.h ├── CriticalSection.h ├── Event.cpp ├── Event.h ├── Helpers.h ├── LockFree.cpp ├── LockFree.h ├── Lockables.h ├── Makefile ├── SharedSection.h ├── SingleLock.h ├── SystemClock.cpp ├── SystemClock.h ├── Thread.cpp ├── Thread.h ├── ThreadLocal.h ├── platform │ ├── Condition.h │ ├── CriticalSection.h │ ├── Implementation.cpp │ ├── README.platform │ ├── ThreadLocal.h │ ├── pthreads │ │ ├── Condition.h │ │ ├── CriticalSection.h │ │ ├── Implementation.cpp │ │ └── ThreadLocal.h │ └── win │ │ ├── Condition.h │ │ ├── CriticalSection.h │ │ ├── Implementation.cpp │ │ └── ThreadLocal.h └── test │ ├── Makefile │ ├── TestAtomics.cpp │ ├── TestEvent.cpp │ ├── TestHelpers.h │ ├── TestMain.cpp │ ├── TestSharedSection.cpp │ └── TestThreadLocal.cpp ├── utils ├── AlarmClock.cpp ├── AlarmClock.h ├── AliasShortcutUtils.cpp ├── AliasShortcutUtils.h ├── Archive.cpp ├── Archive.h ├── AsyncFileCopy.cpp ├── AsyncFileCopy.h ├── AutoPtrHandle.cpp ├── AutoPtrHandle.h ├── BitstreamStats.cpp ├── BitstreamStats.h ├── CPUInfo.cpp ├── CPUInfo.h ├── CharsetConverter.cpp ├── CharsetConverter.h ├── Crc32.cpp ├── Crc32.h ├── CryptThreading.cpp ├── CryptThreading.h ├── DownloadQueue.cpp ├── DownloadQueue.h ├── DownloadQueueManager.cpp ├── DownloadQueueManager.h ├── EndianSwap.h ├── Fanart.cpp ├── Fanart.h ├── FileOperationJob.cpp ├── FileOperationJob.h ├── FileUtils.cpp ├── FileUtils.h ├── GLUtils.cpp ├── GLUtils.h ├── GlobalsHandling.h ├── HTMLTable.cpp ├── HTMLTable.h ├── HTMLUtil.cpp ├── HTMLUtil.h ├── HttpHeader.cpp ├── HttpHeader.h ├── HttpParser.cpp ├── HttpParser.h ├── ISerializable.h ├── InfoLoader.cpp ├── InfoLoader.h ├── JSONVariantParser.cpp ├── JSONVariantParser.h ├── JSONVariantWriter.cpp ├── JSONVariantWriter.h ├── Job.h ├── JobManager.cpp ├── JobManager.h ├── LCD.cpp ├── LCD.h ├── LCDFactory.cpp ├── LCDFactory.h ├── LabelFormatter.cpp ├── LabelFormatter.h ├── LangCodeExpander.cpp ├── LangCodeExpander.h ├── Makefile ├── MathUtils.h ├── Observer.cpp ├── Observer.h ├── PCMAmplifier.cpp ├── PCMAmplifier.h ├── PCMRemap.cpp ├── PCMRemap.h ├── PerformanceSample.cpp ├── PerformanceSample.h ├── PerformanceStats.cpp ├── PerformanceStats.h ├── RecentlyAddedJob.cpp ├── RecentlyAddedJob.h ├── RegExp.cpp ├── RegExp.h ├── RingBuffer.cpp ├── RingBuffer.h ├── RssReader.cpp ├── RssReader.h ├── SaveFileStateJob.h ├── ScraperParser.cpp ├── ScraperParser.h ├── ScraperUrl.cpp ├── ScraperUrl.h ├── Splash.cpp ├── Splash.h ├── StdString.h ├── Stopwatch.cpp ├── Stopwatch.h ├── StreamDetails.cpp ├── StreamDetails.h ├── StreamUtils.cpp ├── StreamUtils.h ├── StringUtils.cpp ├── StringUtils.h ├── SystemInfo.cpp ├── SystemInfo.h ├── TextSearch.cpp ├── TextSearch.h ├── TimeSmoother.cpp ├── TimeSmoother.h ├── TimeUtils.cpp ├── TimeUtils.h ├── TuxBoxUtil.cpp ├── TuxBoxUtil.h ├── URIUtils.cpp ├── URIUtils.h ├── Variant.cpp ├── Variant.h ├── Weather.cpp ├── Weather.h ├── Win32Exception.cpp ├── Win32Exception.h ├── WindowsShortcut.cpp ├── WindowsShortcut.h ├── XBMCTinyXML.cpp ├── XBMCTinyXML.h ├── XMLUtils.cpp ├── XMLUtils.h ├── fastmemcpy-arm.S ├── fastmemcpy.c ├── fastmemcpy.h ├── fft.cpp ├── fft.h ├── fstrcmp.c ├── fstrcmp.h ├── log.cpp ├── log.h ├── md5.cpp ├── md5.h ├── ssrc.cpp ├── ssrc.h └── test │ ├── Makefile │ ├── TestGlobalsHandling.cpp │ ├── TestGlobalsHandlingPattern1.h │ └── TestMain.cpp ├── video ├── Bookmark.cpp ├── Bookmark.h ├── Episode.h ├── GUIViewStateVideo.cpp ├── GUIViewStateVideo.h ├── Makefile ├── Teletext.cpp ├── Teletext.h ├── TeletextDefines.h ├── VideoDatabase.cpp ├── VideoDatabase.h ├── VideoInfoDownloader.cpp ├── VideoInfoDownloader.h ├── VideoInfoScanner.cpp ├── VideoInfoScanner.h ├── VideoInfoTag.cpp ├── VideoInfoTag.h ├── VideoReferenceClock.cpp ├── VideoReferenceClock.h ├── dialogs │ ├── GUIDialogAudioSubtitleSettings.cpp │ ├── GUIDialogAudioSubtitleSettings.h │ ├── GUIDialogFileStacking.cpp │ ├── GUIDialogFileStacking.h │ ├── GUIDialogFullScreenInfo.cpp │ ├── GUIDialogFullScreenInfo.h │ ├── GUIDialogTeletext.cpp │ ├── GUIDialogTeletext.h │ ├── GUIDialogVideoBookmarks.cpp │ ├── GUIDialogVideoBookmarks.h │ ├── GUIDialogVideoInfo.cpp │ ├── GUIDialogVideoInfo.h │ ├── GUIDialogVideoOSD.cpp │ ├── GUIDialogVideoOSD.h │ ├── GUIDialogVideoOverlay.cpp │ ├── GUIDialogVideoOverlay.h │ ├── GUIDialogVideoScan.cpp │ ├── GUIDialogVideoScan.h │ ├── GUIDialogVideoSettings.cpp │ ├── GUIDialogVideoSettings.h │ └── Makefile └── windows │ ├── GUIWindowFullScreen.cpp │ ├── GUIWindowFullScreen.h │ ├── GUIWindowVideoBase.cpp │ ├── GUIWindowVideoBase.h │ ├── GUIWindowVideoNav.cpp │ ├── GUIWindowVideoNav.h │ ├── GUIWindowVideoPlaylist.cpp │ ├── GUIWindowVideoPlaylist.h │ └── Makefile ├── visualizations ├── DirectXSpectrum │ ├── directx_spectrum.cpp │ ├── directx_spectrum.sln │ ├── directx_spectrum.vcproj │ ├── directx_spectrum.vcxproj │ └── directx_spectrum.vcxproj.filters ├── EGLHelpers │ ├── GUIShader.cpp │ ├── GUIShader.h │ ├── Shader.cpp │ └── Shader.h ├── Goom │ ├── Main.cpp │ ├── Makefile.in │ ├── build_xbmc_win32.sh │ ├── goom.patch │ ├── goom2k4-0 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── KNOWNBUGS │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── autogen.sh │ │ ├── configure.in │ │ ├── goom2k4.png │ │ ├── gtk-gui-devel │ │ │ ├── ABOUT-NLS │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── acconfig.h │ │ │ ├── aclocal.m4 │ │ │ ├── autogen.sh │ │ │ ├── config.h.in │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── goom2.glade │ │ │ ├── gtk-gui │ │ │ │ ├── Makefile.am │ │ │ │ ├── gtk-callbacks.c │ │ │ │ ├── gtk-callbacks.h │ │ │ │ ├── gtk-interface.c │ │ │ │ ├── gtk-interface.h │ │ │ │ ├── gtk-support.c │ │ │ │ ├── gtk-support.h │ │ │ │ └── main.c │ │ │ ├── install-sh │ │ │ ├── intl │ │ │ │ ├── ChangeLog │ │ │ │ ├── VERSION │ │ │ │ ├── bindtextdom.c │ │ │ │ ├── cat-compat.c │ │ │ │ ├── dcgettext.c │ │ │ │ ├── dgettext.c │ │ │ │ ├── explodename.c │ │ │ │ ├── finddomain.c │ │ │ │ ├── gettext.c │ │ │ │ ├── gettext.h │ │ │ │ ├── gettextP.h │ │ │ │ ├── hash-string.h │ │ │ │ ├── intl-compat.c │ │ │ │ ├── l10nflist.c │ │ │ │ ├── libgettext.h │ │ │ │ ├── linux-msg.sed │ │ │ │ ├── loadinfo.h │ │ │ │ ├── loadmsgcat.c │ │ │ │ ├── localealias.c │ │ │ │ ├── po2tbl.sed.in │ │ │ │ ├── textdomain.c │ │ │ │ └── xopen-msg.sed │ │ │ ├── missing │ │ │ ├── mkinstalldirs │ │ │ ├── po │ │ │ │ ├── ChangeLog │ │ │ │ ├── Makefile.in.in │ │ │ │ ├── POTFILES.in │ │ │ │ ├── cat-id-tbl.c │ │ │ │ ├── goom2.pot │ │ │ │ └── stamp-cat-id │ │ │ └── stamp-h.in │ │ ├── libgoom2.pc.in │ │ ├── m4 │ │ │ ├── sdl.m4 │ │ │ └── xmms.m4 │ │ ├── mac │ │ │ ├── Makefile │ │ │ ├── ReadMe.rtf │ │ │ ├── StandAlone │ │ │ │ ├── AppController.h │ │ │ │ ├── AppController.m │ │ │ │ ├── CoreAudioDevice.cpp │ │ │ │ ├── CoreAudioDevice.h │ │ │ │ ├── CoreAudioHardware.cpp │ │ │ │ ├── CoreAudioHardware.h │ │ │ │ ├── English.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.nib │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── French.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── Goom.h │ │ │ │ ├── Goom.m │ │ │ │ ├── GoomFXParam.h │ │ │ │ ├── GoomFXParam.m │ │ │ │ ├── GoomFXView.h │ │ │ │ ├── GoomFXView.m │ │ │ │ ├── MainOpenGLView.h │ │ │ │ ├── MainOpenGLView.m │ │ │ │ ├── MyApplication.h │ │ │ │ ├── MyApplication.m │ │ │ │ ├── SoundSampler.h │ │ │ │ ├── SoundSampler.mm │ │ │ │ ├── iGoom-StandAlone.plist │ │ │ │ ├── iGoom_Prefix.pch │ │ │ │ ├── icon.icns │ │ │ │ └── main.m │ │ │ ├── iGoom.xcode │ │ │ │ └── project.pbxproj │ │ │ └── iTunes │ │ │ │ ├── English.lproj │ │ │ │ ├── About.strings │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── SettingsDialog.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.xib │ │ │ │ ├── French.lproj │ │ │ │ ├── About.strings │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── SettingsDialog.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.xib │ │ │ │ ├── Installer.applescript │ │ │ │ ├── iGoom-Info.plist │ │ │ │ ├── iGoom.c │ │ │ │ ├── iTuneVisualAPI │ │ │ │ ├── iTunesAPI.c │ │ │ │ ├── iTunesAPI.h │ │ │ │ └── iTunesVisualAPI.h │ │ │ │ └── ppc_doubling.s │ │ ├── mkinstalldirs │ │ ├── sdl-goom │ │ │ ├── Makefile.am │ │ │ ├── frame_rate_tester.c │ │ │ ├── frame_rate_tester.h │ │ │ ├── gmtimer.c │ │ │ ├── gmtimer.h │ │ │ ├── gtk-callbacks.c │ │ │ ├── gtk-callbacks.h │ │ │ ├── gtk-interface.c │ │ │ ├── gtk-interface.h │ │ │ ├── gtk-support.c │ │ │ ├── gtk-support.h │ │ │ ├── pixeldoubler.c │ │ │ ├── pixeldoubler.h │ │ │ ├── pixeldoubler_athlon.s │ │ │ ├── readme.c │ │ │ ├── sdl_goom.c │ │ │ ├── sdl_goom.h │ │ │ ├── sdl_pixeldoubler.c │ │ │ ├── sdl_pixeldoubler.h │ │ │ ├── surface.c │ │ │ └── surface.h │ │ ├── src │ │ │ ├── DOCODE.TXT │ │ │ ├── Makefile.am │ │ │ ├── TODO │ │ │ ├── config_param.c │ │ │ ├── convolve_fx.c │ │ │ ├── convolve_fx.c.jc │ │ │ ├── cpu_info.c │ │ │ ├── cpu_info.h │ │ │ ├── default_script.goom │ │ │ ├── default_scripts.h │ │ │ ├── drawmethods.c │ │ │ ├── drawmethods.h │ │ │ ├── empty_script.goom │ │ │ ├── filter_test │ │ │ │ ├── mmx.h │ │ │ │ ├── px_py_calc.c │ │ │ │ ├── zoom_filter_mmx-v0.c │ │ │ │ └── zoom_filter_mmx.c │ │ │ ├── filters.c │ │ │ ├── filters_mmx.s │ │ │ ├── flying_stars_fx.c │ │ │ ├── gfontlib.c │ │ │ ├── gfontlib.h │ │ │ ├── gfontrle.c │ │ │ ├── gfontrle.h │ │ │ ├── goom.h │ │ │ ├── goom_config.h │ │ │ ├── goom_config_param.h │ │ │ ├── goom_core.c │ │ │ ├── goom_filters.h │ │ │ ├── goom_fx.h │ │ │ ├── goom_graphic.h │ │ │ ├── goom_hash.c │ │ │ ├── goom_hash.h │ │ │ ├── goom_plugin_info.h │ │ │ ├── goom_tools.c │ │ │ ├── goom_tools.h │ │ │ ├── goom_typedefs.h │ │ │ ├── goom_visual_fx.h │ │ │ ├── goomsl.c │ │ │ ├── goomsl.h │ │ │ ├── goomsl_hash.c │ │ │ ├── goomsl_hash.h │ │ │ ├── goomsl_heap.c │ │ │ ├── goomsl_heap.h │ │ │ ├── goomsl_lex.c │ │ │ ├── goomsl_lex.l │ │ │ ├── goomsl_private.h │ │ │ ├── goomsl_yacc.c │ │ │ ├── goomsl_yacc.h │ │ │ ├── goomsl_yacc.y │ │ │ ├── graphic.c │ │ │ ├── ifs.c │ │ │ ├── ifs.h │ │ │ ├── jitc_test.c │ │ │ ├── jitc_x86.c │ │ │ ├── jitc_x86.h │ │ │ ├── lines.c │ │ │ ├── lines.h │ │ │ ├── mathtools.c │ │ │ ├── mathtools.h │ │ │ ├── mmx.c │ │ │ ├── mmx.h │ │ │ ├── motif_goom1.h │ │ │ ├── motif_goom2.h │ │ │ ├── plugin_info.c │ │ │ ├── pngload.c │ │ │ ├── powerpc │ │ │ │ ├── Copie de ppc_zoom_ultimate.s │ │ │ │ └── ppc_doubling.s │ │ │ ├── ppc_drawings.h │ │ │ ├── ppc_drawings.s │ │ │ ├── ppc_zoom_ultimate.h │ │ │ ├── ppc_zoom_ultimate.s │ │ │ ├── sound_tester.c │ │ │ ├── sound_tester.h │ │ │ ├── surf3d.c │ │ │ ├── surf3d.h │ │ │ ├── surf3d.s │ │ │ ├── tentacle3d.c │ │ │ ├── tentacle3d.h │ │ │ ├── v3d.c │ │ │ ├── v3d.h │ │ │ ├── xmmx.c │ │ │ └── xmmx.h │ │ ├── test │ │ │ └── testapp.c │ │ ├── tools │ │ │ ├── Makefile.devel │ │ │ ├── gfont.c │ │ │ ├── minicompress.c │ │ │ └── xmms-goom.spec │ │ └── xmms-goom │ │ │ ├── Makefile.am │ │ │ └── xmms_goom.c │ ├── goom_config.h │ └── visualization.goom │ │ ├── addon.xml │ │ └── icon.png ├── Milkdrop │ ├── MilkdropXBMC.cpp │ ├── Plugin.sln │ ├── Plugin.vcproj │ ├── Plugin.vcxproj │ ├── Plugin.vcxproj.filters │ ├── XmlDocument.cpp │ ├── XmlDocument.h │ └── vis_milkdrop │ │ ├── LICENSE.TXT │ │ ├── defines.h │ │ ├── dxcontext.cpp │ │ ├── dxcontext.h │ │ ├── evallib │ │ ├── CAL_TAB.C │ │ ├── Compiler.c │ │ ├── Compiler.h │ │ ├── Gettok.c │ │ ├── LEX.H │ │ ├── LLSAVE.C │ │ ├── Lexget.c │ │ ├── Lexswi.c │ │ ├── Lextab.c │ │ ├── Lmovb.c │ │ ├── Scan.l │ │ ├── Yylex.c │ │ ├── cal.y │ │ ├── cal_tab.h │ │ ├── cfunc.c │ │ ├── eval.c │ │ ├── eval.h │ │ ├── makel.bat │ │ ├── makey.bat │ │ └── readme.txt │ │ ├── fft.cpp │ │ ├── fft.h │ │ ├── md_defines.h │ │ ├── milkdropfs.cpp │ │ ├── plugin.cpp │ │ ├── plugin.h │ │ ├── pluginshell.cpp │ │ ├── pluginshell.h │ │ ├── shell_defines.h │ │ ├── state.cpp │ │ ├── state.h │ │ ├── support.cpp │ │ ├── support.h │ │ ├── utility.cpp │ │ └── utility.h ├── OpenGLSpectrum │ ├── Makefile.in │ ├── opengl_spectrum.cpp │ ├── opengl_spectrum.h │ ├── opengl_spectrum.sln │ └── opengl_spectrum.vcproj ├── Vortex │ ├── StandAlone │ │ └── StandAlone.cpp │ ├── VortexVis │ │ ├── Core │ │ │ ├── DebugConsole.cpp │ │ │ ├── DebugConsole.h │ │ │ ├── EffectBase.cpp │ │ │ ├── EffectBase.h │ │ │ ├── Mesh.cpp │ │ │ ├── Mesh.h │ │ │ ├── Preset.cpp │ │ │ ├── Preset.h │ │ │ ├── Renderer.cpp │ │ │ ├── Renderer.h │ │ │ ├── Shader.cpp │ │ │ ├── Shader.h │ │ │ ├── Texture.cpp │ │ │ ├── Texture.h │ │ │ ├── Vortex.cpp │ │ │ ├── Vortex.h │ │ │ ├── XBMCTypes.h │ │ │ ├── XmlDocument.cpp │ │ │ ├── XmlDocument.h │ │ │ ├── fft.cpp │ │ │ └── fft.h │ │ └── Effects │ │ │ ├── Map.cpp │ │ │ ├── Map.h │ │ │ ├── Tunnel.cpp │ │ │ ├── Tunnel.h │ │ │ ├── VoicePrint.cpp │ │ │ └── VoicePrint.h │ ├── VortexXBMC │ │ └── VortexXBMC.cpp │ └── angelscript │ │ ├── add_on │ │ ├── autowrapper │ │ │ ├── aswrappedcall.h │ │ │ └── generator │ │ │ │ ├── generateheader.cpp │ │ │ │ ├── generator.dsp │ │ │ │ ├── generator.dsw │ │ │ │ ├── generator.sln │ │ │ │ └── generator.vcproj │ │ ├── clib │ │ │ ├── angelscript_c.h │ │ │ ├── as_c.cpp │ │ │ ├── dllmain.cpp │ │ │ └── projects │ │ │ │ └── msvc6 │ │ │ │ ├── msvc6.dsp │ │ │ │ └── msvc6.dsw │ │ ├── contextmgr │ │ │ ├── contextmgr.cpp │ │ │ └── contextmgr.h │ │ ├── scriptany │ │ │ ├── scriptany.cpp │ │ │ └── scriptany.h │ │ ├── scriptarray │ │ │ ├── scriptarray.cpp │ │ │ └── scriptarray.h │ │ ├── scriptbuilder │ │ │ ├── scriptbuilder.cpp │ │ │ └── scriptbuilder.h │ │ ├── scriptdictionary │ │ │ ├── scriptdictionary.cpp │ │ │ └── scriptdictionary.h │ │ ├── scriptfile │ │ │ ├── scriptfile.cpp │ │ │ └── scriptfile.h │ │ ├── scripthelper │ │ │ ├── scripthelper.cpp │ │ │ └── scripthelper.h │ │ ├── scriptmath │ │ │ ├── scriptmath.cpp │ │ │ └── scriptmath.h │ │ ├── scriptmath3d │ │ │ ├── scriptmath3d.cpp │ │ │ └── scriptmath3d.h │ │ ├── scriptstdstring │ │ │ ├── scriptstdstring.cpp │ │ │ └── scriptstdstring.h │ │ └── scriptstring │ │ │ ├── scriptstring.cpp │ │ │ ├── scriptstring.h │ │ │ └── scriptstring_utils.cpp │ │ ├── angelscript │ │ ├── include │ │ │ └── angelscript.h │ │ ├── lib │ │ │ ├── angelscript.lib │ │ │ └── delete.me │ │ ├── projects │ │ │ ├── android │ │ │ │ └── Android.mk │ │ │ ├── codeblocks │ │ │ │ └── angelscript.cbp │ │ │ ├── dev-cpp │ │ │ │ ├── AngelScript.dev │ │ │ │ ├── Makefile.win │ │ │ │ └── obj │ │ │ │ │ └── delete.me │ │ │ ├── dreamcast │ │ │ │ ├── Makefile │ │ │ │ ├── obj │ │ │ │ │ └── delete.me │ │ │ │ └── readme.txt │ │ │ ├── gnuc │ │ │ │ ├── makefile │ │ │ │ ├── obj │ │ │ │ │ └── delete.me │ │ │ │ └── readme.txt │ │ │ ├── mingw │ │ │ │ ├── makefile │ │ │ │ ├── obj │ │ │ │ │ └── delete.me │ │ │ │ └── readme.txt │ │ │ ├── msvc6 │ │ │ │ ├── angelscript.dsw │ │ │ │ └── lib │ │ │ │ │ └── angelscript.dsp │ │ │ ├── msvc7 │ │ │ │ ├── msvc7.sln │ │ │ │ └── msvc7.vcproj │ │ │ ├── msvc8 │ │ │ │ ├── angelscript.sln │ │ │ │ └── angelscript.vcproj │ │ │ ├── msvc9 │ │ │ │ ├── angelscript.sln │ │ │ │ └── angelscript.vcproj │ │ │ ├── trolltechqt │ │ │ │ └── angelscript.pro │ │ │ └── xcode │ │ │ │ └── angelscript.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── source │ │ │ ├── as_array.h │ │ │ ├── as_arrayobject.cpp │ │ │ ├── as_arrayobject.h │ │ │ ├── as_atomic.cpp │ │ │ ├── as_atomic.h │ │ │ ├── as_builder.cpp │ │ │ ├── as_builder.h │ │ │ ├── as_bytecode.cpp │ │ │ ├── as_bytecode.h │ │ │ ├── as_callfunc.cpp │ │ │ ├── as_callfunc.h │ │ │ ├── as_callfunc_arm.cpp │ │ │ ├── as_callfunc_arm_gcc.S │ │ │ ├── as_callfunc_arm_msvc.asm │ │ │ ├── as_callfunc_arm_xcode.s │ │ │ ├── as_callfunc_mips.cpp │ │ │ ├── as_callfunc_ppc.cpp │ │ │ ├── as_callfunc_ppc_64.cpp │ │ │ ├── as_callfunc_sh4.cpp │ │ │ ├── as_callfunc_x64_gcc.cpp │ │ │ ├── as_callfunc_x86.cpp │ │ │ ├── as_callfunc_xenon.cpp │ │ │ ├── as_compiler.cpp │ │ │ ├── as_compiler.h │ │ │ ├── as_config.h │ │ │ ├── as_configgroup.cpp │ │ │ ├── as_configgroup.h │ │ │ ├── as_context.cpp │ │ │ ├── as_context.h │ │ │ ├── as_criticalsection.h │ │ │ ├── as_datatype.cpp │ │ │ ├── as_datatype.h │ │ │ ├── as_debug.h │ │ │ ├── as_gc.cpp │ │ │ ├── as_gc.h │ │ │ ├── as_generic.cpp │ │ │ ├── as_generic.h │ │ │ ├── as_globalproperty.cpp │ │ │ ├── as_map.h │ │ │ ├── as_memory.cpp │ │ │ ├── as_memory.h │ │ │ ├── as_module.cpp │ │ │ ├── as_module.h │ │ │ ├── as_objecttype.cpp │ │ │ ├── as_objecttype.h │ │ │ ├── as_outputbuffer.cpp │ │ │ ├── as_outputbuffer.h │ │ │ ├── as_parser.cpp │ │ │ ├── as_parser.h │ │ │ ├── as_property.h │ │ │ ├── as_restore.cpp │ │ │ ├── as_restore.h │ │ │ ├── as_scriptcode.cpp │ │ │ ├── as_scriptcode.h │ │ │ ├── as_scriptengine.cpp │ │ │ ├── as_scriptengine.h │ │ │ ├── as_scriptfunction.cpp │ │ │ ├── as_scriptfunction.h │ │ │ ├── as_scriptnode.cpp │ │ │ ├── as_scriptnode.h │ │ │ ├── as_scriptobject.cpp │ │ │ ├── as_scriptobject.h │ │ │ ├── as_string.cpp │ │ │ ├── as_string.h │ │ │ ├── as_string_util.cpp │ │ │ ├── as_string_util.h │ │ │ ├── as_texts.h │ │ │ ├── as_thread.cpp │ │ │ ├── as_thread.h │ │ │ ├── as_tokendef.h │ │ │ ├── as_tokenizer.cpp │ │ │ ├── as_tokenizer.h │ │ │ ├── as_typeinfo.cpp │ │ │ ├── as_typeinfo.h │ │ │ ├── as_variablescope.cpp │ │ │ └── as_variablescope.h │ │ └── docs │ │ ├── articles │ │ ├── changes0.html │ │ ├── changes1.html │ │ └── changes2.html │ │ ├── doxygen │ │ ├── Doxyfile │ │ └── source │ │ │ ├── angelscript.h │ │ │ ├── doc_addon.h │ │ │ ├── doc_adv_class_hierarchy.h │ │ │ ├── doc_adv_concurrent.h │ │ │ ├── doc_adv_coroutine.h │ │ │ ├── doc_adv_jit.h │ │ │ ├── doc_adv_multithread.h │ │ │ ├── doc_adv_precompile.h │ │ │ ├── doc_adv_scoped_type.h │ │ │ ├── doc_adv_single_ref_type.h │ │ │ ├── doc_adv_template.h │ │ │ ├── doc_adv_timeout.h │ │ │ ├── doc_adv_var_type.h │ │ │ ├── doc_api_functions.h │ │ │ ├── doc_api_interfaces.h │ │ │ ├── doc_as_vs_cpp_types.h │ │ │ ├── doc_call_script_func.h │ │ │ ├── doc_compile_lib.h │ │ │ ├── doc_compile_script.h │ │ │ ├── doc_debug.h │ │ │ ├── doc_gc.h │ │ │ ├── doc_gc_object.h │ │ │ ├── doc_generic.h │ │ │ ├── doc_good_practice.h │ │ │ ├── doc_hello_world.h │ │ │ ├── doc_license.h │ │ │ ├── doc_main.h │ │ │ ├── doc_memory.h │ │ │ ├── doc_obj_handle.h │ │ │ ├── doc_overview.h │ │ │ ├── doc_register_api.h │ │ │ ├── doc_register_func.h │ │ │ ├── doc_register_prop.h │ │ │ ├── doc_register_type.h │ │ │ ├── doc_samples.h │ │ │ ├── doc_script_class.h │ │ │ ├── doc_script_class_ops.h │ │ │ ├── doc_script_class_prop.h │ │ │ ├── doc_script_datatypes.h │ │ │ ├── doc_script_expr.h │ │ │ ├── doc_script_global.h │ │ │ ├── doc_script_handle.h │ │ │ ├── doc_script_precedence.h │ │ │ ├── doc_script_reserved.h │ │ │ ├── doc_script_statement.h │ │ │ ├── doc_strings.h │ │ │ ├── doc_understanding_as.h │ │ │ ├── doc_using_script_class.h │ │ │ └── logo │ │ │ ├── aslogo.png │ │ │ └── aslogo.svg │ │ ├── index.html │ │ └── manual │ │ ├── angelscript_8h.html │ │ ├── annotated.html │ │ ├── aslogo.png │ │ ├── classas_i_binary_stream-members.html │ │ ├── classas_i_binary_stream.html │ │ ├── classas_i_j_i_t_compiler-members.html │ │ ├── classas_i_j_i_t_compiler.html │ │ ├── classas_i_object_type-members.html │ │ ├── classas_i_object_type.html │ │ ├── classas_i_script_array-members.html │ │ ├── classas_i_script_array.html │ │ ├── classas_i_script_context-members.html │ │ ├── classas_i_script_context.html │ │ ├── classas_i_script_engine-members.html │ │ ├── classas_i_script_engine.html │ │ ├── classas_i_script_function-members.html │ │ ├── classas_i_script_function.html │ │ ├── classas_i_script_generic-members.html │ │ ├── classas_i_script_generic.html │ │ ├── classas_i_script_module-members.html │ │ ├── classas_i_script_module.html │ │ ├── classas_i_script_object-members.html │ │ ├── classas_i_script_object.html │ │ ├── classes.html │ │ ├── deprecated.html │ │ ├── doc_addon.html │ │ ├── doc_addon_any.html │ │ ├── doc_addon_application.html │ │ ├── doc_addon_array.html │ │ ├── doc_addon_autowrap.html │ │ ├── doc_addon_build.html │ │ ├── doc_addon_clib.html │ │ ├── doc_addon_ctxmgr.html │ │ ├── doc_addon_dict.html │ │ ├── doc_addon_file.html │ │ ├── doc_addon_helpers.html │ │ ├── doc_addon_math.html │ │ ├── doc_addon_math3d.html │ │ ├── doc_addon_script.html │ │ ├── doc_addon_std_string.html │ │ ├── doc_addon_string.html │ │ ├── doc_adv_class_hierarchy.html │ │ ├── doc_adv_concurrent.html │ │ ├── doc_adv_coroutine.html │ │ ├── doc_adv_jit.html │ │ ├── doc_adv_jit_1.html │ │ ├── doc_adv_multithread.html │ │ ├── doc_adv_precompile.html │ │ ├── doc_adv_scoped_type.html │ │ ├── doc_adv_single_ref_type.html │ │ ├── doc_adv_template.html │ │ ├── doc_adv_timeout.html │ │ ├── doc_adv_var_type.html │ │ ├── doc_advanced.html │ │ ├── doc_advanced_api.html │ │ ├── doc_api.html │ │ ├── doc_api_functions.html │ │ ├── doc_api_interfaces.html │ │ ├── doc_as_vs_cpp_types.html │ │ ├── doc_call_script_func.html │ │ ├── doc_compile_lib.html │ │ ├── doc_compile_script.html │ │ ├── doc_datatypes.html │ │ ├── doc_datatypes_arrays.html │ │ ├── doc_datatypes_obj.html │ │ ├── doc_datatypes_primitives.html │ │ ├── doc_datatypes_strings.html │ │ ├── doc_debug.html │ │ ├── doc_expressions.html │ │ ├── doc_gc.html │ │ ├── doc_gc_object.html │ │ ├── doc_generic.html │ │ ├── doc_global.html │ │ ├── doc_good_practice.html │ │ ├── doc_hello_world.html │ │ ├── doc_license.html │ │ ├── doc_memory.html │ │ ├── doc_obj_handle.html │ │ ├── doc_operator_precedence.html │ │ ├── doc_overview.html │ │ ├── doc_reg_basicref.html │ │ ├── doc_reg_objmeth.html │ │ ├── doc_reg_objprop.html │ │ ├── doc_reg_opbeh.html │ │ ├── doc_register_api.html │ │ ├── doc_register_func.html │ │ ├── doc_register_prop.html │ │ ├── doc_register_type.html │ │ ├── doc_register_val_type.html │ │ ├── doc_reserved_keywords.html │ │ ├── doc_samples.html │ │ ├── doc_samples_concurrent.html │ │ ├── doc_samples_console.html │ │ ├── doc_samples_corout.html │ │ ├── doc_samples_events.html │ │ ├── doc_samples_incl.html │ │ ├── doc_samples_tutorial.html │ │ ├── doc_script.html │ │ ├── doc_script_class.html │ │ ├── doc_script_class_main.html │ │ ├── doc_script_class_ops.html │ │ ├── doc_script_class_prop.html │ │ ├── doc_script_handle.html │ │ ├── doc_script_statements.html │ │ ├── doc_start.html │ │ ├── doc_strings.html │ │ ├── doc_understanding_as.html │ │ ├── doc_use_script_class.html │ │ ├── doc_using.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2node.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2vertline.png │ │ ├── functions.html │ │ ├── functions_0x62.html │ │ ├── functions_0x63.html │ │ ├── functions_0x64.html │ │ ├── functions_0x65.html │ │ ├── functions_0x67.html │ │ ├── functions_0x69.html │ │ ├── functions_0x6c.html │ │ ├── functions_0x6d.html │ │ ├── functions_0x6e.html │ │ ├── functions_0x6f.html │ │ ├── functions_0x70.html │ │ ├── functions_0x72.html │ │ ├── functions_0x73.html │ │ ├── functions_0x74.html │ │ ├── functions_0x75.html │ │ ├── functions_0x76.html │ │ ├── functions_0x77.html │ │ ├── functions_func.html │ │ ├── functions_func_0x62.html │ │ ├── functions_func_0x63.html │ │ ├── functions_func_0x64.html │ │ ├── functions_func_0x65.html │ │ ├── functions_func_0x67.html │ │ ├── functions_func_0x69.html │ │ ├── functions_func_0x6c.html │ │ ├── functions_func_0x6e.html │ │ ├── functions_func_0x70.html │ │ ├── functions_func_0x72.html │ │ ├── functions_func_0x73.html │ │ ├── functions_func_0x75.html │ │ ├── functions_func_0x77.html │ │ ├── functions_vars.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── globals_vars.html │ │ ├── index.html │ │ ├── main.html │ │ ├── pages.html │ │ ├── structas_s_b_c_info-members.html │ │ ├── structas_s_b_c_info.html │ │ ├── structas_s_func_ptr-members.html │ │ ├── structas_s_func_ptr.html │ │ ├── structas_s_message_info-members.html │ │ ├── structas_s_message_info.html │ │ ├── structas_s_v_m_registers-members.html │ │ ├── structas_s_v_m_registers.html │ │ ├── tab_b.gif │ │ ├── tab_l.gif │ │ ├── tab_r.gif │ │ ├── tabs.css │ │ ├── todo.html │ │ └── tree.html ├── WaveForm │ ├── Main.cpp │ ├── Main_gles.cpp │ ├── Makefile.in │ ├── Waveform.sln │ ├── Waveform.vcproj │ ├── Waveform.vcxproj │ └── Waveform.vcxproj.filters ├── XBMCProjectM │ ├── Main.cpp │ ├── Makefile.in │ ├── README │ ├── build_projectM_win32.sh │ ├── libprojectM │ │ ├── Algorithms.hpp │ │ ├── BeatDetect.cpp │ │ ├── BeatDetect.hpp │ │ ├── BuiltinFuncs.cpp │ │ ├── BuiltinFuncs.hpp │ │ ├── BuiltinParams.cpp │ │ ├── BuiltinParams.hpp │ │ ├── CMakeLists.txt │ │ ├── CValue.hpp │ │ ├── ChangeLog │ │ ├── Common.hpp │ │ ├── ConfigFile.cpp │ │ ├── ConfigFile.h │ │ ├── CustomShape.cpp │ │ ├── CustomShape.hpp │ │ ├── CustomWave.cpp │ │ ├── CustomWave.hpp │ │ ├── Eval.cpp │ │ ├── Eval.hpp │ │ ├── Expr.cpp │ │ ├── Expr.hpp │ │ ├── FBO.cpp │ │ ├── FBO.hpp │ │ ├── FindPkgConfig.cmake │ │ ├── Func.cpp │ │ ├── Func.hpp │ │ ├── IdlePreset.cpp │ │ ├── IdlePreset.hpp │ │ ├── IdleTextures.hpp │ │ ├── InitCond.cpp │ │ ├── InitCond.hpp │ │ ├── InitCondUtils.hpp │ │ ├── KeyHandler.cpp │ │ ├── KeyHandler.hpp │ │ ├── PCM.cpp │ │ ├── PCM.hpp │ │ ├── Param.cpp │ │ ├── Param.hpp │ │ ├── ParamUtils.hpp │ │ ├── Parser.cpp │ │ ├── Parser.hpp │ │ ├── PerFrameEqn.cpp │ │ ├── PerFrameEqn.hpp │ │ ├── PerPixelEqn.cpp │ │ ├── PerPixelEqn.hpp │ │ ├── PerPointEqn.cpp │ │ ├── PerPointEqn.hpp │ │ ├── Preset.cpp │ │ ├── Preset.hpp │ │ ├── PresetChooser.cpp │ │ ├── PresetChooser.hpp │ │ ├── PresetFrameIO.cpp │ │ ├── PresetFrameIO.hpp │ │ ├── PresetLoader.cpp │ │ ├── PresetLoader.hpp │ │ ├── PresetMerge.cpp │ │ ├── PresetMerge.hpp │ │ ├── RandomNumberGenerators.hpp │ │ ├── Renderer.cpp │ │ ├── Renderer.hpp │ │ ├── SOIL.c │ │ ├── SOIL.h │ │ ├── SectionLock.h │ │ ├── TextureManager.cpp │ │ ├── TextureManager.hpp │ │ ├── TimeKeeper.cpp │ │ ├── TimeKeeper.hpp │ │ ├── carbontoprojectM.h │ │ ├── compare.h │ │ ├── config.inp.in │ │ ├── dlldefs.h │ │ ├── event.h │ │ ├── fatal.h │ │ ├── fftsg.cpp │ │ ├── fftsg.h │ │ ├── fonts │ │ │ ├── Vera.ttf │ │ │ └── VeraMono.ttf │ │ ├── glError.h │ │ ├── glew.c │ │ ├── glew.h │ │ ├── glxew.h │ │ ├── image_DXT.c │ │ ├── image_DXT.h │ │ ├── image_helper.c │ │ ├── image_helper.h │ │ ├── libprojectM.dsp │ │ ├── libprojectM.opt │ │ ├── libprojectM.pc.in │ │ ├── libprojectM.plg │ │ ├── libprojectM.rc │ │ ├── libprojectM.sln │ │ ├── libprojectM.suo │ │ ├── libprojectM.vcproj │ │ ├── lvtoprojectM.h │ │ ├── presets │ │ │ ├── Aderrasi - Agitator.milk │ │ │ ├── Aderrasi - Aimless (Gravity Directive Mix).milk │ │ │ ├── Aderrasi - Aimless (Spirogravity Mix).milk │ │ │ ├── Aderrasi - Airhandler (Menagerie Mix).milk │ │ │ ├── Aderrasi - Airs (Windy Mix).milk │ │ │ ├── Aderrasi - Anchorpulse (Pulse Of A Ghast II Mix).milk │ │ │ ├── Aderrasi - Anchorpulse (Verified Mix).milk │ │ │ ├── Aderrasi - Anomalous Material Science (Pure Splinter Mix).milk │ │ │ ├── Aderrasi - Antidote (Aqualung Mix).milk │ │ │ ├── Aderrasi - Antidote (Side Effects Mix).milk │ │ │ ├── Aderrasi - Antidote.milk │ │ │ ├── Aderrasi - Antique Abyss.milk │ │ │ ├── Aderrasi - Arise! (Padded Mix).milk │ │ │ ├── Aderrasi - Ashes Of Air (Remix).milk │ │ │ ├── Aderrasi - Bitterfeld (Crystal Border Mix).milk │ │ │ ├── Aderrasi - Blender.milk │ │ │ ├── Aderrasi - Bow To Gravity.milk │ │ │ ├── Aderrasi - Brakefreak.milk │ │ │ ├── Aderrasi - Candy Avian.milk │ │ │ ├── Aderrasi - Causeway Of Dreams (Nightmare Mix).milk │ │ │ ├── Aderrasi - Causeway Of Dreams (REMix).milk │ │ │ ├── Aderrasi - Causeway Of Dreams.milk │ │ │ ├── Aderrasi - Chromatic Abyss (The Other Side).milk │ │ │ ├── Aderrasi - Circlefacade.milk │ │ │ ├── Aderrasi - Contortion (Xenomorph Mix).milk │ │ │ ├── Aderrasi - Contortion.milk │ │ │ ├── Aderrasi - Crystal Storm.milk │ │ │ ├── Aderrasi - Dark Matter (Converse Mix).milk │ │ │ ├── Aderrasi - Elastoid.milk │ │ │ ├── Aderrasi - Floater Society.milk │ │ │ ├── Aderrasi - Flowing Form.milk │ │ │ ├── Aderrasi - Making Time (Swamp Mix).milk │ │ │ ├── Aderrasi - Potion of Spirits.milk │ │ │ ├── Aderrasi - Songflower (Moss Posy).milk │ │ │ ├── Aderrasi - Spillswirl.milk │ │ │ ├── Aderrasi - What Cannot Be Undone.milk │ │ │ ├── Aderrasi - What cannot be.milk │ │ │ ├── Bmelgren & Krash - Rainbow Orb Peacock (Centred Journey Mix.milk │ │ │ ├── Bmelgren & Krash - Rainbow Orb Peacock (Lonely Signal Gone .milk │ │ │ ├── Bmelgren - Godhead.milk │ │ │ ├── Bmelgren - Pentultimate Nerual Slipstream (Tweak 2).milk │ │ │ ├── Bmelgren - Take This Highway.milk │ │ │ ├── Che - Burning Hus.milk │ │ │ ├── Che - Escape.milk │ │ │ ├── Che - Watch & Fly.milk │ │ │ ├── CrystalHigh - mad ravetriping.milk │ │ │ ├── DaNOnE - Highway to Heaven (rotating).milk │ │ │ ├── EMPR - Random - Changing Polyevolution.milk │ │ │ ├── EMPR - Random - Look mama I'm on TV! 2.milk │ │ │ ├── EMPR - Random - They're so cute Dad can I keep one!.milk │ │ │ ├── EMPR - Random - Turbulence Sandwich.milk │ │ │ ├── Eo.S. + Phat - chasers 18 hallway.milk │ │ │ ├── Eo.S. - glowsticks v2 03 music.milk │ │ │ ├── Eo.S. - glowsticks v2 04 music minimal.milk │ │ │ ├── Eo.S. - glowsticks v2 05 and proton lights (+Krash's beat code) _Phat_remix02b.milk │ │ │ ├── Eo.S. - glowsticks v2 05 and proton lights (+Krash's beat code) _Phat_remix07 recursive demons.milk │ │ │ ├── Eo.S. - heater core C_Phat's_class + sparks_mix.milk │ │ │ ├── Eo.S. - heater core C_Phat's_on route_mix+beam.milk │ │ │ ├── Eo.S. - repeater 05 - rave on acid.milk │ │ │ ├── Eo.S. - repeater 15 - kaleidoscope b.milk │ │ │ ├── Eo.S.+Phat - Arm_upgrades - transformer.milk │ │ │ ├── Eo.S.+Phat Cool Bug v2 + (Krash's beat detection).milk │ │ │ ├── EvilJim - Follow the ball.milk │ │ │ ├── EvilJim - Ice Drops.milk │ │ │ ├── Fvese & Idiot24-7 - Rearview Mirror.milk │ │ │ ├── Fvese - 0 To 60.milk │ │ │ ├── Fvese - A Blur.milk │ │ │ ├── Fvese - Lifesavor Anyone.milk │ │ │ ├── Fvese - New meetings.milk │ │ │ ├── Fvese - Quicksand.milk │ │ │ ├── Fvese - Round and Round (geiss gamma mix).milk │ │ │ ├── Fvese - Stand Still!.milk │ │ │ ├── Fvese - The Tunnel (Final Stage Mix).milk │ │ │ ├── Fvese - Window Reflection 6.milk │ │ │ ├── Fvese - Zoom Effects (Remix 2).milk │ │ │ ├── Fvese - simple.milk │ │ │ ├── Geiss & Rovastar - Julia Fractal (Vectrip Mix).milk │ │ │ ├── Geiss & Rovastar - Notions Of Tonality 2.milk │ │ │ ├── Geiss & Rovastar - The Chaos Of Colours (sprouting dimentia mix).milk │ │ │ ├── Geiss & Rovastar - Tokamak (Naked Intrusion Mix).milk │ │ │ ├── Geiss & Sperl - Feedback (projectM idle HDR mix).prjm │ │ │ ├── Geiss - Aieeeeee!!!.milk │ │ │ ├── Geiss - Anomaly 1.milk │ │ │ ├── Geiss - Anomaly 2.milk │ │ │ ├── Geiss - Approach.milk │ │ │ ├── Geiss - Asymptote.milk │ │ │ ├── Geiss - Bass Kaleidosphere.milk │ │ │ ├── Geiss - Bass Zoom.milk │ │ │ ├── Geiss - Bipolar 1.milk │ │ │ ├── Geiss - Bipolar 2.milk │ │ │ ├── Geiss - Bipolar 3.milk │ │ │ ├── Geiss - Bipolar 4.milk │ │ │ ├── Geiss - Bipolar 5.milk │ │ │ ├── Geiss - Blasto.milk │ │ │ ├── Geiss - Bonfire.milk │ │ │ ├── Geiss - Bright Fiber Matrix 1.milk │ │ │ ├── Geiss - Bright Fiber Matrix 2.milk │ │ │ ├── Geiss - Calligraphy.milk │ │ │ ├── Geiss - Casino.milk │ │ │ ├── Geiss - Cepiasound.milk │ │ │ ├── Geiss - Churn.milk │ │ │ ├── Geiss - Constant Velocity.milk │ │ │ ├── Geiss - Coral.milk │ │ │ ├── Geiss - Corpus Callosum.milk │ │ │ ├── Geiss - Cosmic Dust 1.milk │ │ │ ├── Geiss - Cosmic Dust 2.milk │ │ │ ├── Geiss - Cruzin'.milk │ │ │ ├── Geiss - Cycloid 1.milk │ │ │ ├── Geiss - Cycloid 2.milk │ │ │ ├── Geiss - Davod The Pod.milk │ │ │ ├── Geiss - De La Moutard 1.milk │ │ │ ├── Geiss - De La Moutard 2.milk │ │ │ ├── Geiss - Demonic Distortion.milk │ │ │ ├── Geiss - Descent.milk │ │ │ ├── Geiss - Destruction.milk │ │ │ ├── Geiss - Diffraction.milk │ │ │ ├── Geiss - Digital Smoke.milk │ │ │ ├── Geiss - Downward Spiral.milk │ │ │ ├── Geiss - Drift.milk │ │ │ ├── Geiss - Dynamic Swirls 1.milk │ │ │ ├── Geiss - Dynamic Swirls 2.milk │ │ │ ├── Geiss - Eddies 1.milk │ │ │ ├── Geiss - Eddies 2.milk │ │ │ ├── Geiss - Eggs.milk │ │ │ ├── Geiss - El Cubismo.milk │ │ │ ├── Geiss - Feedback 2.milk │ │ │ ├── Geiss - Feedback.milk │ │ │ ├── Geiss - Festive.milk │ │ │ ├── Geiss - Fiberglass.milk │ │ │ ├── Geiss - Flotsam.milk │ │ │ ├── Geiss - Flower Blossom.milk │ │ │ ├── Geiss - Flower.milk │ │ │ ├── Geiss - Four Kinds of Amphetamines.milk │ │ │ ├── Geiss - Galaxy 1.milk │ │ │ ├── Geiss - Galaxy 2.milk │ │ │ ├── Geiss - Greenland.milk │ │ │ ├── Geiss - Heavenly 1.milk │ │ │ ├── Geiss - Heavenly 2.milk │ │ │ ├── Geiss - Heavenly 3.milk │ │ │ ├── Geiss - High Dynamic Range.milk │ │ │ ├── Geiss - Hovering.milk │ │ │ ├── Geiss - Hyperion.milk │ │ │ ├── Geiss - Inkblot.milk │ │ │ ├── Geiss - Iris.milk │ │ │ ├── Geiss - Journey.milk │ │ │ ├── Geiss - Julia Fractal 1.milk │ │ │ ├── Geiss - Julia Fractal 2.milk │ │ │ ├── Geiss - Luz.milk │ │ │ ├── Geiss - Mega Swirl 1.milk │ │ │ ├── Geiss - Mega Swirl 2.milk │ │ │ ├── Geiss - Mega Swirl 3.milk │ │ │ ├── Geiss - Microcosm.milk │ │ │ ├── Geiss - Monotone Ripples.milk │ │ │ ├── Geiss - Music Box.milk │ │ │ ├── Geiss - Nautilus.milk │ │ │ ├── Geiss - Octopus Blue.milk │ │ │ ├── Geiss - Octopus Ever Changing.milk │ │ │ ├── Geiss - Octopus Fat and Ever Changing.milk │ │ │ ├── Geiss - Octopus Gold with Dots.milk │ │ │ ├── Geiss - Octopus Gold.milk │ │ │ ├── Geiss - Octopus.milk │ │ │ ├── Geiss - Oldskool Mellowstyle.milk │ │ │ ├── Geiss - Pelota De Fuego.milk │ │ │ ├── Geiss - Pinch.milk │ │ │ ├── Geiss - Pistons.milk │ │ │ ├── Geiss - Planet 1.milk │ │ │ ├── Geiss - Planet 2.milk │ │ │ ├── Geiss - Quasilinear Submanifolds.milk │ │ │ ├── Geiss - Reducto Absurdum.milk │ │ │ ├── Geiss - Reducto Ad Nauseum.milk │ │ │ ├── Geiss - Rocket.milk │ │ │ ├── Geiss - Runoff.milk │ │ │ ├── Geiss - Scary.milk │ │ │ ├── Geiss - Script.milk │ │ │ ├── Geiss - Serpent.milk │ │ │ ├── Geiss - Shake.milk │ │ │ ├── Geiss - Shift.milk │ │ │ ├── Geiss - Sinews 1.milk │ │ │ ├── Geiss - Sinews 2.milk │ │ │ ├── Geiss - Smoke.milk │ │ │ ├── Geiss - Solar Flare (Blue).milk │ │ │ ├── Geiss - Solar Flare (Reptile).milk │ │ │ ├── Geiss - Solar Flare.milk │ │ │ ├── Geiss - Sound And The Fury.milk │ │ │ ├── Geiss - Space Voyage (High-Warp).milk │ │ │ ├── Geiss - Space Voyage Bright.milk │ │ │ ├── Geiss - Space Voyage.milk │ │ │ ├── Geiss - Spacedust.milk │ │ │ ├── Geiss - Starfish 1.milk │ │ │ ├── Geiss - Starfish 2.milk │ │ │ ├── Geiss - Sunsets.milk │ │ │ ├── Geiss - Supernova 1.milk │ │ │ ├── Geiss - Supernova 2.milk │ │ │ ├── Geiss - Surface.milk │ │ │ ├── Geiss - Swirl 1.milk │ │ │ ├── Geiss - Swirl 2.milk │ │ │ ├── Geiss - Swirlie 1.milk │ │ │ ├── Geiss - Swirlie 2.milk │ │ │ ├── Geiss - Swirlie 3.milk │ │ │ ├── Geiss - Swirlie 4.milk │ │ │ ├── Geiss - Swirlie 5.milk │ │ │ ├── Geiss - Symmetry.milk │ │ │ ├── Geiss - The Fatty Lumpkin Sunkle Tweaker.milk │ │ │ ├── Geiss - Three And A Half Kinds Of Amphetamines.milk │ │ │ ├── Geiss - Three Kinds Of Amphetamines.milk │ │ │ ├── Geiss - Tokamak.milk │ │ │ ├── Geiss - Tornado.milk │ │ │ ├── Geiss - Toy.milk │ │ │ ├── Geiss - Trampoline.milk │ │ │ ├── Geiss - Tube.milk │ │ │ ├── Geiss - Two-Pointed Pulsagon.milk │ │ │ ├── Geiss - Ultrafast.milk │ │ │ ├── Geiss - Volume Zoom.milk │ │ │ ├── Geiss - Vortex 1.milk │ │ │ ├── Geiss - Vortex 2.milk │ │ │ ├── Geiss - Warp Of Dali 1.milk │ │ │ ├── Geiss - Warp Of Dali 2.milk │ │ │ ├── Geiss - Warp Of Dali Bright.milk │ │ │ ├── Geiss - Waterfall.milk │ │ │ ├── Geiss and Rovastar - The Chaos Of Colours (sprouting diment.milk │ │ │ ├── Idiot & Che - Various Abstract Effects.milk │ │ │ ├── Idiot & Rovastar - Altars Of Madness 2 (X.42 Mix).milk │ │ │ ├── Idiot & Zylot - Unhealthy Love (Idiot's STDs Mix).milk │ │ │ ├── Idiot - 9-7-02 (Remix) (sustain fixed).milk │ │ │ ├── Idiot - Cortex (Spiritual Visions Mix).milk │ │ │ ├── Idiot - MOTIVATION!.milk │ │ │ ├── Idiot - Madness Within The Void (Remix).milk │ │ │ ├── Idiot - Tentacle Dreams (Remix).milk │ │ │ ├── Idiot - Texture Boxes (Remix 2).milk │ │ │ ├── Idiot - Texture Boxes (Remix).milk │ │ │ ├── Idiot - Typomatic (Remix 2).milk │ │ │ ├── Idiot - What Is.milk │ │ │ ├── Idiot - What Shall Come.milk │ │ │ ├── Idiot24-7 - Ascending to heaven 2.milk │ │ │ ├── Idiot24-7 - Meeting place.milk │ │ │ ├── Illusion & Che - Return Of The King.milk │ │ │ ├── Illusion & Che - The Piper.milk │ │ │ ├── Illusion & Rovastar - Clouded Bottle.milk │ │ │ ├── Illusion & Rovastar - Snowflake Delight.milk │ │ │ ├── Illusion & Rovastar - Snowflake Return.milk │ │ │ ├── Illusion & Unchained - Frozen Eye 1.milk │ │ │ ├── Illusion & Unchained - Invade My Mind.milk │ │ │ ├── Illusion & Unchained - Re-Enter Homeworld.milk │ │ │ ├── Illusion - Figure Eight.milk │ │ │ ├── Illusion - Heavenly Eye.milk │ │ │ ├── Jess - Trying To Trap A Twister.milk │ │ │ ├── Krash & Idiot - Memories Of The Castle.milk │ │ │ ├── Krash & Illusion - Indecisive Mosaic.milk │ │ │ ├── Krash & Illusion - Spiral Movement.milk │ │ │ ├── Krash & Rovastar - A Million Miles from Earth (Ripple Mix).milk │ │ │ ├── Krash & Rovastar - Altars Of Madness (Mad Ocean Mix).milk │ │ │ ├── Krash & Rovastar - Cerebral Demons (Distant Memory Mix).milk │ │ │ ├── Krash & Rovastar - Cerebral Demons - Phat + Eo.S. hall of ghouls Remix.milk │ │ │ ├── Krash & Rovastar - Switching Polygons.milk │ │ │ ├── Krash & Rovastar - The Devil Is In The Details.milk │ │ │ ├── Krash & TEcHNO - Rhythmic Mantas.milk │ │ │ ├── Krash & Zylot - Inside The Planar Portal (Indecision Mix).milk │ │ │ ├── Krash - 3D Shapes Demo 2.milk │ │ │ ├── Krash - 3D Shapes Demo.milk │ │ │ ├── Krash - Digital Flame.milk │ │ │ ├── Krash - Dynamic Borders 1.milk │ │ │ ├── Krash - Framed Geometry.milk │ │ │ ├── Krash - Pulse.milk │ │ │ ├── Krash - Season's Greetings 2.milk │ │ │ ├── Krash - Twisting Indecision.milk │ │ │ ├── Krash - War Machine (Shifting Complexity Mix).milk │ │ │ ├── Krash - Windowframe To Mega Swirl 2.milk │ │ │ ├── Krash and Fvese - Molten Indecision (Fvese Remix).milk │ │ │ ├── Krash and Rovastar - Rainbow Orb.milk │ │ │ ├── M.tga │ │ │ ├── Mstress & Juppy - Dancer.milk │ │ │ ├── Mstress & Juppy - Dancers In The Dark.milk │ │ │ ├── Mstress - Acoustic Nerve Impulses (Under Drug Effetcs (Hypn.milk │ │ │ ├── Mstress - Snowing Fiber City.milk │ │ │ ├── Phat+fiShbRaiN+Eo.S_Mandala_Chasers_remix - www.eos4life.com.milk │ │ │ ├── Phat+fiShbRaiN+Eo.S_Mandala_Chasers_remix.milk │ │ │ ├── PieturP - triptrap_(getting_concrete_visions_through_a_diafragma_version).milk │ │ │ ├── PieturP - triptrap_(ultimate-trip-mix).milk │ │ │ ├── Redi Jedi - acid in your brain.milk │ │ │ ├── Redi Jedi - multiple points of origin, one destination.milk │ │ │ ├── Reenen - phoenix.milk │ │ │ ├── Rocke - Cold Love (Tei Zwaa).milk │ │ │ ├── Rocke - Personal Comet.milk │ │ │ ├── Rovastar & Aderrasi - Oceanic Bassograph (Underwater Mix).milk │ │ │ ├── Rovastar & Che - Adela The Flower (Altars Of Madness Mix 2).milk │ │ │ ├── Rovastar & Che - Asylum Animations.milk │ │ │ ├── Rovastar & Fvese - Dark Subconscious.milk │ │ │ ├── Rovastar & Fvese - Deadly Flower.milk │ │ │ ├── Rovastar & Fvese - Mosaic Waves.milk │ │ │ ├── Rovastar & Fvese - Paranormal Static.milk │ │ │ ├── Rovastar & Fvese - Stranger Minds (Astral Mix).milk │ │ │ ├── Rovastar & Fvese - Stranger Minds.milk │ │ │ ├── Rovastar & Geiss - Approach (Vectrip Mix).milk │ │ │ ├── Rovastar & Geiss - Bipolar 2 (Vectrip Mix).milk │ │ │ ├── Rovastar & Geiss - Dynamic Swirls 3 (Broken Destiny Mix).milk │ │ │ ├── Rovastar & Geiss - Dynamic Swirls 3 (Mysticial Awakening Mi.milk │ │ │ ├── Rovastar & Geiss - Dynamic Swirls 3 (Poltergiest Mix).milk │ │ │ ├── Rovastar & Geiss - Dynamic Swirls 3 (Smoke Mix).milk │ │ │ ├── Rovastar & Geiss - Dynamic Swirls 3 (Smoking Delusion Mix).milk │ │ │ ├── Rovastar & Geiss - Dynamic Swirls 3 (Voyage Of Twisted Soul.milk │ │ │ ├── Rovastar & Geiss - Ice Planet.milk │ │ │ ├── Rovastar & Geiss - Octoplasm.milk │ │ │ ├── Rovastar & Geiss - Octotrip (MultiTrip Mix).milk │ │ │ ├── Rovastar & Geiss - Octotrip.milk │ │ │ ├── Rovastar & Idiot24-7 - Balk Acid.milk │ │ │ ├── Rovastar & Idiot24-7 - Mixed Emotions (Harlequin's Shame Mi.milk │ │ │ ├── Rovastar & Idiot24-7 - Mixed Emotions (Harlequin's Shame Mix).milk │ │ │ ├── Rovastar & Illusion - Shifting Sphere.milk │ │ │ ├── Rovastar & Krash - Cerebral Demons.milk │ │ │ ├── Rovastar & Krash - Flowing Synergy.milk │ │ │ ├── Rovastar & Krash - Interwoven (Contra Mix).milk │ │ │ ├── Rovastar & Rocke - Answer.42 (Trippy S. Mix).milk │ │ │ ├── Rovastar & Rocke - Headspin.milk │ │ │ ├── Rovastar & Rocke - Sugar Spun Sister.milk │ │ │ ├── Rovastar & Sperl - Tuxflower.prjm │ │ │ ├── Rovastar & StudioMusic - More Cherished Desires.milk │ │ │ ├── Rovastar & StudioMusic - Twisted Spider Web.milk │ │ │ ├── Rovastar & Telek - Altars of Madness (Rolling Oceans Mix).milk │ │ │ ├── Rovastar & Telek - Cosmic Fireworks.milk │ │ │ ├── Rovastar & Unchained - Ambrosia Mystic (Dark Heart Mix).milk │ │ │ ├── Rovastar & Unchained - Centre Of Gravity.milk │ │ │ ├── Rovastar & Unchained - Demonology (Vampire Soul Mix).milk │ │ │ ├── Rovastar & Unchained - Oddball World.milk │ │ │ ├── Rovastar & Unchained - Voodoo Chess Magnet (Everglow Mix).milk │ │ │ ├── Rovastar & Unchained - Xen Traffic.milk │ │ │ ├── Rovastar & Zylot - Azirphaeli's Plan (Multiplan Mix).milk │ │ │ ├── Rovastar & Zylot - Narell's Fever.milk │ │ │ ├── Rovastar & Zylot - Passion Flower.milk │ │ │ ├── Rovastar & Zylot - Sea Of Zigrot.milk │ │ │ ├── Rovastar - A Million Miles From Earth (Wormhole Mix).milk │ │ │ ├── Rovastar - A Million Miles from Earth (Pathfinder Mix).milk │ │ │ ├── Rovastar - A Million Miles from Earth.milk │ │ │ ├── Rovastar - Altars Of Harlequin's Maddess.milk │ │ │ ├── Rovastar - Altars Of Harlequin's Madness (Dark Disorder Mix.milk │ │ │ ├── Rovastar - Altars Of Madness (A Million Miles From Earth Mi.milk │ │ │ ├── Rovastar - Altars Of Madness (Boxfresh Mix).milk │ │ │ ├── Rovastar - Altars Of Madness (Duel Mix).milk │ │ │ ├── Rovastar - Altars Of Madness (Surealist Mix).milk │ │ │ ├── Rovastar - Altars Of Madness 2 (Frozen Time Mix).milk │ │ │ ├── Rovastar - Altars Of Madness 4 (Spirit Of Twisted Madness M.milk │ │ │ ├── Rovastar - Altars Of Madness.milk │ │ │ ├── Rovastar - Attacking Freedom.milk │ │ │ ├── Rovastar - Bellanova (New Wave Mix).milk │ │ │ ├── Rovastar - Biohazard Warning.milk │ │ │ ├── Rovastar - Chapel Of Ghouls.milk │ │ │ ├── Rovastar - Chemical Spirituality.milk │ │ │ ├── Rovastar - Clouded Judgement 3.milk │ │ │ ├── Rovastar - Cosmic Echoes 1.milk │ │ │ ├── Rovastar - Cosmic Echoes 2.milk │ │ │ ├── Rovastar - Cosmic Havoc.milk │ │ │ ├── Rovastar - Cosmic Mosaic (Active Mix).milk │ │ │ ├── Rovastar - Dark Ritual (Star Of Destiny Denied Mix).milk │ │ │ ├── Rovastar - Dark Ritual (Star Of Destiny Mix).milk │ │ │ ├── Rovastar - Decreasing Dreams (Extended Movement Mix).milk │ │ │ ├── Rovastar - Dreamcatcher.milk │ │ │ ├── Rovastar - Explosive Minds.milk │ │ │ ├── Rovastar - Forgotten Moon.milk │ │ │ ├── Rovastar - Fractopia (Fantic Dancing Lights Mix).milk │ │ │ ├── Rovastar - Fractopia (Galaxy Swirl Mix).milk │ │ │ ├── Rovastar - Fractopia (Upspoken Mix).milk │ │ │ ├── Rovastar - Fractopia (Upspoken Mix)_Phat_Speak_When_Spoken_2.milk │ │ │ ├── Rovastar - Frozen Rapture .milk │ │ │ ├── Rovastar - Future Speakers.milk │ │ │ ├── Rovastar - Halcyon Dreams 3.milk │ │ │ ├── Rovastar - Hallucinogenic Pyramids (Beat Time Mix).milk │ │ │ ├── Rovastar - Harlequin's Delight (Endless Tunnel Mix).milk │ │ │ ├── Rovastar - Harlequin's Dynamic Fractal (Crazed Spiral Mix).milk │ │ │ ├── Rovastar - Harlequin's Dynamic Fractal (Dual Spiral Mix ).milk │ │ │ ├── Rovastar - Harlequin's Dynamic Fractal 1.milk │ │ │ ├── Rovastar - Harlequin's Dynamic Fractal 2.milk │ │ │ ├── Rovastar - Harlequin's Dynamic Fractal 3.milk │ │ │ ├── Rovastar - Harlequin's Fractal Encounter 2.milk │ │ │ ├── Rovastar - Harlequin's Fractal Encounter.milk │ │ │ ├── Rovastar - Harlequin's Spirit (Twisted Mix).milk │ │ │ ├── Rovastar - Harlequin's Spirit.milk │ │ │ ├── Rovastar - Hyperspace (Frozen Rapture Mix).milk │ │ │ ├── Rovastar - Hyperspace (Hyper Speed Mix).milk │ │ │ ├── Rovastar - Hyperspace.milk │ │ │ ├── Rovastar - Inner Thoughts (Clouded Judgement Mix).milk │ │ │ ├── Rovastar - Inner Thoughts (Dark Secret Mix).milk │ │ │ ├── Rovastar - Inner Thoughts (Distant Memories Mix).milk │ │ │ ├── Rovastar - Inner Thoughts (Frantic Thoughts Mix).milk │ │ │ ├── Rovastar - Inner Thoughts (Strange Cargo Mix).milk │ │ │ ├── Rovastar - Kalideostars (Altars Of Madness MIx).milk │ │ │ ├── Rovastar - Kalideostars (Round Round Mix).milk │ │ │ ├── Rovastar - Kalideostars.milk │ │ │ ├── Rovastar - LabFunk.milk │ │ │ ├── Rovastar - Lost Souls of the Bermuda Triangle (Darkest Soul.milk │ │ │ ├── Rovastar - Magic Carpet.milk │ │ │ ├── Rovastar - Mosaics Of Ages.milk │ │ │ ├── Rovastar - Multiverse Starfield 1.milk │ │ │ ├── Rovastar - Multiverse Starfield 3.milk │ │ │ ├── Rovastar - Omnipresence Resurrection (Raw Mix).milk │ │ │ ├── Rovastar - Omnipresence Resurrection.milk │ │ │ ├── Rovastar - Oozing Resistance.milk │ │ │ ├── Rovastar - Pandora's Volcano.milk │ │ │ ├── Rovastar - Parallel Universe.milk │ │ │ ├── Rovastar - Sea Shells.milk │ │ │ ├── Rovastar - Snapshot Of Space.milk │ │ │ ├── Rovastar - Solarized Space (Space DNA Mix).milk │ │ │ ├── Rovastar - Solarized Space.milk │ │ │ ├── Rovastar - Space (Twisted Dimension Mix).milk │ │ │ ├── Rovastar - Space.milk │ │ │ ├── Rovastar - Starquake (Sunquake Mix).milk │ │ │ ├── Rovastar - The Awakening.milk │ │ │ ├── Rovastar - The Chaos Of Colours (Drifting Mix).milk │ │ │ ├── Rovastar - The Chaos Of Colours.milk │ │ │ ├── Rovastar - The Shroomery.milk │ │ │ ├── Rovastar - Timeless Voyage.milk │ │ │ ├── Rovastar - Touchdown on Mars (Detailed Pictures Mix).milk │ │ │ ├── Rovastar - Tripmaker.milk │ │ │ ├── Rovastar - VooV's Movement (After Dark Mix).milk │ │ │ ├── Rovastar - VooV's Movement.milk │ │ │ ├── Rovastar - twisted bytes.milk │ │ │ ├── Rovastar and Krash - Hallucinogenic Pyramids (Extra Beat Ti.milk │ │ │ ├── Rovastar and Unchained - Braindance Visions.milk │ │ │ ├── Rovastar and Unchained - Life After Pie (Remix).milk │ │ │ ├── Rozzer & Zylot - Force Field Generator (Slowtime Tweak).milk │ │ │ ├── Rozzor & Aderrasi - Canon.milk │ │ │ ├── Rozzor & Che - Inside The House Of Nil.milk │ │ │ ├── Rozzor & Rovastar - Oozing Resistance (Waveform Mod).milk │ │ │ ├── Rozzor - Learning Curve (Invert tweak).milk │ │ │ ├── Rozzor and Idiot - Any Other Deep Rising.milk │ │ │ ├── Rozzor and Rovastar - Altars Of Madness 3 (ooze tweak with .milk │ │ │ ├── Rozzor and Rovastar - Altars Of Madness 3 (ooze tweak).milk │ │ │ ├── Rozzor and StudioMusic - Vertigyny (Geiss shape mod).milk │ │ │ ├── Rozzor and Zylot - Associative Order.milk │ │ │ ├── Rozzor and che - Inside the House of nil.milk │ │ │ ├── Studio Music - Cherished Desires.milk │ │ │ ├── Studio Music and Unchained - Rapid Alteration.milk │ │ │ ├── StudioMusic & Unchained - Entity.milk │ │ │ ├── StudioMusic & Unchained - Minor Alteration.milk │ │ │ ├── StudioMusic & Unchained - So Much Love.milk │ │ │ ├── StudioMusic & Unchained - State Of Discretion.milk │ │ │ ├── StudioMusic & Unchained - Wrenched Fate.milk │ │ │ ├── StudioMusic - Harmonic Bliss (elated mix).milk │ │ │ ├── StudioMusic - It's Only Make Believe.milk │ │ │ ├── StudioMusic - Numerosity.milk │ │ │ ├── StudioMusic - Twisted Galaxy.milk │ │ │ ├── StudioMusic Aderrasi & nil - LA movement (Intellectual Sens.milk │ │ │ ├── TEcHNO and SandStorm - Psychodelic Highway.milk │ │ │ ├── Telek - City Helix Lattice.milk │ │ │ ├── Telek - Directive Swagger (Spectral Inferno) (fix...) maybe.milk │ │ │ ├── Telek - Flicker (@xis).milk │ │ │ ├── Telek - Flicker.milk │ │ │ ├── Telek - Lost Star (Flash).milk │ │ │ ├── Telek - Recirculate (Cool).milk │ │ │ ├── Telek - Sine Wave.milk │ │ │ ├── Telek - Slow Shift Matrix (Ethereal Drift).milk │ │ │ ├── Telek - Slow Shift Matrix (bb4.5).milk │ │ │ ├── Telek - Slow Shift Matrix.milk │ │ │ ├── Telek - Slow Thing (Spiderman Mix).milk │ │ │ ├── Telek - Spiral Tabletop (New and Improved!).milk │ │ │ ├── Telek - Spokes (More Dynamic).milk │ │ │ ├── Telek - Target Practice (tracking retreat slide).milk │ │ │ ├── Telek EMPR - Scanner - Trust me I've got a Melways.milk │ │ │ ├── TobiasWolfBoi - Cataract.milk │ │ │ ├── TobiasWolfBoi - The Pit.milk │ │ │ ├── Tschoey - Music Flower.milk │ │ │ ├── Tux.tga │ │ │ ├── Unchained & CTho - Bad Vibes.milk │ │ │ ├── Unchained & Che - Oddnezz 3.milk │ │ │ ├── Unchained & Che - Oddnezz 4 (Done it again).milk │ │ │ ├── Unchained & Illusion - Dual Wave 3.milk │ │ │ ├── Unchained & Illusion - Logic Morph.milk │ │ │ ├── Unchained & Illusion - Spirit Morph.milk │ │ │ ├── Unchained & Rovastar - For The Seagull.milk │ │ │ ├── Unchained & Rovastar - Luckless.milk │ │ │ ├── Unchained & Rovastar - Rainbow Obscura.milk │ │ │ ├── Unchained & Rovastar - Slow Solstice.milk │ │ │ ├── Unchained & Rovastar - Triptionary.milk │ │ │ ├── Unchained & Rovastar - Wormhole Pillars (Hall of Shadows mi.milk │ │ │ ├── Unchained & Rovastar - Wormhole Pillars.milk │ │ │ ├── Unchained & Rovastar - Xen Traffic.milk │ │ │ ├── Unchained - A Matter Of Taste (Remix).milk │ │ │ ├── Unchained - All You Can Eat.milk │ │ │ ├── Unchained - Bad Karma Oddnezz Style.milk │ │ │ ├── Unchained - Beat Demo (Demonology Mix).milk │ │ │ ├── Unchained - Beat Demo 1.0.milk │ │ │ ├── Unchained - Beat Demo 10.milk │ │ │ ├── Unchained - Beat Demo 2.0.milk │ │ │ ├── Unchained - Beat Demo 2.1.milk │ │ │ ├── Unchained - Beat Demo 2.2.milk │ │ │ ├── Unchained - Beat Demo 2.3.milk │ │ │ ├── Unchained - Cartoon Factory.milk │ │ │ ├── Unchained - Cranked On Failure.milk │ │ │ ├── Unchained - Custom Gramatix (Remix).milk │ │ │ ├── Unchained - Deeper Logic.milk │ │ │ ├── Unchained - Free to Feel (Valium Remix).milk │ │ │ ├── Unchained - French Clothing.milk │ │ │ ├── Unchained - Games With Light & Sound.milk │ │ │ ├── Unchained - Ghostlight Whisper.milk │ │ │ ├── Unchained - God Of The Game (Remix).milk │ │ │ ├── Unchained - Goo Kung Fu.milk │ │ │ ├── Unchained - Goofy Beat Detection.milk │ │ │ ├── Unchained - Housed In A Childish Mind.milk │ │ │ ├── Unchained - In Memory Of Peg.milk │ │ │ ├── Unchained - Invariant Under Rigorous Motions.milk │ │ │ ├── Unchained - Jaded Emotion.milk │ │ │ ├── Unchained - Jaundice.milk │ │ │ ├── Unchained - Making a Science of It 4.milk │ │ │ ├── Unchained - Morat's Final Voyage.milk │ │ │ ├── Unchained - Non-Professional Music Analyzer.milk │ │ │ ├── Unchained - Painful Plasma (Multi-Wave Mirrored Rage) -- Ro.milk │ │ │ ├── Unchained - Perverted Dialect.milk │ │ │ ├── Unchained - Picture Of Exile.milk │ │ │ ├── Unchained - Picture Of Nectar.milk │ │ │ ├── Unchained - Picture Of Poison.milk │ │ │ ├── Unchained - ReAwoke.milk │ │ │ ├── Unchained - Resistance.milk │ │ │ ├── Unchained - Ribald Ballad.milk │ │ │ ├── Unchained - Shaping The Grid.milk │ │ │ ├── Unchained - Subjective Experience Of The Manifold.milk │ │ │ ├── Unchained - Unclaimed Wreckage 2 (Shamanic).milk │ │ │ ├── Unchained - Unclaimed Wreckage.milk │ │ │ ├── Unchained - Unified Drag 2.milk │ │ │ ├── Unchained - Working the Grid.milk │ │ │ ├── Unchained - ventilation.milk │ │ │ ├── Zylot & Aderrasi - Oceanic Bassograph (New Jersey Shore Mix.milk │ │ │ ├── Zylot & Idiot - ATan2 Demo (Spiraling Mad Mix).milk │ │ │ ├── Zylot & Krash - Extremophile.milk │ │ │ ├── Zylot & Mstress - Celebrate.milk │ │ │ ├── Zylot & Mstress - Toxic Storm On Acid Sea (The End Of The W.milk │ │ │ ├── Zylot & Rovastar - Crystal Ball (Cerimonial Decor Mix).milk │ │ │ ├── Zylot - Azirphaeli's Mirror.milk │ │ │ ├── Zylot - Block Of Sound (Abstract Architecture Mix).milk │ │ │ ├── Zylot - Block Of Sound (Fractal Construction Mix).milk │ │ │ ├── Zylot - Color Of Music.milk │ │ │ ├── Zylot - Crystal Ball (Magical Reaction Mix).milk │ │ │ ├── Zylot - De(-a)range(d)(ment) complex.milk │ │ │ ├── Zylot - De(-a)range(d)(ment) strain.milk │ │ │ ├── Zylot - Digiscape Advanced Processor.milk │ │ │ ├── Zylot - Ether Storm.milk │ │ │ ├── Zylot - Global Earthquake.milk │ │ │ ├── Zylot - Inside The Planar Portal.milk │ │ │ ├── Zylot - Mixing Pot.milk │ │ │ ├── Zylot - Puddle Of Music.milk │ │ │ ├── Zylot - Rainbow Planet Under Attack.milk │ │ │ ├── Zylot - Rush.milk │ │ │ ├── Zylot - S Pulse Virus.milk │ │ │ ├── Zylot - String.milk │ │ │ ├── Zylot - Tangent Universe (Collapsed With Artifact Mix).milk │ │ │ ├── Zylot - The Deeper.milk │ │ │ ├── Zylot - The Inner Workings of my New Computer.milk │ │ │ ├── Zylot - Visionarie (geiss aspect ratio fix).milk │ │ │ ├── Zylot - Waves Of Blood.milk │ │ │ ├── Zylot - Wisps.milk │ │ │ ├── Zylot - light of the path.milk │ │ │ ├── Zylot and Rovastar - Iouo Stone Morphic Fusion.milk │ │ │ ├── [Ishan] - Life in the drains.milk │ │ │ ├── baked - mushroom rainbows[2].milk │ │ │ ├── che - adela the flower.milk │ │ │ ├── che - burning hus (oil mix).milk │ │ │ ├── che - terracarbon stream.milk │ │ │ ├── fiShbRaiN - blueprint.milk │ │ │ ├── headphones.tga │ │ │ ├── idiot - Nothing Yet - 03 - The worst of the pack.milk │ │ │ ├── idiot - Nucleus.milk │ │ │ ├── idiot - Sinful Code (unchained style).milk │ │ │ ├── idiot - Some big word I learned.milk │ │ │ ├── idiot - Spectrum.milk │ │ │ ├── illusion & studio music - charged bliss.milk │ │ │ ├── nil - Can't Stop the Blithering.milk │ │ │ ├── nil - Can't Stop the Cramming.milk │ │ │ ├── nil - Cid and Lucy.milk │ │ │ ├── nil - Disco Comet.milk │ │ │ ├── nil - Singularity in My Oscilloscope.milk │ │ │ ├── nil - Vortex of Vortices.milk │ │ │ ├── project.tga │ │ │ ├── shifter - escape the worm - Eo.S. + Phat - Before_It_Eats_Your_Brain_Mix_v2.milk │ │ │ └── shifter - escape the worm - Eo.S. + Phat 5362.milk │ │ ├── projectM.cpp │ │ ├── projectM.dsp │ │ ├── projectM.hpp │ │ ├── resource.h │ │ ├── sdltoprojectM.h │ │ ├── stb_image_aug.c │ │ ├── stb_image_aug.h │ │ ├── stbi_DDS_aug.h │ │ ├── stbi_DDS_aug_c.h │ │ ├── timer.cpp │ │ ├── timer.h │ │ ├── win32-dirent.cpp │ │ ├── win32-dirent.h │ │ ├── wipemalloc.cpp │ │ └── wipemalloc.h │ ├── projectm_1.2.0.patch │ └── win32 │ │ ├── glew │ │ ├── ReadMe.txt │ │ ├── glew32.dll │ │ ├── libglew32.a │ │ └── libglew32.dll.a │ │ └── pthreads │ │ ├── pthread.h │ │ └── sched.h └── iTunes │ ├── Main.cpp │ ├── Makefile.in │ ├── common.h │ ├── common_osx.m │ ├── iTunesAPI.c │ ├── iTunesAPI.h │ ├── iTunesVisualAPI.h │ ├── itunes_vis.c │ ├── itunes_vis.h │ ├── message_order.txt │ ├── qview.h │ └── qview.m ├── win32 ├── PlatformDefs.h ├── PlatformInclude.h ├── WIN32Util.cpp ├── WIN32Util.h ├── WINDirectSound.cpp ├── WINDirectSound.h ├── WINFileSMB.cpp ├── WINFileSMB.h ├── WINSMBDirectory.cpp ├── WINSMBDirectory.h ├── WMIInterface.cpp ├── WMIInterface.h ├── Win32DelayedDllLoad.cpp ├── WindowHelper.cpp ├── WindowHelper.h ├── XBMC.ico ├── XBMC_PC.cpp ├── XBMC_PC.rc ├── arpa │ └── inet.h ├── git_rev.tmpl ├── inttypes.h ├── my_ntddcdrm.h ├── my_ntddscsi.h ├── netdb.h ├── netinet │ ├── in.h │ └── tcp.h ├── pch.cpp ├── pch.h ├── resource.h ├── stat_utf8.cpp ├── stat_utf8.h ├── stdbool.h ├── stdio_utf8.cpp ├── stdio_utf8.h ├── strverscmp.cpp ├── sys │ ├── select.h │ ├── socket.h │ └── time.h ├── unistd.h └── win32env.cpp ├── windowing ├── Makefile ├── WinEvents.h ├── WinEventsLinux.cpp ├── WinEventsLinux.h ├── WinEventsSDL.cpp ├── WinEventsSDL.h ├── WinSystem.cpp ├── WinSystem.h ├── WindowingFactory.h ├── X11 │ ├── Makefile │ ├── WinSystemX11.cpp │ ├── WinSystemX11.h │ ├── WinSystemX11GL.cpp │ ├── WinSystemX11GL.h │ ├── WinSystemX11GLES.cpp │ ├── WinSystemX11GLES.h │ ├── XRandR.cpp │ └── XRandR.h ├── XBMC_events.h ├── egl │ ├── Makefile │ ├── WinBindingEGL.cpp │ ├── WinBindingEGL.h │ ├── WinSystemGLES.cpp │ └── WinSystemGLES.h ├── osx │ ├── Makefile │ ├── WinEventsIOS.h │ ├── WinEventsIOS.mm │ ├── WinEventsOSX.h │ ├── WinEventsOSX.mm │ ├── WinSystemIOS.h │ ├── WinSystemIOS.mm │ ├── WinSystemOSX.h │ ├── WinSystemOSX.mm │ ├── WinSystemOSXGL.h │ └── WinSystemOSXGL.mm └── windows │ ├── WinEventsWin32.cpp │ ├── WinEventsWin32.h │ ├── WinSystemWin32.cpp │ ├── WinSystemWin32.h │ ├── WinSystemWin32DX.cpp │ ├── WinSystemWin32DX.h │ ├── WinSystemWin32GL.cpp │ └── WinSystemWin32GL.h ├── windows ├── GUIMediaWindow.cpp ├── GUIMediaWindow.h ├── GUIWindowDebugInfo.cpp ├── GUIWindowDebugInfo.h ├── GUIWindowFileManager.cpp ├── GUIWindowFileManager.h ├── GUIWindowHome.cpp ├── GUIWindowHome.h ├── GUIWindowLoginScreen.cpp ├── GUIWindowLoginScreen.h ├── GUIWindowPointer.cpp ├── GUIWindowPointer.h ├── GUIWindowScreensaver.cpp ├── GUIWindowScreensaver.h ├── GUIWindowScreensaverDim.cpp ├── GUIWindowScreensaverDim.h ├── GUIWindowStartup.cpp ├── GUIWindowStartup.h ├── GUIWindowSystemInfo.cpp ├── GUIWindowSystemInfo.h ├── GUIWindowWeather.cpp ├── GUIWindowWeather.h └── Makefile └── xbmc.cpp /.dummy.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/.dummy.am -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -crlf -diff 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/LICENSE.GPL -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/Makefile.in -------------------------------------------------------------------------------- /Makefile.include.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/Makefile.include.in -------------------------------------------------------------------------------- /README.armel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/README.armel -------------------------------------------------------------------------------- /README.ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/README.ios -------------------------------------------------------------------------------- /README.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/README.linux -------------------------------------------------------------------------------- /README.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/README.osx -------------------------------------------------------------------------------- /README.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/README.ubuntu -------------------------------------------------------------------------------- /addons/pvr.hts/addon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/addons/pvr.hts/addon.xml -------------------------------------------------------------------------------- /addons/pvr.hts/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/addons/pvr.hts/icon.png -------------------------------------------------------------------------------- /addons/xbmc.gui/skin.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/addons/xbmc.gui/skin.xsd -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/bootstrap -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/configure.in -------------------------------------------------------------------------------- /copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/copying.txt -------------------------------------------------------------------------------- /docs/manpages/runXBMC.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/docs/manpages/runXBMC.1 -------------------------------------------------------------------------------- /docs/manpages/xbmc.1: -------------------------------------------------------------------------------- 1 | .so man1/xbmc.bin.1 2 | -------------------------------------------------------------------------------- /docs/manpages/xbmc.bin.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/docs/manpages/xbmc.bin.1 -------------------------------------------------------------------------------- /gitrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/gitrev.sh -------------------------------------------------------------------------------- /keymapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/keymapping.txt -------------------------------------------------------------------------------- /lib/DllASAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllASAP.h -------------------------------------------------------------------------------- /lib/DllAdpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllAdpcm.h -------------------------------------------------------------------------------- /lib/DllAvCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllAvCodec.h -------------------------------------------------------------------------------- /lib/DllAvCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllAvCore.h -------------------------------------------------------------------------------- /lib/DllAvFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllAvFilter.h -------------------------------------------------------------------------------- /lib/DllAvFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllAvFormat.h -------------------------------------------------------------------------------- /lib/DllAvUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllAvUtil.h -------------------------------------------------------------------------------- /lib/DllLibFlac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllLibFlac.h -------------------------------------------------------------------------------- /lib/DllLibbluray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllLibbluray.h -------------------------------------------------------------------------------- /lib/DllModplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllModplug.h -------------------------------------------------------------------------------- /lib/DllNosefart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllNosefart.h -------------------------------------------------------------------------------- /lib/DllPostProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllPostProc.h -------------------------------------------------------------------------------- /lib/DllSidplay2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllSidplay2.h -------------------------------------------------------------------------------- /lib/DllStSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllStSound.h -------------------------------------------------------------------------------- /lib/DllSwScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllSwScale.h -------------------------------------------------------------------------------- /lib/DllTimidity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllTimidity.h -------------------------------------------------------------------------------- /lib/DllVGMStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllVGMStream.h -------------------------------------------------------------------------------- /lib/DllVorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/DllVorbisfile.h -------------------------------------------------------------------------------- /lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/Makefile.in -------------------------------------------------------------------------------- /lib/SlingboxLib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/SlingboxLib/Makefile -------------------------------------------------------------------------------- /lib/UnrarXLib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/Makefile -------------------------------------------------------------------------------- /lib/UnrarXLib/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/Readme.txt -------------------------------------------------------------------------------- /lib/UnrarXLib/UnrarX.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/UnrarX.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/arccmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/arccmt.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/array.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/coder.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/coder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/coder.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/consio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/consio.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/consio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/consio.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/crc.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/crc.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/crypt.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/crypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/crypt.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/dll.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/dll.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/errhnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/errhnd.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/errhnd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/errhnd.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/file.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/file.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/filefn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/filefn.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/filefn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/filefn.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/find.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/find.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/global.cpp: -------------------------------------------------------------------------------- 1 | #define INCLUDEGLOBAL 2 | 3 | 4 | #include "rar.hpp" 5 | -------------------------------------------------------------------------------- /lib/UnrarXLib/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/global.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/int64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/int64.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/int64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/int64.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/isnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/isnt.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/isnt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/isnt.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/list.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/log.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/log.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/match.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/match.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/model.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/model.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/os.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/pathfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/pathfn.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/pathfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/pathfn.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/rar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/rar.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/rar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/rar.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/rarfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/rarfn.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/raros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/raros.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/rarvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/rarvm.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/rarvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/rarvm.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/rdwrfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/rdwrfn.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/rdwrfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/rdwrfn.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/recvol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/recvol.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/recvol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/recvol.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/rs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/rs.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/rs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/rs.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/sha1.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/sha1.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/stdafx.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/strfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/strfn.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/strfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/strfn.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/system.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/system.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/timefn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/timefn.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/timefn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/timefn.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/ulinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/ulinks.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/ulinks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/ulinks.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/unpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/unpack.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/unpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/unpack.hpp -------------------------------------------------------------------------------- /lib/UnrarXLib/unrar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/unrar.h -------------------------------------------------------------------------------- /lib/UnrarXLib/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/volume.cpp -------------------------------------------------------------------------------- /lib/UnrarXLib/volume.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/UnrarXLib/volume.hpp -------------------------------------------------------------------------------- /lib/afpfs-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/afpfs-ng/Makefile -------------------------------------------------------------------------------- /lib/asap/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/COPYING -------------------------------------------------------------------------------- /lib/asap/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/CREDITS -------------------------------------------------------------------------------- /lib/asap/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/ChangeLog -------------------------------------------------------------------------------- /lib/asap/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/INSTALL -------------------------------------------------------------------------------- /lib/asap/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/Makefile.in -------------------------------------------------------------------------------- /lib/asap/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/NEWS -------------------------------------------------------------------------------- /lib/asap/PORTS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/PORTS.xml -------------------------------------------------------------------------------- /lib/asap/PORTS.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/PORTS.xsl -------------------------------------------------------------------------------- /lib/asap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/README -------------------------------------------------------------------------------- /lib/asap/acpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/acpu.c -------------------------------------------------------------------------------- /lib/asap/anylang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/anylang.h -------------------------------------------------------------------------------- /lib/asap/apokeysnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/apokeysnd.c -------------------------------------------------------------------------------- /lib/asap/asap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/asap.c -------------------------------------------------------------------------------- /lib/asap/asap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/asap.h -------------------------------------------------------------------------------- /lib/asap/asap2wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/asap2wav.c -------------------------------------------------------------------------------- /lib/asap/asap_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/asap_internal.h -------------------------------------------------------------------------------- /lib/asap/asapscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/asapscan.c -------------------------------------------------------------------------------- /lib/asap/chksap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/chksap.pl -------------------------------------------------------------------------------- /lib/asap/csharp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/csharp/Makefile -------------------------------------------------------------------------------- /lib/asap/flash/ASAP.ppas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/flash/ASAP.ppas -------------------------------------------------------------------------------- /lib/asap/flash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/flash/Makefile -------------------------------------------------------------------------------- /lib/asap/flash/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/flash/USAGE -------------------------------------------------------------------------------- /lib/asap/gsplayer/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/gsplayer/USAGE -------------------------------------------------------------------------------- /lib/asap/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/java/Makefile -------------------------------------------------------------------------------- /lib/asap/java/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/java/USAGE -------------------------------------------------------------------------------- /lib/asap/java/asap2wav.MF: -------------------------------------------------------------------------------- 1 | Main-Class: ASAP2WAV 2 | -------------------------------------------------------------------------------- /lib/asap/java/mf2jad.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/java/mf2jad.pl -------------------------------------------------------------------------------- /lib/asap/mads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/mads/Makefile -------------------------------------------------------------------------------- /lib/asap/mads/mads.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/mads/mads.pas -------------------------------------------------------------------------------- /lib/asap/maketar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/maketar.pl -------------------------------------------------------------------------------- /lib/asap/players/cmc.asx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/players/cmc.asx -------------------------------------------------------------------------------- /lib/asap/players/cms.asx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/players/cms.asx -------------------------------------------------------------------------------- /lib/asap/players/dlt.as8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/players/dlt.as8 -------------------------------------------------------------------------------- /lib/asap/players/mpt.asx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/players/mpt.asx -------------------------------------------------------------------------------- /lib/asap/players/rmt.asx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/players/rmt.asx -------------------------------------------------------------------------------- /lib/asap/players/tm2.asx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/players/tm2.asx -------------------------------------------------------------------------------- /lib/asap/players/tmc.asx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/players/tmc.asx -------------------------------------------------------------------------------- /lib/asap/win32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/win32/Makefile -------------------------------------------------------------------------------- /lib/asap/win32/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/win32/USAGE -------------------------------------------------------------------------------- /lib/asap/win32/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/win32/gui.c -------------------------------------------------------------------------------- /lib/asap/win32/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/win32/gui.h -------------------------------------------------------------------------------- /lib/asap/win32/gui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/win32/gui.rc -------------------------------------------------------------------------------- /lib/asap/win32/setup/Website.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://asap.sourceforge.net/ 3 | -------------------------------------------------------------------------------- /lib/asap/xasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/xasm/Makefile -------------------------------------------------------------------------------- /lib/asap/xasm/xasm.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/xasm/xasm.1.txt -------------------------------------------------------------------------------- /lib/asap/xasm/xasm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/asap/xasm/xasm.d -------------------------------------------------------------------------------- /lib/cmyth/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cmyth/COPYING -------------------------------------------------------------------------------- /lib/cmyth/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cmyth/Makefile.in -------------------------------------------------------------------------------- /lib/cpluff/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/COPYRIGHT.txt -------------------------------------------------------------------------------- /lib/cpluff/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/ChangeLog.txt -------------------------------------------------------------------------------- /lib/cpluff/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/INSTALL.txt -------------------------------------------------------------------------------- /lib/cpluff/Issues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/Issues.txt -------------------------------------------------------------------------------- /lib/cpluff/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/Makefile.am -------------------------------------------------------------------------------- /lib/cpluff/Roadmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/Roadmap.txt -------------------------------------------------------------------------------- /lib/cpluff/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/autogen.sh -------------------------------------------------------------------------------- /lib/cpluff/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/configure.ac -------------------------------------------------------------------------------- /lib/cpluff/doc/reference/c-api/cpluff_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 04e67764e8c4d7feea7212175ba9155c -------------------------------------------------------------------------------- /lib/cpluff/doc/reference/c-api/cpluffdef_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 488c91cb6b7500f359b44534cf06d2ab -------------------------------------------------------------------------------- /lib/cpluff/doc/reference/c-api/structcp__cfg__element__t__coll__graph.map: -------------------------------------------------------------------------------- 1 | base referer 2 | -------------------------------------------------------------------------------- /lib/cpluff/kazlib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/kazlib/hash.c -------------------------------------------------------------------------------- /lib/cpluff/kazlib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/kazlib/hash.h -------------------------------------------------------------------------------- /lib/cpluff/kazlib/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/kazlib/list.c -------------------------------------------------------------------------------- /lib/cpluff/kazlib/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/kazlib/list.h -------------------------------------------------------------------------------- /lib/cpluff/m4/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/m4/gettext.m4 -------------------------------------------------------------------------------- /lib/cpluff/m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/m4/iconv.m4 -------------------------------------------------------------------------------- /lib/cpluff/m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/m4/lib-ld.m4 -------------------------------------------------------------------------------- /lib/cpluff/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/m4/nls.m4 -------------------------------------------------------------------------------- /lib/cpluff/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/m4/po.m4 -------------------------------------------------------------------------------- /lib/cpluff/plugin.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/plugin.xsd -------------------------------------------------------------------------------- /lib/cpluff/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/po/LINGUAS -------------------------------------------------------------------------------- /lib/cpluff/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/po/Makevars -------------------------------------------------------------------------------- /lib/cpluff/po/Rules-quot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/po/Rules-quot -------------------------------------------------------------------------------- /lib/cpluff/po/cpluff.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/po/cpluff.pot -------------------------------------------------------------------------------- /lib/cpluff/po/fi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/po/fi.gmo -------------------------------------------------------------------------------- /lib/cpluff/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/po/fi.po -------------------------------------------------------------------------------- /lib/cpluff/po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/po/quot.sed -------------------------------------------------------------------------------- /lib/cpluff/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /lib/cpluff/test/cpinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/test/cpinfo.c -------------------------------------------------------------------------------- /lib/cpluff/test/extcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/test/extcfg.c -------------------------------------------------------------------------------- /lib/cpluff/test/plugins/minimal/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/cpluff/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cpluff/test/test.h -------------------------------------------------------------------------------- /lib/cximage-6.0/png/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cximage-6.0/png/TODO -------------------------------------------------------------------------------- /lib/cximage-6.0/png/pngvcrd.c: -------------------------------------------------------------------------------- 1 | /* pnggvrd.c was removed from libpng-1.2.20. */ 2 | -------------------------------------------------------------------------------- /lib/cximage-6.0/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/cximage-6.0/zlib/FAQ -------------------------------------------------------------------------------- /lib/enca/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/.gitignore -------------------------------------------------------------------------------- /lib/enca/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/AUTHORS -------------------------------------------------------------------------------- /lib/enca/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/COPYING -------------------------------------------------------------------------------- /lib/enca/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/ChangeLog -------------------------------------------------------------------------------- /lib/enca/ChangeLog.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/ChangeLog.old -------------------------------------------------------------------------------- /lib/enca/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/FAQ -------------------------------------------------------------------------------- /lib/enca/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/INSTALL -------------------------------------------------------------------------------- /lib/enca/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/Makefile.am -------------------------------------------------------------------------------- /lib/enca/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/Makefile.in -------------------------------------------------------------------------------- /lib/enca/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/enca/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/README -------------------------------------------------------------------------------- /lib/enca/README.devel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/README.devel -------------------------------------------------------------------------------- /lib/enca/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/THANKS -------------------------------------------------------------------------------- /lib/enca/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/TODO -------------------------------------------------------------------------------- /lib/enca/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/aclocal.m4 -------------------------------------------------------------------------------- /lib/enca/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/autogen.sh -------------------------------------------------------------------------------- /lib/enca/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/compile -------------------------------------------------------------------------------- /lib/enca/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/config.guess -------------------------------------------------------------------------------- /lib/enca/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/config.h.in -------------------------------------------------------------------------------- /lib/enca/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/config.rpath -------------------------------------------------------------------------------- /lib/enca/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/config.sub -------------------------------------------------------------------------------- /lib/enca/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/configure -------------------------------------------------------------------------------- /lib/enca/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/configure.ac -------------------------------------------------------------------------------- /lib/enca/data/.gitignore: -------------------------------------------------------------------------------- 1 | .deps 2 | Makefile 3 | -------------------------------------------------------------------------------- /lib/enca/data/Letters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/data/Letters -------------------------------------------------------------------------------- /lib/enca/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/data/README -------------------------------------------------------------------------------- /lib/enca/data/basetoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/data/basetoc.c -------------------------------------------------------------------------------- /lib/enca/data/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/data/clean.sh -------------------------------------------------------------------------------- /lib/enca/data/countall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/data/countall.c -------------------------------------------------------------------------------- /lib/enca/data/croatian/doit.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | ../doit.sh cp1250 iso88592 ibm852 macce cork 3 | -------------------------------------------------------------------------------- /lib/enca/data/doit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/data/doit.sh -------------------------------------------------------------------------------- /lib/enca/data/extreme.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/data/extreme.pl -------------------------------------------------------------------------------- /lib/enca/data/hungarian/doit.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | ../doit.sh iso88592 cp1250 ibm852 macce cork 3 | -------------------------------------------------------------------------------- /lib/enca/data/pairtoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/data/pairtoc.c -------------------------------------------------------------------------------- /lib/enca/data/russian/doit.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | ../doit.sh koi8r cp1251 iso88595 ibm866 maccyr 3 | -------------------------------------------------------------------------------- /lib/enca/data/slovene/doit.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | ../doit.sh iso88592 cp1250 ibm852 macce cork 3 | -------------------------------------------------------------------------------- /lib/enca/data/totals.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/data/totals.pl -------------------------------------------------------------------------------- /lib/enca/data/xlt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/data/xlt.c -------------------------------------------------------------------------------- /lib/enca/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/depcomp -------------------------------------------------------------------------------- /lib/enca/devel-docs/libenca-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/enca/devel-docs/libenca-undeclared.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/enca/devel-docs/xml/libenca-doc.top: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/enca/enca.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/enca.pc.in -------------------------------------------------------------------------------- /lib/enca/enca.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/enca.spec.in -------------------------------------------------------------------------------- /lib/enca/iconvcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/iconvcap.c -------------------------------------------------------------------------------- /lib/enca/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/install-sh -------------------------------------------------------------------------------- /lib/enca/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/.gitignore -------------------------------------------------------------------------------- /lib/enca/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/Makefile.am -------------------------------------------------------------------------------- /lib/enca/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/Makefile.in -------------------------------------------------------------------------------- /lib/enca/lib/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/common.c -------------------------------------------------------------------------------- /lib/enca/lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/ctype.c -------------------------------------------------------------------------------- /lib/enca/lib/enca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/enca.c -------------------------------------------------------------------------------- /lib/enca/lib/enca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/enca.h -------------------------------------------------------------------------------- /lib/enca/lib/encnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/encnames.c -------------------------------------------------------------------------------- /lib/enca/lib/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/filters.c -------------------------------------------------------------------------------- /lib/enca/lib/guess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/guess.c -------------------------------------------------------------------------------- /lib/enca/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/internal.h -------------------------------------------------------------------------------- /lib/enca/lib/lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_be.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_bg.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_cs.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_et.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_et.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_hr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_hr.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_hu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_hu.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_lt.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_lv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_lv.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_pl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_pl.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_ru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_ru.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_sk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_sk.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_sl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_sl.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_uk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_uk.c -------------------------------------------------------------------------------- /lib/enca/lib/lang_zh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/lang_zh.c -------------------------------------------------------------------------------- /lib/enca/lib/multibyte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/multibyte.c -------------------------------------------------------------------------------- /lib/enca/lib/pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/lib/pair.c -------------------------------------------------------------------------------- /lib/enca/libenca_win32/config.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | #define ssize_t int -------------------------------------------------------------------------------- /lib/enca/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/ltmain.sh -------------------------------------------------------------------------------- /lib/enca/m4/crash-me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/crash-me -------------------------------------------------------------------------------- /lib/enca/m4/gtk-doc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/gtk-doc.m4 -------------------------------------------------------------------------------- /lib/enca/m4/libiconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/libiconv.m4 -------------------------------------------------------------------------------- /lib/enca/m4/libm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/libm.m4 -------------------------------------------------------------------------------- /lib/enca/m4/librecode.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/librecode.m4 -------------------------------------------------------------------------------- /lib/enca/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/libtool.m4 -------------------------------------------------------------------------------- /lib/enca/m4/localias.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/localias.m4 -------------------------------------------------------------------------------- /lib/enca/m4/long-text.l2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/long-text.l2 -------------------------------------------------------------------------------- /lib/enca/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/ltoptions.m4 -------------------------------------------------------------------------------- /lib/enca/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/ltsugar.m4 -------------------------------------------------------------------------------- /lib/enca/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/ltversion.m4 -------------------------------------------------------------------------------- /lib/enca/m4/tools.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/tools.m4 -------------------------------------------------------------------------------- /lib/enca/m4/typevar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/m4/typevar.m4 -------------------------------------------------------------------------------- /lib/enca/man/enca.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/man/enca.1 -------------------------------------------------------------------------------- /lib/enca/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/missing -------------------------------------------------------------------------------- /lib/enca/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/mkinstalldirs -------------------------------------------------------------------------------- /lib/enca/script/b-map.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/script/b-map.in -------------------------------------------------------------------------------- /lib/enca/script/b-recode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/script/b-recode -------------------------------------------------------------------------------- /lib/enca/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/src/.gitignore -------------------------------------------------------------------------------- /lib/enca/src/HELP.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/src/HELP.in -------------------------------------------------------------------------------- /lib/enca/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/src/Makefile.am -------------------------------------------------------------------------------- /lib/enca/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/src/Makefile.in -------------------------------------------------------------------------------- /lib/enca/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/src/common.h -------------------------------------------------------------------------------- /lib/enca/src/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/src/convert.c -------------------------------------------------------------------------------- /lib/enca/src/enca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/src/enca.c -------------------------------------------------------------------------------- /lib/enca/src/filebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/src/filebuf.c -------------------------------------------------------------------------------- /lib/enca/src/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/src/getopt.h -------------------------------------------------------------------------------- /lib/enca/src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/src/options.c -------------------------------------------------------------------------------- /lib/enca/src/text2c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/src/text2c.sh -------------------------------------------------------------------------------- /lib/enca/test/.gitignore: -------------------------------------------------------------------------------- 1 | .deps 2 | Makefile 3 | -------------------------------------------------------------------------------- /lib/enca/test/be-s.utf8: -------------------------------------------------------------------------------- 1 | Ну што вы не пасядзеце? 2 | -------------------------------------------------------------------------------- /lib/enca/test/bg-s.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/bg-s.utf8 -------------------------------------------------------------------------------- /lib/enca/test/cs-s.cork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/cs-s.cork -------------------------------------------------------------------------------- /lib/enca/test/cs-s.macce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/cs-s.macce -------------------------------------------------------------------------------- /lib/enca/test/cs-s.utf8: -------------------------------------------------------------------------------- 1 | nápor poťouchlých žlutých číňanů přehlušil i zuřící orkán 2 | -------------------------------------------------------------------------------- /lib/enca/test/dummy-converter.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | echo $@ 3 | -------------------------------------------------------------------------------- /lib/enca/test/et-s.macce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/et-s.macce -------------------------------------------------------------------------------- /lib/enca/test/et-s.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/et-s.utf8 -------------------------------------------------------------------------------- /lib/enca/test/failing-converter.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | exit 1 3 | -------------------------------------------------------------------------------- /lib/enca/test/failing-converter2.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | kill -9 $$ 3 | -------------------------------------------------------------------------------- /lib/enca/test/finish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/finish.sh -------------------------------------------------------------------------------- /lib/enca/test/hr-s.cork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/hr-s.cork -------------------------------------------------------------------------------- /lib/enca/test/hr-s.macce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/hr-s.macce -------------------------------------------------------------------------------- /lib/enca/test/hr-s.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/hr-s.utf8 -------------------------------------------------------------------------------- /lib/enca/test/hu-s.cork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/hu-s.cork -------------------------------------------------------------------------------- /lib/enca/test/hu-s.macce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/hu-s.macce -------------------------------------------------------------------------------- /lib/enca/test/hu-s.utf8: -------------------------------------------------------------------------------- 1 | Hajnalonta a kertész kiültet tíz tő rózsát a főtérre. Vöröslenek 2 | -------------------------------------------------------------------------------- /lib/enca/test/lt-s.macce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/lt-s.macce -------------------------------------------------------------------------------- /lib/enca/test/lv-s.macce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/lv-s.macce -------------------------------------------------------------------------------- /lib/enca/test/lv-s.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/lv-s.utf8 -------------------------------------------------------------------------------- /lib/enca/test/pl-s.cork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/pl-s.cork -------------------------------------------------------------------------------- /lib/enca/test/pl-s.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/pl-s.utf8 -------------------------------------------------------------------------------- /lib/enca/test/ru-s.cp866: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/ru-s.cp866 -------------------------------------------------------------------------------- /lib/enca/test/ru-s.koi8r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/ru-s.koi8r -------------------------------------------------------------------------------- /lib/enca/test/ru-s.utf8: -------------------------------------------------------------------------------- 1 | Так что для меня пока xcode рулит. 2 | -------------------------------------------------------------------------------- /lib/enca/test/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/setup.sh -------------------------------------------------------------------------------- /lib/enca/test/simtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/simtable.c -------------------------------------------------------------------------------- /lib/enca/test/sk-s.cork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/sk-s.cork -------------------------------------------------------------------------------- /lib/enca/test/sk-s.macce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/sk-s.macce -------------------------------------------------------------------------------- /lib/enca/test/sk-s.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/sk-s.utf8 -------------------------------------------------------------------------------- /lib/enca/test/sl-s.cork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/sl-s.cork -------------------------------------------------------------------------------- /lib/enca/test/sl-s.macce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/sl-s.macce -------------------------------------------------------------------------------- /lib/enca/test/sl-s.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/sl-s.utf8 -------------------------------------------------------------------------------- /lib/enca/test/test-external.expected: -------------------------------------------------------------------------------- 1 | ISO-8859-2/LF CP1250 test-external.tmp 2 | -------------------------------------------------------------------------------- /lib/enca/test/test-pP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/test-pP.sh -------------------------------------------------------------------------------- /lib/enca/test/uk-s.koi8u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/uk-s.koi8u -------------------------------------------------------------------------------- /lib/enca/test/uk-s.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/uk-s.utf8 -------------------------------------------------------------------------------- /lib/enca/test/zh-s.big5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/zh-s.big5 -------------------------------------------------------------------------------- /lib/enca/test/zh-s.gbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/zh-s.gbk -------------------------------------------------------------------------------- /lib/enca/test/zh-s.hz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/zh-s.hz -------------------------------------------------------------------------------- /lib/enca/test/zh-s.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/test/zh-s.utf8 -------------------------------------------------------------------------------- /lib/enca/tools/BASE64.ti: -------------------------------------------------------------------------------- 1 | "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" 2 | -------------------------------------------------------------------------------- /lib/enca/tools/HEXDIGITS.ti: -------------------------------------------------------------------------------- 1 | "0123456789ABCDEF" 2 | -------------------------------------------------------------------------------- /lib/enca/tools/TEX_ACCALPHA.t: -------------------------------------------------------------------------------- 1 | "bcdHkrtuv" 2 | -------------------------------------------------------------------------------- /lib/enca/tools/TEX_ACCPUNCT.t: -------------------------------------------------------------------------------- 1 | "'`^\"~=." 2 | -------------------------------------------------------------------------------- /lib/enca/tools/TEX_SKIP.t: -------------------------------------------------------------------------------- 1 | " \t\n\r{" 2 | -------------------------------------------------------------------------------- /lib/enca/topline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/enca/topline.sh -------------------------------------------------------------------------------- /lib/ffmpeg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/.gitignore -------------------------------------------------------------------------------- /lib/ffmpeg/COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/COPYING.GPLv2 -------------------------------------------------------------------------------- /lib/ffmpeg/COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/COPYING.GPLv3 -------------------------------------------------------------------------------- /lib/ffmpeg/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/CREDITS -------------------------------------------------------------------------------- /lib/ffmpeg/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/Changelog -------------------------------------------------------------------------------- /lib/ffmpeg/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/Doxyfile -------------------------------------------------------------------------------- /lib/ffmpeg/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/INSTALL -------------------------------------------------------------------------------- /lib/ffmpeg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/LICENSE -------------------------------------------------------------------------------- /lib/ffmpeg/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/MAINTAINERS -------------------------------------------------------------------------------- /lib/ffmpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/Makefile -------------------------------------------------------------------------------- /lib/ffmpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/README -------------------------------------------------------------------------------- /lib/ffmpeg/cmdutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/cmdutils.c -------------------------------------------------------------------------------- /lib/ffmpeg/cmdutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/cmdutils.h -------------------------------------------------------------------------------- /lib/ffmpeg/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/common.mak -------------------------------------------------------------------------------- /lib/ffmpeg/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/configure -------------------------------------------------------------------------------- /lib/ffmpeg/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/doc/TODO -------------------------------------------------------------------------------- /lib/ffmpeg/doc/eval.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/doc/eval.texi -------------------------------------------------------------------------------- /lib/ffmpeg/doc/faq.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/doc/faq.texi -------------------------------------------------------------------------------- /lib/ffmpeg/doc/snow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/doc/snow.txt -------------------------------------------------------------------------------- /lib/ffmpeg/doc/soc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/doc/soc.txt -------------------------------------------------------------------------------- /lib/ffmpeg/doc/t2h.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/doc/t2h.init -------------------------------------------------------------------------------- /lib/ffmpeg/ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/ffmpeg.c -------------------------------------------------------------------------------- /lib/ffmpeg/ffplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/ffplay.c -------------------------------------------------------------------------------- /lib/ffmpeg/ffpresets/libx264-main.ffpreset: -------------------------------------------------------------------------------- 1 | flags2=-dct8x8 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/ffprobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/ffprobe.c -------------------------------------------------------------------------------- /lib/ffmpeg/ffserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/ffserver.c -------------------------------------------------------------------------------- /lib/ffmpeg/ffserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/ffserver.h -------------------------------------------------------------------------------- /lib/ffmpeg/libavcodec/inverse.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/inverse.c" 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/subdir.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/subdir.mak -------------------------------------------------------------------------------- /lib/ffmpeg/tests/fate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/tests/fate.sh -------------------------------------------------------------------------------- /lib/ffmpeg/tests/md5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/tests/md5.sh -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/aac-demux: -------------------------------------------------------------------------------- 1 | CRC=0xbda37454 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/adpcm-ea-r2: -------------------------------------------------------------------------------- 1 | CRC=0xa1158634 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/adpcm-ea-r3: -------------------------------------------------------------------------------- 1 | CRC=0x9ea2507f 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/aea-demux: -------------------------------------------------------------------------------- 1 | CRC=0xc1312082 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/bink-demux: -------------------------------------------------------------------------------- 1 | CRC=0x839f34e6 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/caf: -------------------------------------------------------------------------------- 1 | CRC=0x5b74195c 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/creative-adpcm: -------------------------------------------------------------------------------- 1 | 66004779a5e51ca659b21a4197e019e6 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/creative-adpcm-8-2.6bit: -------------------------------------------------------------------------------- 1 | dee4417597abc2db70a175d6809870e7 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/creative-adpcm-8-2bit: -------------------------------------------------------------------------------- 1 | 832846066fbce28821b7f0717c4d3a90 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/creative-adpcm-8-4bit: -------------------------------------------------------------------------------- 1 | 1813d196cef83f7030bb150399b2903e 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/cryo-apc: -------------------------------------------------------------------------------- 1 | 6dcee91d3364f389f804da7a25934b36 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/dpx: -------------------------------------------------------------------------------- 1 | 0, 0, 2359296, 0x30d4d24f 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/duck-dk3: -------------------------------------------------------------------------------- 1 | 62fbe4db4a49cb044f57f92cce9993c5 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/duck-dk4: -------------------------------------------------------------------------------- 1 | 5234b53dde4961dd715a2524d6a8eb75 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/ea-cdata: -------------------------------------------------------------------------------- 1 | db441b7f9c8767ee675002763cd3ae46 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/fax-g3: -------------------------------------------------------------------------------- 1 | 0, 0, 1000384, 0xb758eb8b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/fax-g3s: -------------------------------------------------------------------------------- 1 | 0, 0, 1000384, 0xb758eb8b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/fraps-v1: -------------------------------------------------------------------------------- 1 | 0, 0, 230400, 0x6bc891ff 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/funcom-iss: -------------------------------------------------------------------------------- 1 | 816ca37c22e42f488fd787e3155e59ff 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/idroq-video-encode: -------------------------------------------------------------------------------- 1 | 75df9ce475c1b185fc3dbc219596edd3 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/iff-byterun1: -------------------------------------------------------------------------------- 1 | 0, 0, 230400, 0x35e51c62 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/iff-fibonacci: -------------------------------------------------------------------------------- 1 | e968a853779bb6438339e3b8d69d8d24 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/iff-ilbm: -------------------------------------------------------------------------------- 1 | 0, 0, 230400, 0x0929e342 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/iff-pcm: -------------------------------------------------------------------------------- 1 | 6dc1329541393525a60fd6b9782573f5 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/lossless-appleaudio: -------------------------------------------------------------------------------- 1 | d0beb768d860b4776358077dd9fcb1e9 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/lossless-meridianaudio: -------------------------------------------------------------------------------- 1 | b3d0c9523c42fae639f7074e60281509 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/lossless-monkeysaudio: -------------------------------------------------------------------------------- 1 | a28d4e5f2192057f7d4bece870f40bd0 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/lossless-shortenaudio: -------------------------------------------------------------------------------- 1 | 9949141c405524f37ef1058b1ef4114b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/lossless-tta: -------------------------------------------------------------------------------- 1 | CRC=0xb2b8b6d9 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/lossless-wavpackaudio: -------------------------------------------------------------------------------- 1 | 97223f65c91213694a660d52f87f35aa 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/maxis-xa: -------------------------------------------------------------------------------- 1 | b4cd52fc080bffefeea94ce7c116046f 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/mpc7-demux: -------------------------------------------------------------------------------- 1 | CRC=0xdeb152dd 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/mpc8-demux: -------------------------------------------------------------------------------- 1 | CRC=0x5cdeaf0c 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/mpeg4-als-conformance-00: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/mpeg4-als-conformance-01: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/mpeg4-als-conformance-02: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/mpeg4-als-conformance-03: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/mpeg4-als-conformance-04: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/mpeg4-als-conformance-05: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/mszh: -------------------------------------------------------------------------------- 1 | 0, 0, 253440, 0x94af61e5 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/oma-demux: -------------------------------------------------------------------------------- 1 | CRC=0xdd181a1c 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/pictor: -------------------------------------------------------------------------------- 1 | 0, 0, 192816, 0xf97e2ba1 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/ptx: -------------------------------------------------------------------------------- 1 | 0, 0, 393216, 0xda280efc 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qcp-demux: -------------------------------------------------------------------------------- 1 | CRC=0x4f9f567a 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-alaw-mono: -------------------------------------------------------------------------------- 1 | 7257c296fbba7eedf688fcb667144f7b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-alaw-stereo: -------------------------------------------------------------------------------- 1 | 011d4aecaee697cc861012b7c25b5d40 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-ima4-mono: -------------------------------------------------------------------------------- 1 | 721b51fd66c3bb3dc49dd88d404188eb 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-ima4-stereo: -------------------------------------------------------------------------------- 1 | c9e4c21fb62eca34a533f3a9ad2e394a 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-mac3-mono: -------------------------------------------------------------------------------- 1 | 728d89210e1c90a9185db729b0b6e8c0 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-mac3-stereo: -------------------------------------------------------------------------------- 1 | 2eef3c68fce3d18ec757bcbc0d369698 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-mac6-mono: -------------------------------------------------------------------------------- 1 | eec238d2737365fba15da813e5a7fbc9 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-mac6-stereo: -------------------------------------------------------------------------------- 1 | 2716d66016d8230bcc0fe90586da97a9 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-msadpcm-stereo: -------------------------------------------------------------------------------- 1 | 3b7554e9a186c30adfd2a86bae950f4a 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-msimaadpcm-stereo: -------------------------------------------------------------------------------- 1 | 1ee96f1efc09251a732621049dc5b66e 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-rawpcm-16bit-stereo-signed-be: -------------------------------------------------------------------------------- 1 | f0c0fd7615cdef66fa72f5816632ca9b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-rawpcm-16bit-stereo-signed-le: -------------------------------------------------------------------------------- 1 | 0262b20b728f5bb95594e64e2173b2f2 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-rawpcm-8bit-mono-unsigned: -------------------------------------------------------------------------------- 1 | c2dcec9b230dad733b6b877fbed36755 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-rawpcm-8bit-stereo-unsigned: -------------------------------------------------------------------------------- 1 | 973cf68365c3d58ff60ba652433b3bd2 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-ulaw-mono: -------------------------------------------------------------------------------- 1 | 63075293c68079826146963e94f45ca6 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/qt-ulaw-stereo: -------------------------------------------------------------------------------- 1 | 96316117d444b06b2aa20877f7de36fd 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/real-14_4: -------------------------------------------------------------------------------- 1 | 2da17ae831ea415592c7e6828e3fb69a 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/sierra-audio: -------------------------------------------------------------------------------- 1 | a99402e1f1a0f137608898251b3f309b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/sub-srt: -------------------------------------------------------------------------------- 1 | 03b2a3f7e7e83624c8e4d1b5569df758 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/sunraster-1bit-raw: -------------------------------------------------------------------------------- 1 | 0, 0, 32768, 0x6d16e246 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/sunraster-1bit-rle: -------------------------------------------------------------------------------- 1 | 0, 0, 32768, 0x6d16e246 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/sunraster-24bit-raw: -------------------------------------------------------------------------------- 1 | 0, 0, 786432, 0xb4d417bf 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/sunraster-24bit-rle: -------------------------------------------------------------------------------- 1 | 0, 0, 786432, 0xb4d417bf 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/sunraster-8bit-raw: -------------------------------------------------------------------------------- 1 | 0, 0, 786432, 0xf4364008 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/sunraster-8bit-rle: -------------------------------------------------------------------------------- 1 | 0, 0, 786432, 0xf4364008 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/txd-pal8: -------------------------------------------------------------------------------- 1 | 0, 0, 786432, 0x56654d61 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/v210: -------------------------------------------------------------------------------- 1 | 0, 0, 3686400, 0x8d5c3847 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/vqf-demux: -------------------------------------------------------------------------------- 1 | 48313c746da06b157711b13675f37312 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/w64: -------------------------------------------------------------------------------- 1 | CRC=0xc1e71a5c 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/westwood-aud: -------------------------------------------------------------------------------- 1 | 5c2528488729035c17c21486797a2a23 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/ws_snd: -------------------------------------------------------------------------------- 1 | 023317c7876aa5271f086f753d84561b 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/xan-dpcm: -------------------------------------------------------------------------------- 1 | b6da857766896ab10bb900004f915053 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/tests/ref/fate/zlib: -------------------------------------------------------------------------------- 1 | 0, 0, 253440, 0x94af61e5 2 | -------------------------------------------------------------------------------- /lib/ffmpeg/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/ffmpeg/version.sh -------------------------------------------------------------------------------- /lib/freetype/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/ChangeLog -------------------------------------------------------------------------------- /lib/freetype/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/Jamfile -------------------------------------------------------------------------------- /lib/freetype/Jamrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/Jamrules -------------------------------------------------------------------------------- /lib/freetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/Makefile -------------------------------------------------------------------------------- /lib/freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/README -------------------------------------------------------------------------------- /lib/freetype/README.CVS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/README.CVS -------------------------------------------------------------------------------- /lib/freetype/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/autogen.sh -------------------------------------------------------------------------------- /lib/freetype/builds/newline: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/freetype/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/configure -------------------------------------------------------------------------------- /lib/freetype/docs/DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/docs/DEBUG -------------------------------------------------------------------------------- /lib/freetype/docs/MAKEPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/docs/MAKEPP -------------------------------------------------------------------------------- /lib/freetype/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/docs/TODO -------------------------------------------------------------------------------- /lib/freetype/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/modules.cfg -------------------------------------------------------------------------------- /lib/freetype/objs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/objs/README -------------------------------------------------------------------------------- /lib/freetype/src/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/src/Jamfile -------------------------------------------------------------------------------- /lib/freetype/version.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/freetype/version.sed -------------------------------------------------------------------------------- /lib/libRTV/GuideParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/GuideParser.h -------------------------------------------------------------------------------- /lib/libRTV/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/Makefile.in -------------------------------------------------------------------------------- /lib/libRTV/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/crypt.c -------------------------------------------------------------------------------- /lib/libRTV/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/crypt.h -------------------------------------------------------------------------------- /lib/libRTV/guideclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/guideclient.c -------------------------------------------------------------------------------- /lib/libRTV/guideclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/guideclient.h -------------------------------------------------------------------------------- /lib/libRTV/httpclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/httpclient.c -------------------------------------------------------------------------------- /lib/libRTV/httpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/httpclient.h -------------------------------------------------------------------------------- /lib/libRTV/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/interface.c -------------------------------------------------------------------------------- /lib/libRTV/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/interface.h -------------------------------------------------------------------------------- /lib/libRTV/libRTV.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/libRTV.lib -------------------------------------------------------------------------------- /lib/libRTV/libRTV.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/libRTV.sln -------------------------------------------------------------------------------- /lib/libRTV/libRTV.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/libRTV.vcproj -------------------------------------------------------------------------------- /lib/libRTV/libRTVd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/libRTVd.lib -------------------------------------------------------------------------------- /lib/libRTV/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/md5.c -------------------------------------------------------------------------------- /lib/libRTV/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/md5.h -------------------------------------------------------------------------------- /lib/libRTV/netclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/netclient.c -------------------------------------------------------------------------------- /lib/libRTV/netclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/netclient.h -------------------------------------------------------------------------------- /lib/libRTV/rtv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/rtv.c -------------------------------------------------------------------------------- /lib/libRTV/rtv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/rtv.h -------------------------------------------------------------------------------- /lib/libRTV/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/sleep.c -------------------------------------------------------------------------------- /lib/libRTV/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libRTV/sleep.h -------------------------------------------------------------------------------- /lib/libUPnP/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libUPnP/Makefile.in -------------------------------------------------------------------------------- /lib/libUPnP/Neptune/SConstruct: -------------------------------------------------------------------------------- 1 | SConscript('Build/Boot.scons') 2 | -------------------------------------------------------------------------------- /lib/libUPnP/Neptune/Source/Core/Neptune.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/libUPnP/Neptune/Source/Core/NptDefs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/libUPnP/Neptune/ThirdParty/axTLS/ssl/version.h: -------------------------------------------------------------------------------- 1 | #define AXTLS_VERSION "(no version)" 2 | -------------------------------------------------------------------------------- /lib/libUPnP/Platinum/SConstruct: -------------------------------------------------------------------------------- 1 | SConscript('Build/Boot.scons') 2 | -------------------------------------------------------------------------------- /lib/libXDAAP/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/Makefile.in -------------------------------------------------------------------------------- /lib/libXDAAP/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/ReadMe.txt -------------------------------------------------------------------------------- /lib/libXDAAP/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/client.h -------------------------------------------------------------------------------- /lib/libXDAAP/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/compat.h -------------------------------------------------------------------------------- /lib/libXDAAP/daap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/daap.c -------------------------------------------------------------------------------- /lib/libXDAAP/daap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/daap.h -------------------------------------------------------------------------------- /lib/libXDAAP/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/debug.c -------------------------------------------------------------------------------- /lib/libXDAAP/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/debug.h -------------------------------------------------------------------------------- /lib/libXDAAP/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/global.c -------------------------------------------------------------------------------- /lib/libXDAAP/ioloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/ioloop.c -------------------------------------------------------------------------------- /lib/libXDAAP/ioloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/ioloop.h -------------------------------------------------------------------------------- /lib/libXDAAP/libXDAAP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/libXDAAP.c -------------------------------------------------------------------------------- /lib/libXDAAP/libXDAAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/libXDAAP.h -------------------------------------------------------------------------------- /lib/libXDAAP/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/private.h -------------------------------------------------------------------------------- /lib/libXDAAP/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/thread.h -------------------------------------------------------------------------------- /lib/libXDAAP/threadlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/threadlib.h -------------------------------------------------------------------------------- /lib/libXDAAP/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libXDAAP/types.h -------------------------------------------------------------------------------- /lib/libapetag/AUTHORS: -------------------------------------------------------------------------------- 1 | Artur Polaczynski (Ar't) 2 | -------------------------------------------------------------------------------- /lib/libapetag/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libapetag/COPYING -------------------------------------------------------------------------------- /lib/libapetag/ChangeLog: -------------------------------------------------------------------------------- 1 | No entries yet 2 | 3 | -------------------------------------------------------------------------------- /lib/libapetag/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/libapetag/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libapetag/README -------------------------------------------------------------------------------- /lib/libapetag/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libapetag/bootstrap -------------------------------------------------------------------------------- /lib/libapetag/file_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libapetag/file_io.c -------------------------------------------------------------------------------- /lib/libapetag/file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libapetag/file_io.h -------------------------------------------------------------------------------- /lib/libapetag/genres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libapetag/genres.h -------------------------------------------------------------------------------- /lib/libapetag/info_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libapetag/info_mac.c -------------------------------------------------------------------------------- /lib/libapetag/info_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libapetag/info_mac.h -------------------------------------------------------------------------------- /lib/libapetag/info_mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libapetag/info_mpc.c -------------------------------------------------------------------------------- /lib/libapetag/info_mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libapetag/info_mpc.h -------------------------------------------------------------------------------- /lib/libapetag/is_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libapetag/is_tag.c -------------------------------------------------------------------------------- /lib/libapetag/is_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libapetag/is_tag.h -------------------------------------------------------------------------------- /lib/libapetag/m4/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/libass/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libass/COPYING -------------------------------------------------------------------------------- /lib/libass/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libass/Changelog -------------------------------------------------------------------------------- /lib/libass/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libass/Makefile.am -------------------------------------------------------------------------------- /lib/libass/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libass/configure.ac -------------------------------------------------------------------------------- /lib/libass/libass.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libass/libass.pc.in -------------------------------------------------------------------------------- /lib/libass/libass/ass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libass/libass/ass.c -------------------------------------------------------------------------------- /lib/libass/libass/ass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libass/libass/ass.h -------------------------------------------------------------------------------- /lib/libass/m4/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/libass/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libass/test/test.c -------------------------------------------------------------------------------- /lib/libbluray/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libbluray/Makefile -------------------------------------------------------------------------------- /lib/libcec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libcec/Makefile -------------------------------------------------------------------------------- /lib/libdvd/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libdvd/Makefile.in -------------------------------------------------------------------------------- /lib/libdvd/includes/dvdcss/.ignoreme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/libdvd/libdvdcss/doc/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /lib/libdvd/libdvdnav/.relignore: -------------------------------------------------------------------------------- 1 | autom4te.cache 2 | config.status 3 | -------------------------------------------------------------------------------- /lib/libdvd/libdvdnav/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION "4.1.3" 2 | -------------------------------------------------------------------------------- /lib/libdvd/libdvdread/.relignore: -------------------------------------------------------------------------------- 1 | autom4te.cache 2 | config.status 3 | -------------------------------------------------------------------------------- /lib/libdvd/libdvdread/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION "4.1.3" 2 | -------------------------------------------------------------------------------- /lib/libexif/ExifParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libexif/ExifParse.h -------------------------------------------------------------------------------- /lib/libexif/IptcParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libexif/IptcParse.h -------------------------------------------------------------------------------- /lib/libexif/JpegParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libexif/JpegParse.h -------------------------------------------------------------------------------- /lib/libexif/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libexif/Makefile.in -------------------------------------------------------------------------------- /lib/libexif/libexif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libexif/libexif.cpp -------------------------------------------------------------------------------- /lib/libexif/libexif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libexif/libexif.h -------------------------------------------------------------------------------- /lib/libexif/libexif.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libexif/libexif.sln -------------------------------------------------------------------------------- /lib/libhdhomerun/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhdhomerun/README -------------------------------------------------------------------------------- /lib/libhts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/Makefile -------------------------------------------------------------------------------- /lib/libhts/hts_strtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/hts_strtab.h -------------------------------------------------------------------------------- /lib/libhts/htsatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/htsatomic.c -------------------------------------------------------------------------------- /lib/libhts/htsatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/htsatomic.h -------------------------------------------------------------------------------- /lib/libhts/htsbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/htsbuf.c -------------------------------------------------------------------------------- /lib/libhts/htsbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/htsbuf.h -------------------------------------------------------------------------------- /lib/libhts/htsmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/htsmsg.c -------------------------------------------------------------------------------- /lib/libhts/htsmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/htsmsg.h -------------------------------------------------------------------------------- /lib/libhts/htsq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/htsq.h -------------------------------------------------------------------------------- /lib/libhts/htsstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/htsstr.c -------------------------------------------------------------------------------- /lib/libhts/htsstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/htsstr.h -------------------------------------------------------------------------------- /lib/libhts/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/net.h -------------------------------------------------------------------------------- /lib/libhts/net_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/net_posix.c -------------------------------------------------------------------------------- /lib/libhts/net_winsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/net_winsock.c -------------------------------------------------------------------------------- /lib/libhts/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/sha1.c -------------------------------------------------------------------------------- /lib/libhts/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libhts/sha1.h -------------------------------------------------------------------------------- /lib/libid3tag/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libid3tag/README -------------------------------------------------------------------------------- /lib/libid3tag/id3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libid3tag/id3.sln -------------------------------------------------------------------------------- /lib/libid3tag/libid3tag/AUTHORS: -------------------------------------------------------------------------------- 1 | # intentionally left blank # 2 | -------------------------------------------------------------------------------- /lib/libid3tag/libid3tag/ChangeLog: -------------------------------------------------------------------------------- 1 | # intentionally left blank # 2 | -------------------------------------------------------------------------------- /lib/libid3tag/libid3tag/NEWS: -------------------------------------------------------------------------------- 1 | # intentionally left blank # 2 | -------------------------------------------------------------------------------- /lib/libid3tag/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libid3tag/readme.txt -------------------------------------------------------------------------------- /lib/libid3tag/testdriver/testdriver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /lib/libid3tag/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libid3tag/zlib/FAQ -------------------------------------------------------------------------------- /lib/libid3tag/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libid3tag/zlib/INDEX -------------------------------------------------------------------------------- /lib/liblame/ACM/ACM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/ACM/ACM.cpp -------------------------------------------------------------------------------- /lib/liblame/ACM/ACM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/ACM/ACM.h -------------------------------------------------------------------------------- /lib/liblame/ACM/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/ACM/TODO -------------------------------------------------------------------------------- /lib/liblame/ACM/acm.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/ACM/acm.rc -------------------------------------------------------------------------------- /lib/liblame/ACM/adebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/ACM/adebug.h -------------------------------------------------------------------------------- /lib/liblame/ACM/lame.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/ACM/lame.ico -------------------------------------------------------------------------------- /lib/liblame/ACM/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/ACM/main.cpp -------------------------------------------------------------------------------- /lib/liblame/API: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/API -------------------------------------------------------------------------------- /lib/liblame/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/COPYING -------------------------------------------------------------------------------- /lib/liblame/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/ChangeLog -------------------------------------------------------------------------------- /lib/liblame/DEFINES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/DEFINES -------------------------------------------------------------------------------- /lib/liblame/Dll/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/Dll/README -------------------------------------------------------------------------------- /lib/liblame/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/HACKING -------------------------------------------------------------------------------- /lib/liblame/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/INSTALL -------------------------------------------------------------------------------- /lib/liblame/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/LICENSE -------------------------------------------------------------------------------- /lib/liblame/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/Makefile.am -------------------------------------------------------------------------------- /lib/liblame/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/Makefile.in -------------------------------------------------------------------------------- /lib/liblame/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/README -------------------------------------------------------------------------------- /lib/liblame/STYLEGUIDE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/STYLEGUIDE -------------------------------------------------------------------------------- /lib/liblame/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/TODO -------------------------------------------------------------------------------- /lib/liblame/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/USAGE -------------------------------------------------------------------------------- /lib/liblame/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/acinclude.m4 -------------------------------------------------------------------------------- /lib/liblame/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/aclocal.m4 -------------------------------------------------------------------------------- /lib/liblame/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/config.guess -------------------------------------------------------------------------------- /lib/liblame/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/config.h.in -------------------------------------------------------------------------------- /lib/liblame/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/config.sub -------------------------------------------------------------------------------- /lib/liblame/configMS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/configMS.h -------------------------------------------------------------------------------- /lib/liblame/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/configure -------------------------------------------------------------------------------- /lib/liblame/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/configure.in -------------------------------------------------------------------------------- /lib/liblame/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /lib/liblame/debian/lame.docs: -------------------------------------------------------------------------------- 1 | USAGE 2 | -------------------------------------------------------------------------------- /lib/liblame/debian/libmp3lame0-dev.docs: -------------------------------------------------------------------------------- 1 | API 2 | HACKING 3 | README 4 | STYLEGUIDE 5 | TODO 6 | -------------------------------------------------------------------------------- /lib/liblame/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/debian/rules -------------------------------------------------------------------------------- /lib/liblame/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/depcomp -------------------------------------------------------------------------------- /lib/liblame/dshow/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/dshow/README -------------------------------------------------------------------------------- /lib/liblame/dshow/REG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/dshow/REG.H -------------------------------------------------------------------------------- /lib/liblame/dshow/UIDS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/dshow/UIDS.H -------------------------------------------------------------------------------- /lib/liblame/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/install-sh -------------------------------------------------------------------------------- /lib/liblame/lame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/lame.bat -------------------------------------------------------------------------------- /lib/liblame/lame.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/lame.spec -------------------------------------------------------------------------------- /lib/liblame/lame.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/lame.spec.in -------------------------------------------------------------------------------- /lib/liblame/lame_vc6.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/lame_vc6.dsw -------------------------------------------------------------------------------- /lib/liblame/lame_vc8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/lame_vc8.sln -------------------------------------------------------------------------------- /lib/liblame/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/ltmain.sh -------------------------------------------------------------------------------- /lib/liblame/mac/LAME.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/mac/LAME.mcp -------------------------------------------------------------------------------- /lib/liblame/mac/MacDLLMain.c: -------------------------------------------------------------------------------- 1 | /* MacDLLMain.c */ int main() { return 0; } -------------------------------------------------------------------------------- /lib/liblame/misc/abx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/misc/abx.c -------------------------------------------------------------------------------- /lib/liblame/misc/ath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/misc/ath.c -------------------------------------------------------------------------------- /lib/liblame/misc/auenc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/misc/auenc -------------------------------------------------------------------------------- /lib/liblame/misc/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/misc/depcomp -------------------------------------------------------------------------------- /lib/liblame/misc/mlame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/misc/mlame -------------------------------------------------------------------------------- /lib/liblame/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/missing -------------------------------------------------------------------------------- /lib/liblame/testcase.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/testcase.mp3 -------------------------------------------------------------------------------- /lib/liblame/testcase.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/liblame/testcase.wav -------------------------------------------------------------------------------- /lib/libmad/AUTHORS: -------------------------------------------------------------------------------- 1 | # intentionally left blank # 2 | -------------------------------------------------------------------------------- /lib/libmad/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/CHANGES -------------------------------------------------------------------------------- /lib/libmad/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/COPYING -------------------------------------------------------------------------------- /lib/libmad/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/COPYRIGHT -------------------------------------------------------------------------------- /lib/libmad/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/CREDITS -------------------------------------------------------------------------------- /lib/libmad/ChangeLog: -------------------------------------------------------------------------------- 1 | # intentionally left blank # 2 | -------------------------------------------------------------------------------- /lib/libmad/D.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/D.dat -------------------------------------------------------------------------------- /lib/libmad/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/INSTALL -------------------------------------------------------------------------------- /lib/libmad/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/Makefile.am -------------------------------------------------------------------------------- /lib/libmad/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/Makefile.in -------------------------------------------------------------------------------- /lib/libmad/NEWS: -------------------------------------------------------------------------------- 1 | # intentionally left blank # 2 | -------------------------------------------------------------------------------- /lib/libmad/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/README -------------------------------------------------------------------------------- /lib/libmad/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/TODO -------------------------------------------------------------------------------- /lib/libmad/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/VERSION -------------------------------------------------------------------------------- /lib/libmad/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/aclocal.m4 -------------------------------------------------------------------------------- /lib/libmad/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/bit.c -------------------------------------------------------------------------------- /lib/libmad/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/bit.h -------------------------------------------------------------------------------- /lib/libmad/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/config.guess -------------------------------------------------------------------------------- /lib/libmad/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/config.h.in -------------------------------------------------------------------------------- /lib/libmad/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/config.sub -------------------------------------------------------------------------------- /lib/libmad/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/configure -------------------------------------------------------------------------------- /lib/libmad/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/configure.ac -------------------------------------------------------------------------------- /lib/libmad/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/decoder.c -------------------------------------------------------------------------------- /lib/libmad/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/decoder.h -------------------------------------------------------------------------------- /lib/libmad/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/depcomp -------------------------------------------------------------------------------- /lib/libmad/fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/fixed.c -------------------------------------------------------------------------------- /lib/libmad/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/fixed.h -------------------------------------------------------------------------------- /lib/libmad/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/frame.c -------------------------------------------------------------------------------- /lib/libmad/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/frame.h -------------------------------------------------------------------------------- /lib/libmad/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/global.h -------------------------------------------------------------------------------- /lib/libmad/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/huffman.c -------------------------------------------------------------------------------- /lib/libmad/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/huffman.h -------------------------------------------------------------------------------- /lib/libmad/imdct_l_arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/imdct_l_arm.S -------------------------------------------------------------------------------- /lib/libmad/imdct_s.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/imdct_s.dat -------------------------------------------------------------------------------- /lib/libmad/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/install-sh -------------------------------------------------------------------------------- /lib/libmad/layer12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/layer12.c -------------------------------------------------------------------------------- /lib/libmad/layer12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/layer12.h -------------------------------------------------------------------------------- /lib/libmad/layer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/layer3.c -------------------------------------------------------------------------------- /lib/libmad/layer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/layer3.h -------------------------------------------------------------------------------- /lib/libmad/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/ltmain.sh -------------------------------------------------------------------------------- /lib/libmad/mad.h.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/mad.h.sed -------------------------------------------------------------------------------- /lib/libmad/minimad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/minimad.c -------------------------------------------------------------------------------- /lib/libmad/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/missing -------------------------------------------------------------------------------- /lib/libmad/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/mkinstalldirs -------------------------------------------------------------------------------- /lib/libmad/msvc++/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/msvc++/mad.h -------------------------------------------------------------------------------- /lib/libmad/qc_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/qc_table.dat -------------------------------------------------------------------------------- /lib/libmad/rq_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/rq_table.dat -------------------------------------------------------------------------------- /lib/libmad/sf_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/sf_table.dat -------------------------------------------------------------------------------- /lib/libmad/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/stream.c -------------------------------------------------------------------------------- /lib/libmad/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/stream.h -------------------------------------------------------------------------------- /lib/libmad/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/synth.c -------------------------------------------------------------------------------- /lib/libmad/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/synth.h -------------------------------------------------------------------------------- /lib/libmad/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/timer.c -------------------------------------------------------------------------------- /lib/libmad/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/timer.h -------------------------------------------------------------------------------- /lib/libmad/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/version.c -------------------------------------------------------------------------------- /lib/libmad/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmad/version.h -------------------------------------------------------------------------------- /lib/libmicrohttpd/NEWS: -------------------------------------------------------------------------------- 1 | Tue Jan 9 20:52:48 MST 2007 2 | Project posted. 3 | -------------------------------------------------------------------------------- /lib/libmicrohttpd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmicrohttpd/README -------------------------------------------------------------------------------- /lib/libmicrohttpd/contrib/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = xcc ascebc -------------------------------------------------------------------------------- /lib/libmicrohttpd/m4/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = libcurl.m4 -------------------------------------------------------------------------------- /lib/libmodplug/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmodplug/AUTHORS -------------------------------------------------------------------------------- /lib/libmodplug/COPYING: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. -------------------------------------------------------------------------------- /lib/libmodplug/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmodplug/ChangeLog -------------------------------------------------------------------------------- /lib/libmodplug/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmodplug/INSTALL -------------------------------------------------------------------------------- /lib/libmodplug/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmodplug/NEWS -------------------------------------------------------------------------------- /lib/libmodplug/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmodplug/README -------------------------------------------------------------------------------- /lib/libmodplug/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmodplug/TODO -------------------------------------------------------------------------------- /lib/libmodplug/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmodplug/configure -------------------------------------------------------------------------------- /lib/libmodplug/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmodplug/depcomp -------------------------------------------------------------------------------- /lib/libmodplug/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmodplug/ltmain.sh -------------------------------------------------------------------------------- /lib/libmodplug/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmodplug/missing -------------------------------------------------------------------------------- /lib/libmpeg2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/AUTHORS -------------------------------------------------------------------------------- /lib/libmpeg2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/COPYING -------------------------------------------------------------------------------- /lib/libmpeg2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/ChangeLog -------------------------------------------------------------------------------- /lib/libmpeg2/CodingStyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/CodingStyle -------------------------------------------------------------------------------- /lib/libmpeg2/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/INSTALL -------------------------------------------------------------------------------- /lib/libmpeg2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/Makefile.am -------------------------------------------------------------------------------- /lib/libmpeg2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/Makefile.in -------------------------------------------------------------------------------- /lib/libmpeg2/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/NEWS -------------------------------------------------------------------------------- /lib/libmpeg2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/README -------------------------------------------------------------------------------- /lib/libmpeg2/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/TODO -------------------------------------------------------------------------------- /lib/libmpeg2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/aclocal.m4 -------------------------------------------------------------------------------- /lib/libmpeg2/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/bootstrap -------------------------------------------------------------------------------- /lib/libmpeg2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libmpeg2/configure -------------------------------------------------------------------------------- /lib/libnfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libnfs/Makefile -------------------------------------------------------------------------------- /lib/librtmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/librtmp/Makefile -------------------------------------------------------------------------------- /lib/libsidplay2/libsidplay/src/.deps/config.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lib/libsidplay2/libsidplay/src/.deps/event.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lib/libsidplay2/libsidplay/src/.deps/mixer.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lib/libsidplay2/libsidplay/src/.deps/player.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lib/libsidplay2/libsidplay/src/.deps/psiddrv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lib/libsidplay2/libsidplay/src/.deps/reloc65.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lib/libsidplay2/libsidplay/src/.deps/sidplay2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lib/libsidplay2/libsidplay/unix/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for unix/config.h 2 | -------------------------------------------------------------------------------- /lib/libsidplay2/libsidutils/TODO: -------------------------------------------------------------------------------- 1 | * Add playlist support 2 | -------------------------------------------------------------------------------- /lib/libsquish/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libsquish/README -------------------------------------------------------------------------------- /lib/libsquish/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libsquish/alpha.h -------------------------------------------------------------------------------- /lib/libsquish/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libsquish/config -------------------------------------------------------------------------------- /lib/libsquish/maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libsquish/maths.h -------------------------------------------------------------------------------- /lib/libsquish/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/libsquish/simd.h -------------------------------------------------------------------------------- /lib/nosefart/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/nosefart/COPYING -------------------------------------------------------------------------------- /lib/platform/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/platform/os.h -------------------------------------------------------------------------------- /lib/snesapu/A2Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/snesapu/A2Misc.h -------------------------------------------------------------------------------- /lib/snesapu/Macro.Inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/snesapu/Macro.Inc -------------------------------------------------------------------------------- /lib/snesapu/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/snesapu/Types.h -------------------------------------------------------------------------------- /lib/snesapu/lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/snesapu/lgpl.txt -------------------------------------------------------------------------------- /lib/timidity/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/timidity/AUTHORS -------------------------------------------------------------------------------- /lib/timidity/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/timidity/COPYING -------------------------------------------------------------------------------- /lib/timidity/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/timidity/INSTALL -------------------------------------------------------------------------------- /lib/timidity/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/timidity/NEWS -------------------------------------------------------------------------------- /lib/timidity/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/timidity/README -------------------------------------------------------------------------------- /lib/timidity/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/timidity/TODO -------------------------------------------------------------------------------- /lib/timidity/interface/interface_T.txt: -------------------------------------------------------------------------------- 1 | vt100 interface 2 | -------------------------------------------------------------------------------- /lib/timidity/interface/interface_a.txt: -------------------------------------------------------------------------------- 1 | Xaw interface 2 | -------------------------------------------------------------------------------- /lib/timidity/interface/interface_e.txt: -------------------------------------------------------------------------------- 1 | Emacs interface (invoked from `M-x timidity') 2 | -------------------------------------------------------------------------------- /lib/timidity/interface/interface_g.txt: -------------------------------------------------------------------------------- 1 | gtk+ interface 2 | -------------------------------------------------------------------------------- /lib/timidity/interface/interface_i.txt: -------------------------------------------------------------------------------- 1 | X Skin interface 2 | -------------------------------------------------------------------------------- /lib/timidity/interface/interface_k.txt: -------------------------------------------------------------------------------- 1 | Tcl/Tk interface 2 | -------------------------------------------------------------------------------- /lib/timidity/interface/interface_m.txt: -------------------------------------------------------------------------------- 1 | Motif interface 2 | -------------------------------------------------------------------------------- /lib/timidity/interface/interface_n.txt: -------------------------------------------------------------------------------- 1 | ncurses interface 2 | -------------------------------------------------------------------------------- /lib/timidity/interface/interface_s.txt: -------------------------------------------------------------------------------- 1 | slang interface 2 | -------------------------------------------------------------------------------- /lib/vgmstream/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/vgmstream/COPYING -------------------------------------------------------------------------------- /lib/vgmstream/src/meta/ngc_iadp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/win32/pcre/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/win32/pcre/NEWS -------------------------------------------------------------------------------- /lib/win32/pcre/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/win32/pcre/README -------------------------------------------------------------------------------- /lib/win32/pcre/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/win32/pcre/pcre.h -------------------------------------------------------------------------------- /lib/win32/pcre/ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/win32/pcre/ucp.h -------------------------------------------------------------------------------- /lib/xbadpcm/adpcm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/xbadpcm/adpcm.sln -------------------------------------------------------------------------------- /lib/xbadpcm/mywav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/lib/xbadpcm/mywav.h -------------------------------------------------------------------------------- /m4/ax_python_devel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/m4/ax_python_devel.m4 -------------------------------------------------------------------------------- /media/Fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/media/Fonts/arial.ttf -------------------------------------------------------------------------------- /media/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/media/Splash.png -------------------------------------------------------------------------------- /media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/media/icon.png -------------------------------------------------------------------------------- /media/icon32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/media/icon32x32.png -------------------------------------------------------------------------------- /media/weather.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/media/weather.zip -------------------------------------------------------------------------------- /media/xbmc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/media/xbmc.icns -------------------------------------------------------------------------------- /system/IRSSmap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/system/IRSSmap.xml -------------------------------------------------------------------------------- /system/Lircmap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/system/Lircmap.xml -------------------------------------------------------------------------------- /system/asound.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/system/asound.conf -------------------------------------------------------------------------------- /system/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/system/colors.xml -------------------------------------------------------------------------------- /tools/Linux/FEH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/tools/Linux/FEH.py -------------------------------------------------------------------------------- /tools/UpdateThumbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/tools/UpdateThumbs.py -------------------------------------------------------------------------------- /tools/darwin/depends/bootstrap: -------------------------------------------------------------------------------- 1 | autoconf 2 | -------------------------------------------------------------------------------- /userdata/LCD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/userdata/LCD.xml -------------------------------------------------------------------------------- /userdata/RssFeeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/userdata/RssFeeds.xml -------------------------------------------------------------------------------- /xbmc-xrandr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc-xrandr.c -------------------------------------------------------------------------------- /xbmc/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/Application.cpp -------------------------------------------------------------------------------- /xbmc/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/Application.h -------------------------------------------------------------------------------- /xbmc/AutoSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/AutoSwitch.cpp -------------------------------------------------------------------------------- /xbmc/AutoSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/AutoSwitch.h -------------------------------------------------------------------------------- /xbmc/Autorun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/Autorun.cpp -------------------------------------------------------------------------------- /xbmc/Autorun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/Autorun.h -------------------------------------------------------------------------------- /xbmc/CueDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/CueDocument.cpp -------------------------------------------------------------------------------- /xbmc/CueDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/CueDocument.h -------------------------------------------------------------------------------- /xbmc/DllPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/DllPaths.h -------------------------------------------------------------------------------- /xbmc/DllPaths_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/DllPaths_win32.h -------------------------------------------------------------------------------- /xbmc/DynamicDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/DynamicDll.cpp -------------------------------------------------------------------------------- /xbmc/DynamicDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/DynamicDll.h -------------------------------------------------------------------------------- /xbmc/Favourites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/Favourites.cpp -------------------------------------------------------------------------------- /xbmc/Favourites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/Favourites.h -------------------------------------------------------------------------------- /xbmc/FileItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/FileItem.cpp -------------------------------------------------------------------------------- /xbmc/FileItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/FileItem.h -------------------------------------------------------------------------------- /xbmc/GUIInfoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/GUIInfoManager.h -------------------------------------------------------------------------------- /xbmc/GUIPassword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/GUIPassword.cpp -------------------------------------------------------------------------------- /xbmc/GUIPassword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/GUIPassword.h -------------------------------------------------------------------------------- /xbmc/GUIViewControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/GUIViewControl.h -------------------------------------------------------------------------------- /xbmc/GUIViewState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/GUIViewState.cpp -------------------------------------------------------------------------------- /xbmc/GUIViewState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/GUIViewState.h -------------------------------------------------------------------------------- /xbmc/LangInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/LangInfo.cpp -------------------------------------------------------------------------------- /xbmc/LangInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/LangInfo.h -------------------------------------------------------------------------------- /xbmc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/Makefile.in -------------------------------------------------------------------------------- /xbmc/MediaSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/MediaSource.cpp -------------------------------------------------------------------------------- /xbmc/MediaSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/MediaSource.h -------------------------------------------------------------------------------- /xbmc/NfoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/NfoFile.cpp -------------------------------------------------------------------------------- /xbmc/NfoFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/NfoFile.h -------------------------------------------------------------------------------- /xbmc/PlayListPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/PlayListPlayer.h -------------------------------------------------------------------------------- /xbmc/SectionLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/SectionLoader.h -------------------------------------------------------------------------------- /xbmc/SortFileItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/SortFileItem.cpp -------------------------------------------------------------------------------- /xbmc/SortFileItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/SortFileItem.h -------------------------------------------------------------------------------- /xbmc/Temperature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/Temperature.cpp -------------------------------------------------------------------------------- /xbmc/Temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/Temperature.h -------------------------------------------------------------------------------- /xbmc/TextureCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/TextureCache.cpp -------------------------------------------------------------------------------- /xbmc/TextureCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/TextureCache.h -------------------------------------------------------------------------------- /xbmc/ThumbLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/ThumbLoader.cpp -------------------------------------------------------------------------------- /xbmc/ThumbLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/ThumbLoader.h -------------------------------------------------------------------------------- /xbmc/ThumbnailCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/ThumbnailCache.h -------------------------------------------------------------------------------- /xbmc/URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/URL.cpp -------------------------------------------------------------------------------- /xbmc/URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/URL.h -------------------------------------------------------------------------------- /xbmc/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/Util.cpp -------------------------------------------------------------------------------- /xbmc/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/Util.h -------------------------------------------------------------------------------- /xbmc/ViewDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/ViewDatabase.cpp -------------------------------------------------------------------------------- /xbmc/ViewDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/ViewDatabase.h -------------------------------------------------------------------------------- /xbmc/ViewState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/ViewState.h -------------------------------------------------------------------------------- /xbmc/XBDateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/XBDateTime.cpp -------------------------------------------------------------------------------- /xbmc/XBDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/XBDateTime.h -------------------------------------------------------------------------------- /xbmc/addons/Addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/addons/Addon.cpp -------------------------------------------------------------------------------- /xbmc/addons/Addon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/addons/Addon.h -------------------------------------------------------------------------------- /xbmc/addons/IAddon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/addons/IAddon.h -------------------------------------------------------------------------------- /xbmc/addons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/addons/Makefile -------------------------------------------------------------------------------- /xbmc/addons/Scraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/addons/Scraper.h -------------------------------------------------------------------------------- /xbmc/addons/Service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/addons/Service.h -------------------------------------------------------------------------------- /xbmc/addons/Skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/addons/Skin.cpp -------------------------------------------------------------------------------- /xbmc/addons/Skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/addons/Skin.h -------------------------------------------------------------------------------- /xbmc/cdrip/DllOgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/cdrip/DllOgg.h -------------------------------------------------------------------------------- /xbmc/cdrip/Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/cdrip/Encoder.h -------------------------------------------------------------------------------- /xbmc/cores/AudioRenderers/Makefile.include: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xbmc/cores/IPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/cores/IPlayer.h -------------------------------------------------------------------------------- /xbmc/dialogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/dialogs/Makefile -------------------------------------------------------------------------------- /xbmc/epg/Epg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/epg/Epg.cpp -------------------------------------------------------------------------------- /xbmc/epg/Epg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/epg/Epg.h -------------------------------------------------------------------------------- /xbmc/epg/EpgInfoTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/epg/EpgInfoTag.h -------------------------------------------------------------------------------- /xbmc/epg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/epg/Makefile -------------------------------------------------------------------------------- /xbmc/guilib/GUIFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/guilib/GUIFont.h -------------------------------------------------------------------------------- /xbmc/guilib/JpegIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/guilib/JpegIO.h -------------------------------------------------------------------------------- /xbmc/guilib/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/guilib/Key.cpp -------------------------------------------------------------------------------- /xbmc/guilib/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/guilib/Key.h -------------------------------------------------------------------------------- /xbmc/guilib/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/guilib/Shader.h -------------------------------------------------------------------------------- /xbmc/guilib/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/guilib/Texture.h -------------------------------------------------------------------------------- /xbmc/guilib/Tween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/guilib/Tween.h -------------------------------------------------------------------------------- /xbmc/guilib/XBTF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/guilib/XBTF.cpp -------------------------------------------------------------------------------- /xbmc/guilib/XBTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/guilib/XBTF.h -------------------------------------------------------------------------------- /xbmc/guilib/gui3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/guilib/gui3d.h -------------------------------------------------------------------------------- /xbmc/input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/input/Makefile -------------------------------------------------------------------------------- /xbmc/linux/DBusUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/linux/DBusUtil.h -------------------------------------------------------------------------------- /xbmc/linux/XHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/linux/XHandle.h -------------------------------------------------------------------------------- /xbmc/linux/XLCDproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/linux/XLCDproc.h -------------------------------------------------------------------------------- /xbmc/music/Album.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/music/Album.cpp -------------------------------------------------------------------------------- /xbmc/music/Album.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/music/Album.h -------------------------------------------------------------------------------- /xbmc/music/Artist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/music/Artist.cpp -------------------------------------------------------------------------------- /xbmc/music/Artist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/music/Artist.h -------------------------------------------------------------------------------- /xbmc/music/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/music/Makefile -------------------------------------------------------------------------------- /xbmc/music/Song.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/music/Song.cpp -------------------------------------------------------------------------------- /xbmc/music/Song.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/music/Song.h -------------------------------------------------------------------------------- /xbmc/music/tags/Tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/music/tags/Tag.h -------------------------------------------------------------------------------- /xbmc/network/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/network/Socket.h -------------------------------------------------------------------------------- /xbmc/network/UPnP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/network/UPnP.cpp -------------------------------------------------------------------------------- /xbmc/network/UPnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/network/UPnP.h -------------------------------------------------------------------------------- /xbmc/network/cddb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/network/cddb.cpp -------------------------------------------------------------------------------- /xbmc/network/cddb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/network/cddb.h -------------------------------------------------------------------------------- /xbmc/osx/AutoPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/osx/AutoPool.h -------------------------------------------------------------------------------- /xbmc/osx/AutoPool.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/osx/AutoPool.mm -------------------------------------------------------------------------------- /xbmc/osx/CoreAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/osx/CoreAudio.h -------------------------------------------------------------------------------- /xbmc/osx/Credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/osx/Credits.html -------------------------------------------------------------------------------- /xbmc/osx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/osx/Info.plist -------------------------------------------------------------------------------- /xbmc/osx/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/osx/Makefile.in -------------------------------------------------------------------------------- /xbmc/osx/SDLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/osx/SDLMain.h -------------------------------------------------------------------------------- /xbmc/osx/SDLMain.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/osx/SDLMain.mm -------------------------------------------------------------------------------- /xbmc/osx/XBMCHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/osx/XBMCHelper.h -------------------------------------------------------------------------------- /xbmc/osx/eprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/osx/eprintf.cpp -------------------------------------------------------------------------------- /xbmc/osx/ios/XBMC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/osx/ios/XBMC.png -------------------------------------------------------------------------------- /xbmc/pvr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/pvr/Makefile -------------------------------------------------------------------------------- /xbmc/pvr/PVRGUIInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/pvr/PVRGUIInfo.h -------------------------------------------------------------------------------- /xbmc/pvr/PVRManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/pvr/PVRManager.h -------------------------------------------------------------------------------- /xbmc/screensavers/rsxs-0.9/NEWS: -------------------------------------------------------------------------------- 1 | Please see the ChangeLog file for more information. 2 | -------------------------------------------------------------------------------- /xbmc/storage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/storage/Makefile -------------------------------------------------------------------------------- /xbmc/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/system.h -------------------------------------------------------------------------------- /xbmc/threads/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/threads/Event.h -------------------------------------------------------------------------------- /xbmc/threads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/threads/Makefile -------------------------------------------------------------------------------- /xbmc/threads/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/threads/Thread.h -------------------------------------------------------------------------------- /xbmc/utils/Archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/Archive.h -------------------------------------------------------------------------------- /xbmc/utils/CPUInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/CPUInfo.h -------------------------------------------------------------------------------- /xbmc/utils/Crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/Crc32.cpp -------------------------------------------------------------------------------- /xbmc/utils/Crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/Crc32.h -------------------------------------------------------------------------------- /xbmc/utils/Fanart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/Fanart.cpp -------------------------------------------------------------------------------- /xbmc/utils/Fanart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/Fanart.h -------------------------------------------------------------------------------- /xbmc/utils/GLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/GLUtils.h -------------------------------------------------------------------------------- /xbmc/utils/HTMLUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/HTMLUtil.h -------------------------------------------------------------------------------- /xbmc/utils/Job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/Job.h -------------------------------------------------------------------------------- /xbmc/utils/LCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/LCD.cpp -------------------------------------------------------------------------------- /xbmc/utils/LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/LCD.h -------------------------------------------------------------------------------- /xbmc/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/Makefile -------------------------------------------------------------------------------- /xbmc/utils/Observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/Observer.h -------------------------------------------------------------------------------- /xbmc/utils/PCMRemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/PCMRemap.h -------------------------------------------------------------------------------- /xbmc/utils/RegExp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/RegExp.cpp -------------------------------------------------------------------------------- /xbmc/utils/RegExp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/RegExp.h -------------------------------------------------------------------------------- /xbmc/utils/Splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/Splash.cpp -------------------------------------------------------------------------------- /xbmc/utils/Splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/Splash.h -------------------------------------------------------------------------------- /xbmc/utils/URIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/URIUtils.h -------------------------------------------------------------------------------- /xbmc/utils/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/Variant.h -------------------------------------------------------------------------------- /xbmc/utils/Weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/Weather.h -------------------------------------------------------------------------------- /xbmc/utils/XMLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/XMLUtils.h -------------------------------------------------------------------------------- /xbmc/utils/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/fft.cpp -------------------------------------------------------------------------------- /xbmc/utils/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/fft.h -------------------------------------------------------------------------------- /xbmc/utils/fstrcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/fstrcmp.c -------------------------------------------------------------------------------- /xbmc/utils/fstrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/fstrcmp.h -------------------------------------------------------------------------------- /xbmc/utils/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/log.cpp -------------------------------------------------------------------------------- /xbmc/utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/log.h -------------------------------------------------------------------------------- /xbmc/utils/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/md5.cpp -------------------------------------------------------------------------------- /xbmc/utils/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/md5.h -------------------------------------------------------------------------------- /xbmc/utils/ssrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/ssrc.cpp -------------------------------------------------------------------------------- /xbmc/utils/ssrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/utils/ssrc.h -------------------------------------------------------------------------------- /xbmc/video/Bookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/video/Bookmark.h -------------------------------------------------------------------------------- /xbmc/video/Episode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/video/Episode.h -------------------------------------------------------------------------------- /xbmc/video/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/video/Makefile -------------------------------------------------------------------------------- /xbmc/video/Teletext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/video/Teletext.h -------------------------------------------------------------------------------- /xbmc/visualizations/Goom/goom2k4-0/KNOWNBUGS: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xbmc/visualizations/Goom/goom2k4-0/NEWS: -------------------------------------------------------------------------------- 1 | see ChangeLog 2 | -------------------------------------------------------------------------------- /xbmc/visualizations/Goom/goom2k4-0/gtk-gui-devel/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xbmc/visualizations/Goom/goom2k4-0/gtk-gui-devel/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xbmc/visualizations/Goom/goom2k4-0/gtk-gui-devel/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xbmc/visualizations/Goom/goom2k4-0/gtk-gui-devel/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xbmc/visualizations/Goom/goom2k4-0/gtk-gui-devel/po/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xbmc/visualizations/Goom/goom2k4-0/gtk-gui-devel/po/stamp-cat-id: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /xbmc/visualizations/Goom/goom2k4-0/gtk-gui-devel/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /xbmc/visualizations/Goom/goom2k4-0/src/empty_script.goom: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xbmc/visualizations/Milkdrop/vis_milkdrop/evallib/makel.bat: -------------------------------------------------------------------------------- 1 | lex -i scan.l 2 | -------------------------------------------------------------------------------- /xbmc/visualizations/Milkdrop/vis_milkdrop/evallib/makey.bat: -------------------------------------------------------------------------------- 1 | bison -d cal.y 2 | 3 | -------------------------------------------------------------------------------- /xbmc/visualizations/Vortex/angelscript/angelscript/projects/dev-cpp/obj/delete.me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xbmc/win32/XBMC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/win32/XBMC.ico -------------------------------------------------------------------------------- /xbmc/win32/XBMC_PC.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/win32/XBMC_PC.rc -------------------------------------------------------------------------------- /xbmc/win32/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/win32/inttypes.h -------------------------------------------------------------------------------- /xbmc/win32/netdb.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /xbmc/win32/netinet/in.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /xbmc/win32/netinet/tcp.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /xbmc/win32/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /xbmc/win32/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/win32/pch.h -------------------------------------------------------------------------------- /xbmc/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/win32/resource.h -------------------------------------------------------------------------------- /xbmc/win32/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/win32/stdbool.h -------------------------------------------------------------------------------- /xbmc/win32/sys/select.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /xbmc/win32/sys/time.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include -------------------------------------------------------------------------------- /xbmc/win32/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/win32/unistd.h -------------------------------------------------------------------------------- /xbmc/windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/windows/Makefile -------------------------------------------------------------------------------- /xbmc/xbmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opdenkamp/xbmc/HEAD/xbmc/xbmc.cpp --------------------------------------------------------------------------------