├── .github ├── dependabot.yml └── workflows │ └── make.yml ├── .gitignore ├── LICENSE ├── README.md ├── clean.bat ├── languages ├── lazview.cn.po ├── lazview.de.po ├── lazview.en.po ├── lazview.es.po ├── lazview.fr.po ├── lazview.gr.po ├── lazview.it.po ├── lazview.jp.po ├── lazview.po ├── lazview.pt_br.po └── lazview.ru.po ├── link.res ├── make.ps1 ├── make.sh ├── pixmaps ├── LazView.png ├── MAIN-ICON.png ├── MAIN-ICON.psd ├── MAIN-ICON.psd.png ├── Thumbs.db ├── curleft.cur ├── curright.cur ├── main.ico ├── main.png ├── main128.png ├── main16.png ├── main256.png ├── main32.png └── main64.png ├── ppas.bat ├── ppas.sh ├── src ├── DarkModeClasses.pas ├── Thumbs.db ├── bgraqt5bitmap.pas ├── darkmode.pas ├── feffects.lfm ├── feffects.lrj ├── feffects.lrt ├── feffects.pas ├── fexif.lfm ├── fexif.lrj ├── fexif.pas ├── fgoto.lfm ├── fgoto.lrj ├── fgoto.lrt ├── fgoto.pas ├── fmain.lfm ├── fmain.lrj ├── fmain.lrt ├── fmain.pas ├── fpass.lfm ├── fpass.lrj ├── fpass.pas ├── fquality.lfm ├── fquality.lrj ├── fquality.lrt ├── fquality.pas ├── fresize.lfm ├── fresize.lrj ├── fresize.lrt ├── fresize.pas ├── fthumbsize.lfm ├── fthumbsize.lrj ├── fthumbsize.pas ├── imgsize.pas ├── lazview.ico ├── lazview.lpi ├── lazview.lpr ├── lazview.lps ├── print.lfm ├── print.lrj ├── print.pas ├── unit1.lfm ├── unit1.lrj ├── unit1.lrt ├── unit1.pas ├── unit2.lfm ├── unit2.lrj ├── unit2.lrt ├── unit2.pas ├── unit3.lfm ├── unit3.lrj ├── unit3.lrt ├── unit3.pas ├── unit4.lfm ├── unit4.lrj ├── unit4.lrt ├── unit4.pas ├── unit5.lfm ├── unit5.lrj ├── unit5.lrt ├── unit5.pas ├── unit6.lfm ├── unit6.lrj ├── unit6.pas └── uthumbnailprovider.pas └── use ├── PasLibVlc ├── Delphi2007 │ ├── DemoPasLibVlc │ │ ├── DemoPasLibVlc.dpr │ │ ├── DemoPasLibVlc.dproj │ │ ├── DemoPasLibVlc.res │ │ ├── MainFormUnit.dfm │ │ └── MainFormUnit.pas │ ├── DemoPasLibVlcMediaListPlayer │ │ ├── DemoPasLibVlcMediaListPlayer.dpr │ │ ├── DemoPasLibVlcMediaListPlayer.dproj │ │ ├── DemoPasLibVlcMediaListPlayer.res │ │ ├── MainFormUnit.dfm │ │ └── MainFormUnit.pas │ ├── DemoPasLibVlcPlayer │ │ ├── DemoPasLibVlcPlayer.dpr │ │ ├── DemoPasLibVlcPlayer.dproj │ │ ├── DemoPasLibVlcPlayer.res │ │ ├── FullScreenFormUnit.dfm │ │ ├── FullScreenFormUnit.pas │ │ ├── MainFormUnit.dfm │ │ ├── MainFormUnit.pas │ │ ├── SelectOutputDeviceFormUnit.dfm │ │ ├── SelectOutputDeviceFormUnit.pas │ │ ├── SetEqualizerPresetFormUnit.dfm │ │ ├── SetEqualizerPresetFormUnit.pas │ │ ├── VideoAdjustFormUnit.dfm │ │ └── VideoAdjustFormUnit.pas │ ├── DemoPasLibVlcPlayerPauseAtStart │ │ ├── DemoPasLibVlcPlayerPauseAtStart.dpr │ │ ├── DemoPasLibVlcPlayerPauseAtStart.dproj │ │ ├── DemoPasLibVlcPlayerPauseAtStart.res │ │ ├── MainFormUnit.dfm │ │ └── MainFormUnit.pas │ ├── DemoPlayViaPipe │ │ ├── DemoPlayViaPipe.dpr │ │ ├── DemoPlayViaPipe.dproj │ │ ├── DemoPlayViaPipe.res │ │ ├── MainFormUnit.dfm │ │ └── MainFormUnit.pas │ ├── DemoStreamScreen │ │ ├── DemoStreamScreen.dpr │ │ ├── DemoStreamScreen.dproj │ │ └── DemoStreamScreen.res │ ├── DemoStreamVideo │ │ ├── DemoStreamVideo.dpr │ │ ├── DemoStreamVideo.dproj │ │ └── DemoStreamVideo.res │ ├── DemoUseLog │ │ ├── DemoUseLog.dpr │ │ ├── DemoUseLog.dproj │ │ ├── DemoUseLog.res │ │ └── dump.txt │ ├── DemoVideoCallBacks │ │ ├── DemoVideoCallBacks.dpr │ │ ├── DemoVideoCallBacks.dproj │ │ └── DemoVideoCallBacks.res │ ├── PasLibVlc.groupproj │ ├── PasLibVlcPlayer.dpk │ ├── PasLibVlcPlayer.dproj │ └── PasLibVlcPlayer.res ├── Delphi4 │ ├── DemoPasLibVlc │ │ ├── DemoPasLibVlc.dpr │ │ ├── DemoPasLibVlc.res │ │ ├── MainFormUnit.dfm │ │ └── MainFormUnit.pas │ ├── DemoPasLibVlcPlayer │ │ ├── DemoPasLibVlcPlayer.dpr │ │ ├── DemoPasLibVlcPlayer.res │ │ ├── MainFormUnit.dfm │ │ └── MainFormUnit.pas │ ├── PasLibVlc.bpg │ ├── PasLibVlcPlayer.dpk │ └── PasLibVlcPlayer.res ├── Delphi7 │ ├── DemoPasLibVlc │ │ ├── DemoPasLibVlc.dpr │ │ ├── DemoPasLibVlc.dproj │ │ ├── DemoPasLibVlc.res │ │ ├── MainFormUnit.dfm │ │ └── MainFormUnit.pas │ ├── DemoPasLibVlcPlayer │ │ ├── DemoPasLibVlcPlayer.dpr │ │ ├── DemoPasLibVlcPlayer.dproj │ │ ├── DemoPasLibVlcPlayer.res │ │ ├── FullScreenFormUnit.dfm │ │ ├── FullScreenFormUnit.pas │ │ ├── MainFormUnit.dfm │ │ ├── MainFormUnit.pas │ │ ├── SelectOutputDeviceFormUnit.dfm │ │ ├── SelectOutputDeviceFormUnit.pas │ │ ├── SetEqualizerPresetFormUnit.dfm │ │ ├── SetEqualizerPresetFormUnit.pas │ │ ├── VideoAdjustFormUnit.dfm │ │ └── VideoAdjustFormUnit.pas │ ├── PasLibVlc.bpg │ ├── PasLibVlcPlayer.dpk │ └── PasLibVlcPlayer.res ├── DelphiXE10 │ ├── DemoPasLibVlc │ │ ├── DemoPasLibVlc.deployproj │ │ ├── DemoPasLibVlc.dpr │ │ ├── DemoPasLibVlc.dproj │ │ ├── DemoPasLibVlc.otares │ │ ├── DemoPasLibVlc.res │ │ ├── DemoPasLibVlc.stat │ │ ├── DemoPasLibVlc_Icon.ico │ │ ├── MainFormUnit.dfm │ │ └── MainFormUnit.pas │ ├── DemoPasLibVlcPlayer │ │ ├── DemoPasLibVlcPlayer.deployproj │ │ ├── DemoPasLibVlcPlayer.dpr │ │ ├── DemoPasLibVlcPlayer.dproj │ │ ├── DemoPasLibVlcPlayer.otares │ │ ├── DemoPasLibVlcPlayer.res │ │ ├── DemoPasLibVlcPlayer.stat │ │ ├── DemoPasLibVlcPlayer_Icon.ico │ │ ├── FullScreenFormUnit.dfm │ │ ├── FullScreenFormUnit.pas │ │ ├── MainFormUnit.dfm │ │ ├── MainFormUnit.pas │ │ ├── SelectOutputDeviceFormUnit.dfm │ │ ├── SelectOutputDeviceFormUnit.pas │ │ ├── SetEqualizerPresetFormUnit.dfm │ │ ├── SetEqualizerPresetFormUnit.pas │ │ ├── VideoAdjustFormUnit.dfm │ │ └── VideoAdjustFormUnit.pas │ ├── FmxDemoPasLibVlc │ │ ├── Entitlement.TemplateOSX32.xml │ │ ├── FmxDemoPasLibVlc._@emb_.tmp │ │ ├── FmxDemoPasLibVlc.deployproj │ │ ├── FmxDemoPasLibVlc.dpr │ │ ├── FmxDemoPasLibVlc.dproj │ │ ├── FmxDemoPasLibVlc.res │ │ ├── FmxDemoPasLibVlc.stat │ │ ├── MainFormUnit.LgXhdpiPh.fmx │ │ ├── MainFormUnit.SmXhdpiPh.fmx │ │ ├── MainFormUnit.Surface.fmx │ │ ├── MainFormUnit.Windows.fmx │ │ ├── MainFormUnit.fmx │ │ ├── MainFormUnit.iPad.fmx │ │ ├── MainFormUnit.iPhone55in.fmx │ │ ├── MainFormUnit.pas │ │ ├── PlayFormUnit.fmx │ │ └── PlayFormUnit.pas │ ├── FmxDemoPasLibVlcPlayer │ │ ├── Entitlement.TemplateOSX32.xml │ │ ├── FmxDemoPasLibVlcPlayer._@emb_.tmp │ │ ├── FmxDemoPasLibVlcPlayer.deployproj │ │ ├── FmxDemoPasLibVlcPlayer.dpr │ │ ├── FmxDemoPasLibVlcPlayer.dproj │ │ ├── FmxDemoPasLibVlcPlayer.res │ │ ├── FmxDemoPasLibVlcPlayer.stat │ │ ├── MainFormUnit.LgXhdpiPh.fmx │ │ ├── MainFormUnit.Macintosh.fmx │ │ ├── MainFormUnit.SmXhdpiPh.fmx │ │ ├── MainFormUnit.Surface.fmx │ │ ├── MainFormUnit.Windows.fmx │ │ ├── MainFormUnit.XLgXhdpiTb.fmx │ │ ├── MainFormUnit.fmx │ │ ├── MainFormUnit.iPad.fmx │ │ ├── MainFormUnit.iPhone47in.fmx │ │ ├── MainFormUnit.pas │ │ └── info.plist.TemplateOSX.xml │ ├── PasLibVlc.groupproj │ ├── PasLibVlcPlayer.dpk │ ├── PasLibVlcPlayer.dproj │ ├── PasLibVlcPlayer.res │ ├── PasLibVlcPlayer.stat │ ├── PasLibVlcPlayerFmx.res │ └── PasLibVlc_prjgroup.tvsconfig ├── DelphiXE7 │ ├── DemoPasLibVlc │ │ ├── DemoPasLibVlc.dpr │ │ ├── DemoPasLibVlc.dproj │ │ ├── DemoPasLibVlc.otares │ │ ├── DemoPasLibVlc.res │ │ ├── DemoPasLibVlc.stat │ │ ├── DemoPasLibVlc_Icon.ico │ │ ├── MainFormUnit.dfm │ │ └── MainFormUnit.pas │ ├── DemoPasLibVlcPlayer │ │ ├── DemoPasLibVlcPlayer.dpr │ │ ├── DemoPasLibVlcPlayer.dproj │ │ ├── DemoPasLibVlcPlayer.otares │ │ ├── DemoPasLibVlcPlayer.res │ │ ├── DemoPasLibVlcPlayer.stat │ │ ├── DemoPasLibVlcPlayer_Icon.ico │ │ ├── FullScreenFormUnit.dfm │ │ ├── FullScreenFormUnit.pas │ │ ├── MainFormUnit.dfm │ │ ├── MainFormUnit.pas │ │ ├── SelectOutputDeviceFormUnit.dfm │ │ ├── SelectOutputDeviceFormUnit.pas │ │ ├── SetEqualizerPresetFormUnit.dfm │ │ └── SetEqualizerPresetFormUnit.pas │ ├── FmxDemoPasLibVlc │ │ ├── Entitlement.TemplateOSX32.xml │ │ ├── FmxDemoPasLibVlc._@emb_.tmp │ │ ├── FmxDemoPasLibVlc.deployproj │ │ ├── FmxDemoPasLibVlc.dpr │ │ ├── FmxDemoPasLibVlc.dproj │ │ ├── FmxDemoPasLibVlc.res │ │ ├── FmxDemoPasLibVlc.stat │ │ ├── MainFormUnit.LgXhdpiPh.fmx │ │ ├── MainFormUnit.SmXhdpiPh.fmx │ │ ├── MainFormUnit.Surface.fmx │ │ ├── MainFormUnit.Windows.fmx │ │ ├── MainFormUnit.fmx │ │ ├── MainFormUnit.iPad.fmx │ │ ├── MainFormUnit.iPhone55in.fmx │ │ ├── MainFormUnit.pas │ │ ├── PlayFormUnit.fmx │ │ └── PlayFormUnit.pas │ ├── FmxDemoPasLibVlcPlayer │ │ ├── Entitlement.TemplateOSX32.xml │ │ ├── FmxDemoPasLibVlcPlayer._@emb_.tmp │ │ ├── FmxDemoPasLibVlcPlayer.deployproj │ │ ├── FmxDemoPasLibVlcPlayer.dpr │ │ ├── FmxDemoPasLibVlcPlayer.dproj │ │ ├── FmxDemoPasLibVlcPlayer.res │ │ ├── FmxDemoPasLibVlcPlayer.stat │ │ ├── MainFormUnit.LgXhdpiPh.fmx │ │ ├── MainFormUnit.Macintosh.fmx │ │ ├── MainFormUnit.SmXhdpiPh.fmx │ │ ├── MainFormUnit.Surface.fmx │ │ ├── MainFormUnit.Windows.fmx │ │ ├── MainFormUnit.XLgXhdpiTb.fmx │ │ ├── MainFormUnit.fmx │ │ ├── MainFormUnit.iPad.fmx │ │ ├── MainFormUnit.iPhone47in.fmx │ │ ├── MainFormUnit.pas │ │ └── info.plist.TemplateOSX.xml │ ├── PasLibVlc.groupproj │ ├── PasLibVlcPlayer.dpk │ ├── PasLibVlcPlayer.dproj │ ├── PasLibVlcPlayer.res │ ├── PasLibVlcPlayerFmx.res │ └── PasLibVlc_prjgroup.tvsconfig ├── Lazarus │ ├── DemoPasLibVlc │ │ ├── DemoPasLibVlc.lpi │ │ ├── DemoPasLibVlc.lpr │ │ ├── DemoPasLibVlc.res │ │ ├── MainFormUnit.lfm │ │ └── MainFormUnit.pas │ ├── DemoPasLibVlcMediaListPlayer │ │ ├── DemoPasLibVlcMediaListPlayer.lpi │ │ ├── DemoPasLibVlcMediaListPlayer.lpr │ │ ├── DemoPasLibVlcMediaListPlayer.res │ │ ├── MainFormUnit.lfm │ │ └── MainFormUnit.pas │ ├── DemoPasLibVlcPlayer │ │ ├── DemoPasLibVlcPlayer.lpi │ │ ├── DemoPasLibVlcPlayer.lpr │ │ ├── DemoPasLibVlcPlayer.res │ │ ├── FullScreenFormUnit.lfm │ │ ├── FullScreenFormUnit.pas │ │ ├── MainFormUnit.lfm │ │ ├── MainFormUnit.pas │ │ ├── SelectOutputDeviceFormUnit.lfm │ │ ├── SelectOutputDeviceFormUnit.pas │ │ ├── SetEqualizerPresetFormUnit.lfm │ │ └── SetEqualizerPresetFormUnit.pas │ ├── DemoPasLibVlcPlayerPauseAtStart │ │ ├── DemoPasLivVlcPlayerPauseAtStart.lpi │ │ ├── DemoPasLivVlcPlayerPauseAtStart.lpr │ │ ├── DemoPasLivVlcPlayerPauseAtStart.res │ │ ├── MainFormUnit.lfm │ │ ├── MainFormUnit.pas │ │ └── link.res │ ├── Makefile │ ├── Makefile.fpc │ ├── PasLibVlcPlayer.lpk │ ├── PasLibVlcPlayer.pas │ ├── fpmake.pp │ └── lib │ │ ├── x86_64-linux │ │ └── PasLibVlcPlayerUnit.RES │ │ └── x86_64-win64 │ │ └── PasLibVlcPlayerUnit.RES ├── logo1.png ├── logo2.png ├── source.fmx │ ├── FmxPasLibVlcPlayerUnit.RC │ ├── FmxPasLibVlcPlayerUnit.RES │ ├── FmxPasLibVlcPlayerUnit.pas │ └── FmxPasLibVlcPlayerUnit.txt ├── source.vcl │ ├── PasLibVlcPlayerUnit.RC │ ├── PasLibVlcPlayerUnit.RES │ ├── PasLibVlcPlayerUnit.pas │ ├── PasLibVlcPlayerUnit.txt │ ├── TPasLibVlcMediaList16.bmp │ ├── TPasLibVlcPlayer16.bmp │ └── TPasLibVlcPlayer24.bmp └── source │ ├── PasLibVlcClassUnit.pas │ ├── PasLibVlcUnit.pas │ ├── PasLibVlcUnit.txt │ └── compiler.inc ├── components.txt └── vlc ├── README.txt ├── lazvlc.lpk ├── lazvlc.pas ├── lazvlc.res ├── lclvlc.pp ├── reglazvlc.pas ├── test ├── frmmain.lfm ├── frmmain.pp ├── testlcl.ico ├── testlcl.lpi ├── testlcl.lpr └── testlcl.res ├── tlclvlcplayer.png ├── tvlcmedialistplayer.png ├── vlcgtk2.inc └── vlcqt.inc /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/make.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/.github/workflows/make.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/README.md -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/clean.bat -------------------------------------------------------------------------------- /languages/lazview.cn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/languages/lazview.cn.po -------------------------------------------------------------------------------- /languages/lazview.de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/languages/lazview.de.po -------------------------------------------------------------------------------- /languages/lazview.en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/languages/lazview.en.po -------------------------------------------------------------------------------- /languages/lazview.es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/languages/lazview.es.po -------------------------------------------------------------------------------- /languages/lazview.fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/languages/lazview.fr.po -------------------------------------------------------------------------------- /languages/lazview.gr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/languages/lazview.gr.po -------------------------------------------------------------------------------- /languages/lazview.it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/languages/lazview.it.po -------------------------------------------------------------------------------- /languages/lazview.jp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/languages/lazview.jp.po -------------------------------------------------------------------------------- /languages/lazview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/languages/lazview.po -------------------------------------------------------------------------------- /languages/lazview.pt_br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/languages/lazview.pt_br.po -------------------------------------------------------------------------------- /languages/lazview.ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/languages/lazview.ru.po -------------------------------------------------------------------------------- /link.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/link.res -------------------------------------------------------------------------------- /make.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/make.ps1 -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/make.sh -------------------------------------------------------------------------------- /pixmaps/LazView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/LazView.png -------------------------------------------------------------------------------- /pixmaps/MAIN-ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/MAIN-ICON.png -------------------------------------------------------------------------------- /pixmaps/MAIN-ICON.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/MAIN-ICON.psd -------------------------------------------------------------------------------- /pixmaps/MAIN-ICON.psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/MAIN-ICON.psd.png -------------------------------------------------------------------------------- /pixmaps/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/Thumbs.db -------------------------------------------------------------------------------- /pixmaps/curleft.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/curleft.cur -------------------------------------------------------------------------------- /pixmaps/curright.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/curright.cur -------------------------------------------------------------------------------- /pixmaps/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/main.ico -------------------------------------------------------------------------------- /pixmaps/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/main.png -------------------------------------------------------------------------------- /pixmaps/main128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/main128.png -------------------------------------------------------------------------------- /pixmaps/main16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/main16.png -------------------------------------------------------------------------------- /pixmaps/main256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/main256.png -------------------------------------------------------------------------------- /pixmaps/main32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/main32.png -------------------------------------------------------------------------------- /pixmaps/main64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/pixmaps/main64.png -------------------------------------------------------------------------------- /ppas.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/ppas.bat -------------------------------------------------------------------------------- /ppas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/ppas.sh -------------------------------------------------------------------------------- /src/DarkModeClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/DarkModeClasses.pas -------------------------------------------------------------------------------- /src/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/Thumbs.db -------------------------------------------------------------------------------- /src/bgraqt5bitmap.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/bgraqt5bitmap.pas -------------------------------------------------------------------------------- /src/darkmode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/darkmode.pas -------------------------------------------------------------------------------- /src/feffects.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/feffects.lfm -------------------------------------------------------------------------------- /src/feffects.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/feffects.lrj -------------------------------------------------------------------------------- /src/feffects.lrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/feffects.lrt -------------------------------------------------------------------------------- /src/feffects.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/feffects.pas -------------------------------------------------------------------------------- /src/fexif.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fexif.lfm -------------------------------------------------------------------------------- /src/fexif.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fexif.lrj -------------------------------------------------------------------------------- /src/fexif.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fexif.pas -------------------------------------------------------------------------------- /src/fgoto.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fgoto.lfm -------------------------------------------------------------------------------- /src/fgoto.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fgoto.lrj -------------------------------------------------------------------------------- /src/fgoto.lrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fgoto.lrt -------------------------------------------------------------------------------- /src/fgoto.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fgoto.pas -------------------------------------------------------------------------------- /src/fmain.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fmain.lfm -------------------------------------------------------------------------------- /src/fmain.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fmain.lrj -------------------------------------------------------------------------------- /src/fmain.lrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fmain.lrt -------------------------------------------------------------------------------- /src/fmain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fmain.pas -------------------------------------------------------------------------------- /src/fpass.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fpass.lfm -------------------------------------------------------------------------------- /src/fpass.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fpass.lrj -------------------------------------------------------------------------------- /src/fpass.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fpass.pas -------------------------------------------------------------------------------- /src/fquality.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fquality.lfm -------------------------------------------------------------------------------- /src/fquality.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fquality.lrj -------------------------------------------------------------------------------- /src/fquality.lrt: -------------------------------------------------------------------------------- 1 | TFORM3.LABEL1.CAPTION=100 2 | -------------------------------------------------------------------------------- /src/fquality.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fquality.pas -------------------------------------------------------------------------------- /src/fresize.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fresize.lfm -------------------------------------------------------------------------------- /src/fresize.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fresize.lrj -------------------------------------------------------------------------------- /src/fresize.lrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fresize.lrt -------------------------------------------------------------------------------- /src/fresize.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fresize.pas -------------------------------------------------------------------------------- /src/fthumbsize.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fthumbsize.lfm -------------------------------------------------------------------------------- /src/fthumbsize.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fthumbsize.lrj -------------------------------------------------------------------------------- /src/fthumbsize.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/fthumbsize.pas -------------------------------------------------------------------------------- /src/imgsize.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/imgsize.pas -------------------------------------------------------------------------------- /src/lazview.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/lazview.ico -------------------------------------------------------------------------------- /src/lazview.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/lazview.lpi -------------------------------------------------------------------------------- /src/lazview.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/lazview.lpr -------------------------------------------------------------------------------- /src/lazview.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/lazview.lps -------------------------------------------------------------------------------- /src/print.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/print.lfm -------------------------------------------------------------------------------- /src/print.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/print.lrj -------------------------------------------------------------------------------- /src/print.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/print.pas -------------------------------------------------------------------------------- /src/unit1.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit1.lfm -------------------------------------------------------------------------------- /src/unit1.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit1.lrj -------------------------------------------------------------------------------- /src/unit1.lrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit1.lrt -------------------------------------------------------------------------------- /src/unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit1.pas -------------------------------------------------------------------------------- /src/unit2.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit2.lfm -------------------------------------------------------------------------------- /src/unit2.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit2.lrj -------------------------------------------------------------------------------- /src/unit2.lrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit2.lrt -------------------------------------------------------------------------------- /src/unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit2.pas -------------------------------------------------------------------------------- /src/unit3.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit3.lfm -------------------------------------------------------------------------------- /src/unit3.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit3.lrj -------------------------------------------------------------------------------- /src/unit3.lrt: -------------------------------------------------------------------------------- 1 | TFORM3.LABEL1.CAPTION=100 2 | -------------------------------------------------------------------------------- /src/unit3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit3.pas -------------------------------------------------------------------------------- /src/unit4.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit4.lfm -------------------------------------------------------------------------------- /src/unit4.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit4.lrj -------------------------------------------------------------------------------- /src/unit4.lrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit4.lrt -------------------------------------------------------------------------------- /src/unit4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit4.pas -------------------------------------------------------------------------------- /src/unit5.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit5.lfm -------------------------------------------------------------------------------- /src/unit5.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit5.lrj -------------------------------------------------------------------------------- /src/unit5.lrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit5.lrt -------------------------------------------------------------------------------- /src/unit5.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit5.pas -------------------------------------------------------------------------------- /src/unit6.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit6.lfm -------------------------------------------------------------------------------- /src/unit6.lrj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit6.lrj -------------------------------------------------------------------------------- /src/unit6.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/unit6.pas -------------------------------------------------------------------------------- /src/uthumbnailprovider.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/src/uthumbnailprovider.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlc/DemoPasLibVlc.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlc/DemoPasLibVlc.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlc/DemoPasLibVlc.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlc/DemoPasLibVlc.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlc/DemoPasLibVlc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlc/DemoPasLibVlc.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlc/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlc/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlc/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlc/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcMediaListPlayer/DemoPasLibVlcMediaListPlayer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcMediaListPlayer/DemoPasLibVlcMediaListPlayer.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcMediaListPlayer/DemoPasLibVlcMediaListPlayer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcMediaListPlayer/DemoPasLibVlcMediaListPlayer.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcMediaListPlayer/DemoPasLibVlcMediaListPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcMediaListPlayer/DemoPasLibVlcMediaListPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcMediaListPlayer/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcMediaListPlayer/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcMediaListPlayer/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcMediaListPlayer/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/FullScreenFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/FullScreenFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/FullScreenFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/FullScreenFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/VideoAdjustFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/VideoAdjustFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/VideoAdjustFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayer/VideoAdjustFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayerPauseAtStart/DemoPasLibVlcPlayerPauseAtStart.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayerPauseAtStart/DemoPasLibVlcPlayerPauseAtStart.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayerPauseAtStart/DemoPasLibVlcPlayerPauseAtStart.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayerPauseAtStart/DemoPasLibVlcPlayerPauseAtStart.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayerPauseAtStart/DemoPasLibVlcPlayerPauseAtStart.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayerPauseAtStart/DemoPasLibVlcPlayerPauseAtStart.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayerPauseAtStart/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayerPauseAtStart/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayerPauseAtStart/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPasLibVlcPlayerPauseAtStart/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPlayViaPipe/DemoPlayViaPipe.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPlayViaPipe/DemoPlayViaPipe.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPlayViaPipe/DemoPlayViaPipe.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPlayViaPipe/DemoPlayViaPipe.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPlayViaPipe/DemoPlayViaPipe.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPlayViaPipe/DemoPlayViaPipe.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPlayViaPipe/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPlayViaPipe/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoPlayViaPipe/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoPlayViaPipe/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoStreamScreen/DemoStreamScreen.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoStreamScreen/DemoStreamScreen.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoStreamScreen/DemoStreamScreen.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoStreamScreen/DemoStreamScreen.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoStreamScreen/DemoStreamScreen.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoStreamScreen/DemoStreamScreen.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoStreamVideo/DemoStreamVideo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoStreamVideo/DemoStreamVideo.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoStreamVideo/DemoStreamVideo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoStreamVideo/DemoStreamVideo.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoStreamVideo/DemoStreamVideo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoStreamVideo/DemoStreamVideo.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoUseLog/DemoUseLog.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoUseLog/DemoUseLog.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoUseLog/DemoUseLog.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoUseLog/DemoUseLog.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoUseLog/DemoUseLog.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoUseLog/DemoUseLog.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoUseLog/dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoUseLog/dump.txt -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoVideoCallBacks/DemoVideoCallBacks.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoVideoCallBacks/DemoVideoCallBacks.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoVideoCallBacks/DemoVideoCallBacks.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoVideoCallBacks/DemoVideoCallBacks.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/DemoVideoCallBacks/DemoVideoCallBacks.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/DemoVideoCallBacks/DemoVideoCallBacks.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/PasLibVlc.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/PasLibVlc.groupproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/PasLibVlcPlayer.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/PasLibVlcPlayer.dpk -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/PasLibVlcPlayer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/PasLibVlcPlayer.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi2007/PasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi2007/PasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi4/DemoPasLibVlc/DemoPasLibVlc.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi4/DemoPasLibVlc/DemoPasLibVlc.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi4/DemoPasLibVlc/DemoPasLibVlc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi4/DemoPasLibVlc/DemoPasLibVlc.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi4/DemoPasLibVlc/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi4/DemoPasLibVlc/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi4/DemoPasLibVlc/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi4/DemoPasLibVlc/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi4/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi4/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi4/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi4/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi4/DemoPasLibVlcPlayer/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi4/DemoPasLibVlcPlayer/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi4/DemoPasLibVlcPlayer/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi4/DemoPasLibVlcPlayer/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi4/PasLibVlc.bpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi4/PasLibVlc.bpg -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi4/PasLibVlcPlayer.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi4/PasLibVlcPlayer.dpk -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi4/PasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi4/PasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlc/DemoPasLibVlc.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlc/DemoPasLibVlc.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlc/DemoPasLibVlc.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlc/DemoPasLibVlc.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlc/DemoPasLibVlc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlc/DemoPasLibVlc.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlc/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlc/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlc/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlc/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/FullScreenFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/FullScreenFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/FullScreenFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/FullScreenFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/VideoAdjustFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/VideoAdjustFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/VideoAdjustFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/DemoPasLibVlcPlayer/VideoAdjustFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/PasLibVlc.bpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/PasLibVlc.bpg -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/PasLibVlcPlayer.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/PasLibVlcPlayer.dpk -------------------------------------------------------------------------------- /use/PasLibVlc/Delphi7/PasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Delphi7/PasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc.deployproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc.otares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc.otares -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc.stat -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlc/DemoPasLibVlc_Icon.ico -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlc/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlc/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlc/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlc/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.deployproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.otares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.otares -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.stat -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer_Icon.ico -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/FullScreenFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/FullScreenFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/FullScreenFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/FullScreenFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/VideoAdjustFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/VideoAdjustFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/VideoAdjustFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/DemoPasLibVlcPlayer/VideoAdjustFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/FmxDemoPasLibVlc._@emb_.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/FmxDemoPasLibVlc._@emb_.tmp -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/FmxDemoPasLibVlc.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/FmxDemoPasLibVlc.deployproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/FmxDemoPasLibVlc.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/FmxDemoPasLibVlc.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/FmxDemoPasLibVlc.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/FmxDemoPasLibVlc.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/FmxDemoPasLibVlc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/FmxDemoPasLibVlc.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/FmxDemoPasLibVlc.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/FmxDemoPasLibVlc.stat -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.LgXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.LgXhdpiPh.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.SmXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.SmXhdpiPh.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.Surface.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.Surface.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.Windows.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.Windows.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.iPad.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.iPad.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.iPhone55in.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.iPhone55in.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/PlayFormUnit.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/PlayFormUnit.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/PlayFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlc/PlayFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer._@emb_.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer._@emb_.tmp -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.deployproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.stat -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.LgXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.LgXhdpiPh.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.Macintosh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.Macintosh.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.SmXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.SmXhdpiPh.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.Surface.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.Surface.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.Windows.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.Windows.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.XLgXhdpiTb.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.XLgXhdpiTb.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.iPad.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.iPad.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.iPhone47in.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.iPhone47in.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/FmxDemoPasLibVlcPlayer/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/PasLibVlc.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/PasLibVlc.groupproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/PasLibVlcPlayer.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/PasLibVlcPlayer.dpk -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/PasLibVlcPlayer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/PasLibVlcPlayer.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/PasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/PasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/PasLibVlcPlayer.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/PasLibVlcPlayer.stat -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/PasLibVlcPlayerFmx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/PasLibVlcPlayerFmx.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE10/PasLibVlc_prjgroup.tvsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE10/PasLibVlc_prjgroup.tvsconfig -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlc/DemoPasLibVlc.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlc/DemoPasLibVlc.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlc/DemoPasLibVlc.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlc/DemoPasLibVlc.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlc/DemoPasLibVlc.otares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlc/DemoPasLibVlc.otares -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlc/DemoPasLibVlc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlc/DemoPasLibVlc.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlc/DemoPasLibVlc.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlc/DemoPasLibVlc.stat -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlc/DemoPasLibVlc_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlc/DemoPasLibVlc_Icon.ico -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlc/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlc/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlc/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlc/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.otares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.otares -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.stat -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer_Icon.ico -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/FullScreenFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/FullScreenFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/FullScreenFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/FullScreenFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/MainFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/MainFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.dfm -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/FmxDemoPasLibVlc._@emb_.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/FmxDemoPasLibVlc._@emb_.tmp -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/FmxDemoPasLibVlc.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/FmxDemoPasLibVlc.deployproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/FmxDemoPasLibVlc.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/FmxDemoPasLibVlc.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/FmxDemoPasLibVlc.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/FmxDemoPasLibVlc.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/FmxDemoPasLibVlc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/FmxDemoPasLibVlc.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/FmxDemoPasLibVlc.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/FmxDemoPasLibVlc.stat -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.LgXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.LgXhdpiPh.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.SmXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.SmXhdpiPh.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.Surface.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.Surface.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.Windows.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.Windows.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.iPad.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.iPad.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.iPhone55in.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.iPhone55in.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/PlayFormUnit.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/PlayFormUnit.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/PlayFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlc/PlayFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer._@emb_.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer._@emb_.tmp -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.deployproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.dpr -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/FmxDemoPasLibVlcPlayer.stat -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.LgXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.LgXhdpiPh.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.Macintosh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.Macintosh.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.SmXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.SmXhdpiPh.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.Surface.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.Surface.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.Windows.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.Windows.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.XLgXhdpiTb.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.XLgXhdpiTb.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.iPad.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.iPad.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.iPhone47in.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.iPhone47in.fmx -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/FmxDemoPasLibVlcPlayer/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/PasLibVlc.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/PasLibVlc.groupproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/PasLibVlcPlayer.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/PasLibVlcPlayer.dpk -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/PasLibVlcPlayer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/PasLibVlcPlayer.dproj -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/PasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/PasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/PasLibVlcPlayerFmx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/PasLibVlcPlayerFmx.res -------------------------------------------------------------------------------- /use/PasLibVlc/DelphiXE7/PasLibVlc_prjgroup.tvsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/DelphiXE7/PasLibVlc_prjgroup.tvsconfig -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlc/DemoPasLibVlc.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlc/DemoPasLibVlc.lpi -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlc/DemoPasLibVlc.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlc/DemoPasLibVlc.lpr -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlc/DemoPasLibVlc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlc/DemoPasLibVlc.res -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlc/MainFormUnit.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlc/MainFormUnit.lfm -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlc/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlc/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcMediaListPlayer/DemoPasLibVlcMediaListPlayer.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcMediaListPlayer/DemoPasLibVlcMediaListPlayer.lpi -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcMediaListPlayer/DemoPasLibVlcMediaListPlayer.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcMediaListPlayer/DemoPasLibVlcMediaListPlayer.lpr -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcMediaListPlayer/DemoPasLibVlcMediaListPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcMediaListPlayer/DemoPasLibVlcMediaListPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcMediaListPlayer/MainFormUnit.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcMediaListPlayer/MainFormUnit.lfm -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcMediaListPlayer/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcMediaListPlayer/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.lpi -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.lpr -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/DemoPasLibVlcPlayer.res -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/FullScreenFormUnit.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/FullScreenFormUnit.lfm -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/FullScreenFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/FullScreenFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/MainFormUnit.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/MainFormUnit.lfm -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.lfm -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/SelectOutputDeviceFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.lfm -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayer/SetEqualizerPresetFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayerPauseAtStart/DemoPasLivVlcPlayerPauseAtStart.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayerPauseAtStart/DemoPasLivVlcPlayerPauseAtStart.lpi -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayerPauseAtStart/DemoPasLivVlcPlayerPauseAtStart.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayerPauseAtStart/DemoPasLivVlcPlayerPauseAtStart.lpr -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayerPauseAtStart/DemoPasLivVlcPlayerPauseAtStart.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayerPauseAtStart/DemoPasLivVlcPlayerPauseAtStart.res -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayerPauseAtStart/MainFormUnit.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayerPauseAtStart/MainFormUnit.lfm -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayerPauseAtStart/MainFormUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayerPauseAtStart/MainFormUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/DemoPasLibVlcPlayerPauseAtStart/link.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/DemoPasLibVlcPlayerPauseAtStart/link.res -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/Makefile -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/Makefile.fpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/Makefile.fpc -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/PasLibVlcPlayer.lpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/PasLibVlcPlayer.lpk -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/PasLibVlcPlayer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/PasLibVlcPlayer.pas -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/fpmake.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/fpmake.pp -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/lib/x86_64-linux/PasLibVlcPlayerUnit.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/lib/x86_64-linux/PasLibVlcPlayerUnit.RES -------------------------------------------------------------------------------- /use/PasLibVlc/Lazarus/lib/x86_64-win64/PasLibVlcPlayerUnit.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/Lazarus/lib/x86_64-win64/PasLibVlcPlayerUnit.RES -------------------------------------------------------------------------------- /use/PasLibVlc/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/logo1.png -------------------------------------------------------------------------------- /use/PasLibVlc/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/logo2.png -------------------------------------------------------------------------------- /use/PasLibVlc/source.fmx/FmxPasLibVlcPlayerUnit.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source.fmx/FmxPasLibVlcPlayerUnit.RC -------------------------------------------------------------------------------- /use/PasLibVlc/source.fmx/FmxPasLibVlcPlayerUnit.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source.fmx/FmxPasLibVlcPlayerUnit.RES -------------------------------------------------------------------------------- /use/PasLibVlc/source.fmx/FmxPasLibVlcPlayerUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source.fmx/FmxPasLibVlcPlayerUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/source.fmx/FmxPasLibVlcPlayerUnit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source.fmx/FmxPasLibVlcPlayerUnit.txt -------------------------------------------------------------------------------- /use/PasLibVlc/source.vcl/PasLibVlcPlayerUnit.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source.vcl/PasLibVlcPlayerUnit.RC -------------------------------------------------------------------------------- /use/PasLibVlc/source.vcl/PasLibVlcPlayerUnit.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source.vcl/PasLibVlcPlayerUnit.RES -------------------------------------------------------------------------------- /use/PasLibVlc/source.vcl/PasLibVlcPlayerUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source.vcl/PasLibVlcPlayerUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/source.vcl/PasLibVlcPlayerUnit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source.vcl/PasLibVlcPlayerUnit.txt -------------------------------------------------------------------------------- /use/PasLibVlc/source.vcl/TPasLibVlcMediaList16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source.vcl/TPasLibVlcMediaList16.bmp -------------------------------------------------------------------------------- /use/PasLibVlc/source.vcl/TPasLibVlcPlayer16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source.vcl/TPasLibVlcPlayer16.bmp -------------------------------------------------------------------------------- /use/PasLibVlc/source.vcl/TPasLibVlcPlayer24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source.vcl/TPasLibVlcPlayer24.bmp -------------------------------------------------------------------------------- /use/PasLibVlc/source/PasLibVlcClassUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source/PasLibVlcClassUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/source/PasLibVlcUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source/PasLibVlcUnit.pas -------------------------------------------------------------------------------- /use/PasLibVlc/source/PasLibVlcUnit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source/PasLibVlcUnit.txt -------------------------------------------------------------------------------- /use/PasLibVlc/source/compiler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/PasLibVlc/source/compiler.inc -------------------------------------------------------------------------------- /use/components.txt: -------------------------------------------------------------------------------- 1 | DExif 2 | VampyreImaging 3 | BGRABitmap 4 | Abbrevia 5 | -------------------------------------------------------------------------------- /use/vlc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/README.txt -------------------------------------------------------------------------------- /use/vlc/lazvlc.lpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/lazvlc.lpk -------------------------------------------------------------------------------- /use/vlc/lazvlc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/lazvlc.pas -------------------------------------------------------------------------------- /use/vlc/lazvlc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/lazvlc.res -------------------------------------------------------------------------------- /use/vlc/lclvlc.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/lclvlc.pp -------------------------------------------------------------------------------- /use/vlc/reglazvlc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/reglazvlc.pas -------------------------------------------------------------------------------- /use/vlc/test/frmmain.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/test/frmmain.lfm -------------------------------------------------------------------------------- /use/vlc/test/frmmain.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/test/frmmain.pp -------------------------------------------------------------------------------- /use/vlc/test/testlcl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/test/testlcl.ico -------------------------------------------------------------------------------- /use/vlc/test/testlcl.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/test/testlcl.lpi -------------------------------------------------------------------------------- /use/vlc/test/testlcl.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/test/testlcl.lpr -------------------------------------------------------------------------------- /use/vlc/test/testlcl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/test/testlcl.res -------------------------------------------------------------------------------- /use/vlc/tlclvlcplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/tlclvlcplayer.png -------------------------------------------------------------------------------- /use/vlc/tvlcmedialistplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/tvlcmedialistplayer.png -------------------------------------------------------------------------------- /use/vlc/vlcgtk2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/vlcgtk2.inc -------------------------------------------------------------------------------- /use/vlc/vlcqt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nenirey/LazView/HEAD/use/vlc/vlcqt.inc --------------------------------------------------------------------------------