├── .gitattributes ├── .gitignore ├── Content ├── Maps │ ├── ExampleMap.umap │ ├── ExampleMap_BuiltData.uasset │ └── Test.umap ├── Materials │ ├── M_ParentMaterial.uasset │ └── M_ParentMaterial_UI.uasset ├── Movies │ └── EndGFX.wmv └── Widgets │ └── WB_MovieTest.uasset ├── README.md ├── Resources └── Icon128.png ├── Source ├── ThirdParty │ └── VLC_PlayerLibrary │ │ ├── VLC_PlayerLibrary.Build.cs │ │ ├── VLC_PlayerLibrary.tps │ │ └── x64 │ │ └── Release │ │ ├── libvlc.dll │ │ ├── libvlc.lib │ │ ├── libvlccore.dll │ │ ├── libvlccore.lib │ │ └── plugins │ │ ├── access │ │ ├── libaccess_concat_plugin.dll │ │ ├── libaccess_imem_plugin.dll │ │ ├── libaccess_mms_plugin.dll │ │ ├── libaccess_realrtsp_plugin.dll │ │ ├── libaccess_srt_plugin.dll │ │ ├── libaccess_wasapi_plugin.dll │ │ ├── libattachment_plugin.dll │ │ ├── libbluray-awt-j2se-1.1.2.jar │ │ ├── libbluray-j2se-1.1.2.jar │ │ ├── libcdda_plugin.dll │ │ ├── libdcp_plugin.dll │ │ ├── libdshow_plugin.dll │ │ ├── libdtv_plugin.dll │ │ ├── libdvdnav_plugin.dll │ │ ├── libdvdread_plugin.dll │ │ ├── libfilesystem_plugin.dll │ │ ├── libftp_plugin.dll │ │ ├── libhttp_plugin.dll │ │ ├── libhttps_plugin.dll │ │ ├── libidummy_plugin.dll │ │ ├── libimem_plugin.dll │ │ ├── liblibbluray_plugin.dll │ │ ├── liblive555_plugin.dll │ │ ├── libnfs_plugin.dll │ │ ├── librtp_plugin.dll │ │ ├── libsatip_plugin.dll │ │ ├── libscreen_plugin.dll │ │ ├── libsdp_plugin.dll │ │ ├── libsftp_plugin.dll │ │ ├── libshm_plugin.dll │ │ ├── libsmb_plugin.dll │ │ ├── libtcp_plugin.dll │ │ ├── libtimecode_plugin.dll │ │ ├── libudp_plugin.dll │ │ ├── libvcd_plugin.dll │ │ ├── libvdr_plugin.dll │ │ └── libvnc_plugin.dll │ │ ├── access_output │ │ ├── libaccess_output_dummy_plugin.dll │ │ ├── libaccess_output_file_plugin.dll │ │ ├── libaccess_output_http_plugin.dll │ │ ├── libaccess_output_livehttp_plugin.dll │ │ ├── libaccess_output_shout_plugin.dll │ │ ├── libaccess_output_srt_plugin.dll │ │ └── libaccess_output_udp_plugin.dll │ │ ├── audio_filter │ │ ├── libaudio_format_plugin.dll │ │ ├── libaudiobargraph_a_plugin.dll │ │ ├── libchorus_flanger_plugin.dll │ │ ├── libcompressor_plugin.dll │ │ ├── libdolby_surround_decoder_plugin.dll │ │ ├── libequalizer_plugin.dll │ │ ├── libgain_plugin.dll │ │ ├── libheadphone_channel_mixer_plugin.dll │ │ ├── libkaraoke_plugin.dll │ │ ├── libmad_plugin.dll │ │ ├── libmono_plugin.dll │ │ ├── libnormvol_plugin.dll │ │ ├── libparam_eq_plugin.dll │ │ ├── libremap_plugin.dll │ │ ├── libsamplerate_plugin.dll │ │ ├── libscaletempo_pitch_plugin.dll │ │ ├── libscaletempo_plugin.dll │ │ ├── libsimple_channel_mixer_plugin.dll │ │ ├── libspatialaudio_plugin.dll │ │ ├── libspatializer_plugin.dll │ │ ├── libspeex_resampler_plugin.dll │ │ ├── libstereo_widen_plugin.dll │ │ ├── libtospdif_plugin.dll │ │ ├── libtrivial_channel_mixer_plugin.dll │ │ └── libugly_resampler_plugin.dll │ │ ├── audio_mixer │ │ ├── libfloat_mixer_plugin.dll │ │ └── libinteger_mixer_plugin.dll │ │ ├── audio_output │ │ ├── libadummy_plugin.dll │ │ ├── libafile_plugin.dll │ │ ├── libamem_plugin.dll │ │ ├── libdirectsound_plugin.dll │ │ ├── libmmdevice_plugin.dll │ │ ├── libwasapi_plugin.dll │ │ └── libwaveout_plugin.dll │ │ ├── codec │ │ ├── liba52_plugin.dll │ │ ├── libadpcm_plugin.dll │ │ ├── libaes3_plugin.dll │ │ ├── libaom_plugin.dll │ │ ├── libaraw_plugin.dll │ │ ├── libaribsub_plugin.dll │ │ ├── libavcodec_plugin.dll │ │ ├── libcc_plugin.dll │ │ ├── libcdg_plugin.dll │ │ ├── libcrystalhd_plugin.dll │ │ ├── libcvdsub_plugin.dll │ │ ├── libd3d11va_plugin.dll │ │ ├── libdav1d_plugin.dll │ │ ├── libdca_plugin.dll │ │ ├── libddummy_plugin.dll │ │ ├── libdmo_plugin.dll │ │ ├── libdvbsub_plugin.dll │ │ ├── libdxva2_plugin.dll │ │ ├── libedummy_plugin.dll │ │ ├── libfaad_plugin.dll │ │ ├── libflac_plugin.dll │ │ ├── libfluidsynth_plugin.dll │ │ ├── libg711_plugin.dll │ │ ├── libjpeg_plugin.dll │ │ ├── libkate_plugin.dll │ │ ├── liblibass_plugin.dll │ │ ├── liblibmpeg2_plugin.dll │ │ ├── liblpcm_plugin.dll │ │ ├── libmft_plugin.dll │ │ ├── libmpg123_plugin.dll │ │ ├── liboggspots_plugin.dll │ │ ├── libopus_plugin.dll │ │ ├── libpng_plugin.dll │ │ ├── libqsv_plugin.dll │ │ ├── librawvideo_plugin.dll │ │ ├── librtpvideo_plugin.dll │ │ ├── libschroedinger_plugin.dll │ │ ├── libscte18_plugin.dll │ │ ├── libscte27_plugin.dll │ │ ├── libsdl_image_plugin.dll │ │ ├── libspdif_plugin.dll │ │ ├── libspeex_plugin.dll │ │ ├── libspudec_plugin.dll │ │ ├── libstl_plugin.dll │ │ ├── libsubsdec_plugin.dll │ │ ├── libsubstx3g_plugin.dll │ │ ├── libsubsusf_plugin.dll │ │ ├── libsvcdsub_plugin.dll │ │ ├── libt140_plugin.dll │ │ ├── libtextst_plugin.dll │ │ ├── libtheora_plugin.dll │ │ ├── libttml_plugin.dll │ │ ├── libtwolame_plugin.dll │ │ ├── libuleaddvaudio_plugin.dll │ │ ├── libvorbis_plugin.dll │ │ ├── libvpx_plugin.dll │ │ ├── libwebvtt_plugin.dll │ │ ├── libx26410b_plugin.dll │ │ ├── libx264_plugin.dll │ │ ├── libx265_plugin.dll │ │ └── libzvbi_plugin.dll │ │ ├── control │ │ ├── libdummy_plugin.dll │ │ ├── libgestures_plugin.dll │ │ ├── libhotkeys_plugin.dll │ │ ├── libnetsync_plugin.dll │ │ ├── libntservice_plugin.dll │ │ ├── liboldrc_plugin.dll │ │ ├── libwin_hotkeys_plugin.dll │ │ └── libwin_msg_plugin.dll │ │ ├── d3d11 │ │ └── libdirect3d11_filters_plugin.dll │ │ ├── d3d9 │ │ └── libdirect3d9_filters_plugin.dll │ │ ├── demux │ │ ├── libadaptive_plugin.dll │ │ ├── libaiff_plugin.dll │ │ ├── libasf_plugin.dll │ │ ├── libau_plugin.dll │ │ ├── libavi_plugin.dll │ │ ├── libcaf_plugin.dll │ │ ├── libdemux_cdg_plugin.dll │ │ ├── libdemux_chromecast_plugin.dll │ │ ├── libdemux_stl_plugin.dll │ │ ├── libdemuxdump_plugin.dll │ │ ├── libdiracsys_plugin.dll │ │ ├── libdirectory_demux_plugin.dll │ │ ├── libes_plugin.dll │ │ ├── libflacsys_plugin.dll │ │ ├── libgme_plugin.dll │ │ ├── libh26x_plugin.dll │ │ ├── libimage_plugin.dll │ │ ├── libmjpeg_plugin.dll │ │ ├── libmkv_plugin.dll │ │ ├── libmod_plugin.dll │ │ ├── libmp4_plugin.dll │ │ ├── libmpc_plugin.dll │ │ ├── libmpgv_plugin.dll │ │ ├── libnoseek_plugin.dll │ │ ├── libnsc_plugin.dll │ │ ├── libnsv_plugin.dll │ │ ├── libnuv_plugin.dll │ │ ├── libogg_plugin.dll │ │ ├── libplaylist_plugin.dll │ │ ├── libps_plugin.dll │ │ ├── libpva_plugin.dll │ │ ├── librawaud_plugin.dll │ │ ├── librawdv_plugin.dll │ │ ├── librawvid_plugin.dll │ │ ├── libreal_plugin.dll │ │ ├── libsid_plugin.dll │ │ ├── libsmf_plugin.dll │ │ ├── libsubtitle_plugin.dll │ │ ├── libts_plugin.dll │ │ ├── libtta_plugin.dll │ │ ├── libty_plugin.dll │ │ ├── libvc1_plugin.dll │ │ ├── libvobsub_plugin.dll │ │ ├── libvoc_plugin.dll │ │ ├── libwav_plugin.dll │ │ └── libxa_plugin.dll │ │ ├── gui │ │ ├── libqt_plugin.dll │ │ └── libskins2_plugin.dll │ │ ├── keystore │ │ ├── libfile_keystore_plugin.dll │ │ └── libmemory_keystore_plugin.dll │ │ ├── logger │ │ ├── libconsole_logger_plugin.dll │ │ └── libfile_logger_plugin.dll │ │ ├── lua │ │ └── liblua_plugin.dll │ │ ├── meta_engine │ │ ├── libfolder_plugin.dll │ │ └── libtaglib_plugin.dll │ │ ├── misc │ │ ├── libaddonsfsstorage_plugin.dll │ │ ├── libaddonsvorepository_plugin.dll │ │ ├── libaudioscrobbler_plugin.dll │ │ ├── libexport_plugin.dll │ │ ├── libfingerprinter_plugin.dll │ │ ├── libgnutls_plugin.dll │ │ ├── liblogger_plugin.dll │ │ ├── libstats_plugin.dll │ │ ├── libvod_rtsp_plugin.dll │ │ └── libxml_plugin.dll │ │ ├── mux │ │ ├── libmux_asf_plugin.dll │ │ ├── libmux_avi_plugin.dll │ │ ├── libmux_dummy_plugin.dll │ │ ├── libmux_mp4_plugin.dll │ │ ├── libmux_mpjpeg_plugin.dll │ │ ├── libmux_ogg_plugin.dll │ │ ├── libmux_ps_plugin.dll │ │ ├── libmux_ts_plugin.dll │ │ └── libmux_wav_plugin.dll │ │ ├── packetizer │ │ ├── libpacketizer_a52_plugin.dll │ │ ├── libpacketizer_av1_plugin.dll │ │ ├── libpacketizer_copy_plugin.dll │ │ ├── libpacketizer_dirac_plugin.dll │ │ ├── libpacketizer_dts_plugin.dll │ │ ├── libpacketizer_flac_plugin.dll │ │ ├── libpacketizer_h264_plugin.dll │ │ ├── libpacketizer_hevc_plugin.dll │ │ ├── libpacketizer_mlp_plugin.dll │ │ ├── libpacketizer_mpeg4audio_plugin.dll │ │ ├── libpacketizer_mpeg4video_plugin.dll │ │ ├── libpacketizer_mpegaudio_plugin.dll │ │ ├── libpacketizer_mpegvideo_plugin.dll │ │ └── libpacketizer_vc1_plugin.dll │ │ ├── services_discovery │ │ ├── libmediadirs_plugin.dll │ │ ├── libmicrodns_plugin.dll │ │ ├── libpodcast_plugin.dll │ │ ├── libsap_plugin.dll │ │ ├── libupnp_plugin.dll │ │ └── libwindrive_plugin.dll │ │ ├── spu │ │ ├── libaudiobargraph_v_plugin.dll │ │ ├── liblogo_plugin.dll │ │ ├── libmarq_plugin.dll │ │ ├── libmosaic_plugin.dll │ │ ├── libremoteosd_plugin.dll │ │ ├── librss_plugin.dll │ │ └── libsubsdelay_plugin.dll │ │ ├── stream_extractor │ │ └── libarchive_plugin.dll │ │ ├── stream_filter │ │ ├── libadf_plugin.dll │ │ ├── libaribcam_plugin.dll │ │ ├── libcache_block_plugin.dll │ │ ├── libcache_read_plugin.dll │ │ ├── libhds_plugin.dll │ │ ├── libinflate_plugin.dll │ │ ├── libprefetch_plugin.dll │ │ ├── librecord_plugin.dll │ │ └── libskiptags_plugin.dll │ │ ├── stream_out │ │ ├── libstream_out_autodel_plugin.dll │ │ ├── libstream_out_bridge_plugin.dll │ │ ├── libstream_out_chromaprint_plugin.dll │ │ ├── libstream_out_chromecast_plugin.dll │ │ ├── libstream_out_cycle_plugin.dll │ │ ├── libstream_out_delay_plugin.dll │ │ ├── libstream_out_description_plugin.dll │ │ ├── libstream_out_display_plugin.dll │ │ ├── libstream_out_dummy_plugin.dll │ │ ├── libstream_out_duplicate_plugin.dll │ │ ├── libstream_out_es_plugin.dll │ │ ├── libstream_out_gather_plugin.dll │ │ ├── libstream_out_mosaic_bridge_plugin.dll │ │ ├── libstream_out_record_plugin.dll │ │ ├── libstream_out_rtp_plugin.dll │ │ ├── libstream_out_setid_plugin.dll │ │ ├── libstream_out_smem_plugin.dll │ │ ├── libstream_out_standard_plugin.dll │ │ ├── libstream_out_stats_plugin.dll │ │ └── libstream_out_transcode_plugin.dll │ │ ├── text_renderer │ │ ├── libfreetype_plugin.dll │ │ ├── libsapi_plugin.dll │ │ └── libtdummy_plugin.dll │ │ ├── video_chroma │ │ ├── libchain_plugin.dll │ │ ├── libgrey_yuv_plugin.dll │ │ ├── libi420_10_p010_plugin.dll │ │ ├── libi420_nv12_plugin.dll │ │ ├── libi420_rgb_mmx_plugin.dll │ │ ├── libi420_rgb_plugin.dll │ │ ├── libi420_rgb_sse2_plugin.dll │ │ ├── libi420_yuy2_mmx_plugin.dll │ │ ├── libi420_yuy2_plugin.dll │ │ ├── libi420_yuy2_sse2_plugin.dll │ │ ├── libi422_i420_plugin.dll │ │ ├── libi422_yuy2_mmx_plugin.dll │ │ ├── libi422_yuy2_plugin.dll │ │ ├── libi422_yuy2_sse2_plugin.dll │ │ ├── librv32_plugin.dll │ │ ├── libswscale_plugin.dll │ │ ├── libyuvp_plugin.dll │ │ ├── libyuy2_i420_plugin.dll │ │ └── libyuy2_i422_plugin.dll │ │ ├── video_filter │ │ ├── libadjust_plugin.dll │ │ ├── libalphamask_plugin.dll │ │ ├── libanaglyph_plugin.dll │ │ ├── libantiflicker_plugin.dll │ │ ├── libball_plugin.dll │ │ ├── libblend_plugin.dll │ │ ├── libblendbench_plugin.dll │ │ ├── libbluescreen_plugin.dll │ │ ├── libcanvas_plugin.dll │ │ ├── libcolorthres_plugin.dll │ │ ├── libcroppadd_plugin.dll │ │ ├── libdeinterlace_plugin.dll │ │ ├── libedgedetection_plugin.dll │ │ ├── liberase_plugin.dll │ │ ├── libextract_plugin.dll │ │ ├── libfps_plugin.dll │ │ ├── libfreeze_plugin.dll │ │ ├── libgaussianblur_plugin.dll │ │ ├── libgradfun_plugin.dll │ │ ├── libgradient_plugin.dll │ │ ├── libgrain_plugin.dll │ │ ├── libhqdn3d_plugin.dll │ │ ├── libinvert_plugin.dll │ │ ├── libmagnify_plugin.dll │ │ ├── libmirror_plugin.dll │ │ ├── libmotionblur_plugin.dll │ │ ├── libmotiondetect_plugin.dll │ │ ├── liboldmovie_plugin.dll │ │ ├── libposterize_plugin.dll │ │ ├── libpostproc_plugin.dll │ │ ├── libpsychedelic_plugin.dll │ │ ├── libpuzzle_plugin.dll │ │ ├── libripple_plugin.dll │ │ ├── librotate_plugin.dll │ │ ├── libscale_plugin.dll │ │ ├── libscene_plugin.dll │ │ ├── libsepia_plugin.dll │ │ ├── libsharpen_plugin.dll │ │ ├── libtransform_plugin.dll │ │ ├── libvhs_plugin.dll │ │ └── libwave_plugin.dll │ │ ├── video_output │ │ ├── libcaca_plugin.dll │ │ ├── libdirect3d11_plugin.dll │ │ ├── libdirect3d9_plugin.dll │ │ ├── libdirectdraw_plugin.dll │ │ ├── libdrawable_plugin.dll │ │ ├── libflaschen_plugin.dll │ │ ├── libgl_plugin.dll │ │ ├── libglwin32_plugin.dll │ │ ├── libvdummy_plugin.dll │ │ ├── libvmem_plugin.dll │ │ ├── libwgl_plugin.dll │ │ ├── libwingdi_plugin.dll │ │ ├── libwinhibit_plugin.dll │ │ └── libyuv_plugin.dll │ │ ├── video_splitter │ │ ├── libclone_plugin.dll │ │ ├── libpanoramix_plugin.dll │ │ └── libwall_plugin.dll │ │ └── visualization │ │ ├── libglspectrum_plugin.dll │ │ ├── libgoom_plugin.dll │ │ ├── libprojectm_plugin.dll │ │ └── libvisual_plugin.dll └── VLC_Player │ ├── Private │ ├── VLC_Actor.cpp │ └── VLC_Player.cpp │ ├── Public │ ├── VLC_Actor.h │ ├── VLC_Player.h │ └── vlc │ │ ├── deprecated.h │ │ ├── libvlc.h │ │ ├── libvlc_dialog.h │ │ ├── libvlc_events.h │ │ ├── libvlc_media.h │ │ ├── libvlc_media_discoverer.h │ │ ├── libvlc_media_library.h │ │ ├── libvlc_media_list.h │ │ ├── libvlc_media_list_player.h │ │ ├── libvlc_media_player.h │ │ ├── libvlc_renderer_discoverer.h │ │ ├── libvlc_version.h │ │ ├── libvlc_vlm.h │ │ ├── plugins │ │ ├── vlc_about.h │ │ ├── vlc_access.h │ │ ├── vlc_actions.h │ │ ├── vlc_addons.h │ │ ├── vlc_aout.h │ │ ├── vlc_aout_volume.h │ │ ├── vlc_arrays.h │ │ ├── vlc_atomic.h │ │ ├── vlc_avcodec.h │ │ ├── vlc_bits.h │ │ ├── vlc_block.h │ │ ├── vlc_block_helper.h │ │ ├── vlc_boxes.h │ │ ├── vlc_charset.h │ │ ├── vlc_codec.h │ │ ├── vlc_common.h │ │ ├── vlc_config.h │ │ ├── vlc_config_cat.h │ │ ├── vlc_configuration.h │ │ ├── vlc_cpu.h │ │ ├── vlc_demux.h │ │ ├── vlc_dialog.h │ │ ├── vlc_epg.h │ │ ├── vlc_es.h │ │ ├── vlc_es_out.h │ │ ├── vlc_events.h │ │ ├── vlc_filter.h │ │ ├── vlc_fingerprinter.h │ │ ├── vlc_fourcc.h │ │ ├── vlc_fs.h │ │ ├── vlc_gcrypt.h │ │ ├── vlc_http.h │ │ ├── vlc_httpd.h │ │ ├── vlc_image.h │ │ ├── vlc_inhibit.h │ │ ├── vlc_input.h │ │ ├── vlc_input_item.h │ │ ├── vlc_interface.h │ │ ├── vlc_interrupt.h │ │ ├── vlc_keystore.h │ │ ├── vlc_main.h │ │ ├── vlc_md5.h │ │ ├── vlc_media_library.h │ │ ├── vlc_memstream.h │ │ ├── vlc_messages.h │ │ ├── vlc_meta.h │ │ ├── vlc_meta_fetcher.h │ │ ├── vlc_mime.h │ │ ├── vlc_modules.h │ │ ├── vlc_mouse.h │ │ ├── vlc_mtime.h │ │ ├── vlc_network.h │ │ ├── vlc_objects.h │ │ ├── vlc_opengl.h │ │ ├── vlc_picture.h │ │ ├── vlc_picture_fifo.h │ │ ├── vlc_picture_pool.h │ │ ├── vlc_playlist.h │ │ ├── vlc_plugin.h │ │ ├── vlc_probe.h │ │ ├── vlc_rand.h │ │ ├── vlc_renderer_discovery.h │ │ ├── vlc_services_discovery.h │ │ ├── vlc_sout.h │ │ ├── vlc_spu.h │ │ ├── vlc_stream.h │ │ ├── vlc_stream_extractor.h │ │ ├── vlc_strings.h │ │ ├── vlc_subpicture.h │ │ ├── vlc_text_style.h │ │ ├── vlc_threads.h │ │ ├── vlc_timestamp_helper.h │ │ ├── vlc_tls.h │ │ ├── vlc_url.h │ │ ├── vlc_variables.h │ │ ├── vlc_video_splitter.h │ │ ├── vlc_viewpoint.h │ │ ├── vlc_vlm.h │ │ ├── vlc_vout.h │ │ ├── vlc_vout_display.h │ │ ├── vlc_vout_osd.h │ │ ├── vlc_vout_window.h │ │ ├── vlc_xlib.h │ │ └── vlc_xml.h │ │ └── vlc.h │ └── VLC_Player.Build.cs └── VLC_Player.uplugin /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/Maps/ExampleMap.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Content/Maps/ExampleMap.umap -------------------------------------------------------------------------------- /Content/Maps/ExampleMap_BuiltData.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Content/Maps/ExampleMap_BuiltData.uasset -------------------------------------------------------------------------------- /Content/Maps/Test.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Content/Maps/Test.umap -------------------------------------------------------------------------------- /Content/Materials/M_ParentMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Content/Materials/M_ParentMaterial.uasset -------------------------------------------------------------------------------- /Content/Materials/M_ParentMaterial_UI.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Content/Materials/M_ParentMaterial_UI.uasset -------------------------------------------------------------------------------- /Content/Movies/EndGFX.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Content/Movies/EndGFX.wmv -------------------------------------------------------------------------------- /Content/Widgets/WB_MovieTest.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Content/Widgets/WB_MovieTest.uasset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/VLC_PlayerLibrary.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/VLC_PlayerLibrary.Build.cs -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/VLC_PlayerLibrary.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/VLC_PlayerLibrary.tps -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/libvlc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/libvlc.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/libvlc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/libvlc.lib -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/libvlccore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/libvlccore.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/libvlccore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/libvlccore.lib -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libaccess_concat_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libaccess_concat_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libaccess_imem_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libaccess_imem_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libaccess_mms_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libaccess_mms_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libaccess_realrtsp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libaccess_realrtsp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libaccess_srt_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libaccess_srt_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libaccess_wasapi_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libaccess_wasapi_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libattachment_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libattachment_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libbluray-awt-j2se-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libbluray-awt-j2se-1.1.2.jar -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libbluray-j2se-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libbluray-j2se-1.1.2.jar -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libcdda_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libcdda_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libdcp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libdcp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libdshow_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libdshow_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libdtv_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libdtv_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libdvdnav_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libdvdnav_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libdvdread_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libdvdread_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libfilesystem_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libfilesystem_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libftp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libftp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libhttp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libhttp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libhttps_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libhttps_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libidummy_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libidummy_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libimem_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libimem_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/liblibbluray_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/liblibbluray_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/liblive555_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/liblive555_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libnfs_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libnfs_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/librtp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/librtp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libsatip_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libsatip_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libscreen_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libscreen_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libsdp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libsdp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libsftp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libsftp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libshm_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libshm_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libsmb_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libsmb_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libtcp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libtcp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libtimecode_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libtimecode_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libudp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libudp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libvcd_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libvcd_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libvdr_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libvdr_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libvnc_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access/libvnc_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_dummy_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_dummy_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_file_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_file_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_http_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_http_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_livehttp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_livehttp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_shout_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_shout_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_srt_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_srt_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_udp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/access_output/libaccess_output_udp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libaudio_format_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libaudio_format_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libaudiobargraph_a_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libaudiobargraph_a_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libchorus_flanger_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libchorus_flanger_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libcompressor_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libcompressor_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libdolby_surround_decoder_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libdolby_surround_decoder_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libequalizer_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libequalizer_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libgain_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libgain_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libheadphone_channel_mixer_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libheadphone_channel_mixer_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libkaraoke_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libkaraoke_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libmad_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libmad_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libmono_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libmono_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libnormvol_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libnormvol_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libparam_eq_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libparam_eq_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libremap_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libremap_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libsamplerate_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libsamplerate_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libscaletempo_pitch_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libscaletempo_pitch_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libscaletempo_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libscaletempo_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libsimple_channel_mixer_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libsimple_channel_mixer_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libspatialaudio_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libspatialaudio_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libspatializer_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libspatializer_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libspeex_resampler_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libspeex_resampler_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libstereo_widen_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libstereo_widen_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libtospdif_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libtospdif_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libtrivial_channel_mixer_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libtrivial_channel_mixer_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libugly_resampler_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_filter/libugly_resampler_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_mixer/libfloat_mixer_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_mixer/libfloat_mixer_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_mixer/libinteger_mixer_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_mixer/libinteger_mixer_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libadummy_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libadummy_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libafile_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libafile_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libamem_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libamem_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libdirectsound_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libdirectsound_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libmmdevice_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libmmdevice_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libwasapi_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libwasapi_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libwaveout_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/audio_output/libwaveout_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/liba52_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/liba52_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libadpcm_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libadpcm_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libaes3_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libaes3_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libaom_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libaom_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libaraw_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libaraw_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libaribsub_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libaribsub_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libavcodec_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libavcodec_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libcc_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libcc_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libcdg_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libcdg_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libcrystalhd_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libcrystalhd_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libcvdsub_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libcvdsub_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libd3d11va_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libd3d11va_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libdav1d_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libdav1d_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libdca_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libdca_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libddummy_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libddummy_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libdmo_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libdmo_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libdvbsub_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libdvbsub_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libdxva2_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libdxva2_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libedummy_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libedummy_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libfaad_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libfaad_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libflac_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libflac_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libfluidsynth_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libfluidsynth_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libg711_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libg711_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libjpeg_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libjpeg_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libkate_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libkate_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/liblibass_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/liblibass_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/liblibmpeg2_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/liblibmpeg2_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/liblpcm_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/liblpcm_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libmft_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libmft_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libmpg123_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libmpg123_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/liboggspots_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/liboggspots_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libopus_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libopus_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libpng_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libpng_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libqsv_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libqsv_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/librawvideo_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/librawvideo_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/librtpvideo_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/librtpvideo_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libschroedinger_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libschroedinger_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libscte18_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libscte18_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libscte27_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libscte27_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libsdl_image_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libsdl_image_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libspdif_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libspdif_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libspeex_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libspeex_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libspudec_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libspudec_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libstl_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libstl_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libsubsdec_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libsubsdec_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libsubstx3g_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libsubstx3g_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libsubsusf_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libsubsusf_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libsvcdsub_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libsvcdsub_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libt140_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libt140_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libtextst_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libtextst_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libtheora_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libtheora_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libttml_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libttml_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libtwolame_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libtwolame_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libuleaddvaudio_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libuleaddvaudio_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libvorbis_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libvorbis_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libvpx_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libvpx_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libwebvtt_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libwebvtt_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libx26410b_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libx26410b_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libx264_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libx264_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libx265_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libx265_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libzvbi_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/codec/libzvbi_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libdummy_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libdummy_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libgestures_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libgestures_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libhotkeys_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libhotkeys_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libnetsync_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libnetsync_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libntservice_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libntservice_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/liboldrc_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/liboldrc_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libwin_hotkeys_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libwin_hotkeys_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libwin_msg_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/control/libwin_msg_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/d3d11/libdirect3d11_filters_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/d3d11/libdirect3d11_filters_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/d3d9/libdirect3d9_filters_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/d3d9/libdirect3d9_filters_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libadaptive_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libadaptive_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libaiff_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libaiff_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libasf_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libasf_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libau_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libau_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libavi_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libavi_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libcaf_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libcaf_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libdemux_cdg_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libdemux_cdg_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libdemux_chromecast_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libdemux_chromecast_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libdemux_stl_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libdemux_stl_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libdemuxdump_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libdemuxdump_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libdiracsys_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libdiracsys_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libdirectory_demux_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libdirectory_demux_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libes_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libes_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libflacsys_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libflacsys_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libgme_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libgme_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libh26x_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libh26x_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libimage_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libimage_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libmjpeg_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libmjpeg_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libmkv_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libmkv_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libmod_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libmod_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libmp4_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libmp4_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libmpc_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libmpc_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libmpgv_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libmpgv_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libnoseek_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libnoseek_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libnsc_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libnsc_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libnsv_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libnsv_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libnuv_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libnuv_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libogg_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libogg_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libplaylist_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libplaylist_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libps_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libps_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libpva_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libpva_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/librawaud_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/librawaud_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/librawdv_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/librawdv_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/librawvid_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/librawvid_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libreal_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libreal_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libsid_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libsid_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libsmf_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libsmf_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libsubtitle_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libsubtitle_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libts_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libts_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libtta_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libtta_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libty_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libty_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libvc1_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libvc1_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libvobsub_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libvobsub_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libvoc_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libvoc_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libwav_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libwav_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libxa_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/demux/libxa_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/gui/libqt_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/gui/libqt_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/gui/libskins2_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/gui/libskins2_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/keystore/libfile_keystore_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/keystore/libfile_keystore_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/keystore/libmemory_keystore_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/keystore/libmemory_keystore_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/logger/libconsole_logger_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/logger/libconsole_logger_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/logger/libfile_logger_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/logger/libfile_logger_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/lua/liblua_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/lua/liblua_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/meta_engine/libfolder_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/meta_engine/libfolder_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/meta_engine/libtaglib_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/meta_engine/libtaglib_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libaddonsfsstorage_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libaddonsfsstorage_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libaddonsvorepository_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libaddonsvorepository_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libaudioscrobbler_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libaudioscrobbler_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libexport_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libexport_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libfingerprinter_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libfingerprinter_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libgnutls_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libgnutls_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/liblogger_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/liblogger_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libstats_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libstats_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libvod_rtsp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libvod_rtsp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libxml_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/misc/libxml_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_asf_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_asf_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_avi_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_avi_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_dummy_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_dummy_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_mp4_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_mp4_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_mpjpeg_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_mpjpeg_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_ogg_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_ogg_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_ps_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_ps_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_ts_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_ts_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_wav_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/mux/libmux_wav_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_a52_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_a52_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_av1_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_av1_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_copy_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_copy_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_dirac_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_dirac_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_dts_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_dts_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_flac_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_flac_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_h264_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_h264_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_hevc_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_hevc_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_mlp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_mlp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_mpeg4audio_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_mpeg4audio_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_mpeg4video_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_mpeg4video_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_mpegaudio_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_mpegaudio_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_mpegvideo_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_mpegvideo_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_vc1_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/packetizer/libpacketizer_vc1_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/services_discovery/libmediadirs_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/services_discovery/libmediadirs_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/services_discovery/libmicrodns_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/services_discovery/libmicrodns_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/services_discovery/libpodcast_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/services_discovery/libpodcast_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/services_discovery/libsap_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/services_discovery/libsap_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/services_discovery/libupnp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/services_discovery/libupnp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/services_discovery/libwindrive_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/services_discovery/libwindrive_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/libaudiobargraph_v_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/libaudiobargraph_v_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/liblogo_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/liblogo_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/libmarq_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/libmarq_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/libmosaic_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/libmosaic_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/libremoteosd_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/libremoteosd_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/librss_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/librss_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/libsubsdelay_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/spu/libsubsdelay_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_extractor/libarchive_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_extractor/libarchive_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libadf_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libadf_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libaribcam_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libaribcam_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libcache_block_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libcache_block_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libcache_read_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libcache_read_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libhds_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libhds_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libinflate_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libinflate_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libprefetch_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libprefetch_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/librecord_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/librecord_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libskiptags_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_filter/libskiptags_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_autodel_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_autodel_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_bridge_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_bridge_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_chromaprint_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_chromaprint_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_chromecast_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_chromecast_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_cycle_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_cycle_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_delay_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_delay_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_description_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_description_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_display_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_display_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_dummy_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_dummy_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_duplicate_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_duplicate_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_es_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_es_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_gather_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_gather_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_mosaic_bridge_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_mosaic_bridge_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_record_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_record_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_rtp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_rtp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_setid_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_setid_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_smem_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_smem_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_standard_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_standard_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_stats_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_stats_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_transcode_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/stream_out/libstream_out_transcode_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/text_renderer/libfreetype_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/text_renderer/libfreetype_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/text_renderer/libsapi_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/text_renderer/libsapi_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/text_renderer/libtdummy_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/text_renderer/libtdummy_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libchain_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libchain_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libgrey_yuv_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libgrey_yuv_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_10_p010_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_10_p010_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_nv12_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_nv12_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_rgb_mmx_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_rgb_mmx_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_rgb_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_rgb_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_rgb_sse2_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_rgb_sse2_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_yuy2_mmx_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_yuy2_mmx_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_yuy2_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_yuy2_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_yuy2_sse2_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi420_yuy2_sse2_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi422_i420_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi422_i420_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi422_yuy2_mmx_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi422_yuy2_mmx_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi422_yuy2_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi422_yuy2_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi422_yuy2_sse2_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libi422_yuy2_sse2_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/librv32_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/librv32_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libswscale_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libswscale_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libyuvp_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libyuvp_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libyuy2_i420_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libyuy2_i420_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libyuy2_i422_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_chroma/libyuy2_i422_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libadjust_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libadjust_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libalphamask_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libalphamask_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libanaglyph_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libanaglyph_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libantiflicker_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libantiflicker_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libball_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libball_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libblend_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libblend_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libblendbench_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libblendbench_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libbluescreen_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libbluescreen_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libcanvas_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libcanvas_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libcolorthres_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libcolorthres_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libcroppadd_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libcroppadd_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libdeinterlace_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libdeinterlace_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libedgedetection_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libedgedetection_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/liberase_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/liberase_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libextract_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libextract_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libfps_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libfps_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libfreeze_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libfreeze_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libgaussianblur_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libgaussianblur_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libgradfun_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libgradfun_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libgradient_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libgradient_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libgrain_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libgrain_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libhqdn3d_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libhqdn3d_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libinvert_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libinvert_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libmagnify_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libmagnify_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libmirror_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libmirror_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libmotionblur_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libmotionblur_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libmotiondetect_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libmotiondetect_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/liboldmovie_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/liboldmovie_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libposterize_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libposterize_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libpostproc_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libpostproc_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libpsychedelic_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libpsychedelic_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libpuzzle_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libpuzzle_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libripple_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libripple_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/librotate_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/librotate_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libscale_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libscale_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libscene_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libscene_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libsepia_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libsepia_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libsharpen_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libsharpen_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libtransform_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libtransform_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libvhs_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libvhs_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libwave_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_filter/libwave_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libcaca_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libcaca_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libdirect3d11_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libdirect3d11_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libdirect3d9_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libdirect3d9_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libdirectdraw_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libdirectdraw_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libdrawable_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libdrawable_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libflaschen_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libflaschen_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libgl_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libgl_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libglwin32_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libglwin32_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libvdummy_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libvdummy_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libvmem_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libvmem_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libwgl_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libwgl_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libwingdi_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libwingdi_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libwinhibit_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libwinhibit_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libyuv_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_output/libyuv_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_splitter/libclone_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_splitter/libclone_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_splitter/libpanoramix_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_splitter/libpanoramix_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_splitter/libwall_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/video_splitter/libwall_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/visualization/libglspectrum_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/visualization/libglspectrum_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/visualization/libgoom_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/visualization/libgoom_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/visualization/libprojectm_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/visualization/libprojectm_plugin.dll -------------------------------------------------------------------------------- /Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/visualization/libvisual_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/ThirdParty/VLC_PlayerLibrary/x64/Release/plugins/visualization/libvisual_plugin.dll -------------------------------------------------------------------------------- /Source/VLC_Player/Private/VLC_Actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Private/VLC_Actor.cpp -------------------------------------------------------------------------------- /Source/VLC_Player/Private/VLC_Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Private/VLC_Player.cpp -------------------------------------------------------------------------------- /Source/VLC_Player/Public/VLC_Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/VLC_Actor.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/VLC_Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/VLC_Player.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/deprecated.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/libvlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/libvlc.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/libvlc_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/libvlc_dialog.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/libvlc_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/libvlc_events.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/libvlc_media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/libvlc_media.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/libvlc_media_discoverer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/libvlc_media_discoverer.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/libvlc_media_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/libvlc_media_library.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/libvlc_media_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/libvlc_media_list.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/libvlc_media_list_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/libvlc_media_list_player.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/libvlc_media_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/libvlc_media_player.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/libvlc_renderer_discoverer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/libvlc_renderer_discoverer.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/libvlc_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/libvlc_version.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/libvlc_vlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/libvlc_vlm.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_about.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_access.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_actions.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_addons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_addons.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_aout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_aout.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_aout_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_aout_volume.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_arrays.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_atomic.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_avcodec.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_bits.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_block.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_block_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_block_helper.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_boxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_boxes.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_charset.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_codec.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_common.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_config.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_config_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_config_cat.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_configuration.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_cpu.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_demux.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_dialog.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_epg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_epg.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_es.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_es.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_es_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_es_out.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_events.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_filter.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_fingerprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_fingerprinter.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_fourcc.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_fs.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_gcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_gcrypt.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_http.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_httpd.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_image.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_inhibit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_inhibit.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_input.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_input_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_input_item.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_interface.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_interrupt.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_keystore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_keystore.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_main.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_md5.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_media_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_media_library.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_memstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_memstream.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_messages.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_meta.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_meta_fetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_meta_fetcher.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_mime.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_modules.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_mouse.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_mtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_mtime.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_network.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_objects.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_opengl.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_picture.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_picture_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_picture_fifo.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_picture_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_picture_pool.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_playlist.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_plugin.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_probe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_probe.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_rand.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_renderer_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_renderer_discovery.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_services_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_services_discovery.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_sout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_sout.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_spu.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_stream.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_stream_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_stream_extractor.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_strings.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_subpicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_subpicture.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_text_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_text_style.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_threads.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_timestamp_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_timestamp_helper.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_tls.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_url.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_variables.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_video_splitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_video_splitter.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_viewpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_viewpoint.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_vlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_vlm.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_vout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_vout.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_vout_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_vout_display.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_vout_osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_vout_osd.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_vout_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_vout_window.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_xlib.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/plugins/vlc_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/plugins/vlc_xml.h -------------------------------------------------------------------------------- /Source/VLC_Player/Public/vlc/vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/Public/vlc/vlc.h -------------------------------------------------------------------------------- /Source/VLC_Player/VLC_Player.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/Source/VLC_Player/VLC_Player.Build.cs -------------------------------------------------------------------------------- /VLC_Player.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegionFu/VLC_Player/HEAD/VLC_Player.uplugin --------------------------------------------------------------------------------