在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C#sharpRTSPDemo

C#sharpRTSPDemo

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:146.87M
  • 下载次数:13
  • 浏览次数:350
  • 发布时间:2021-01-18
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
在c#中直接调用ffmpeg接口有些困难,可以直接改造ffmepg的示例代码demuxing.c ,封装成dll给c#调用,在c#直接用一个pixtruebox就Ok了。
【实例截图】
【核心代码】
708e896a-b738-4b66-81b8-f5c5749c698b
└── C#sharpRTSPDemo
├── CSharpVLC
│   ├── CSharpVLC
│   │   ├── about.cs
│   │   ├── about.Designer.cs
│   │   ├── about.resx
│   │   ├── addressIn.cs
│   │   ├── addressIn.Designer.cs
│   │   ├── addressIn.resx
│   │   ├── App.config
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── app.publish
│   │   │   │   │   └── CSharpVLC.exe
│   │   │   │   ├── CSharpVLC.application
│   │   │   │   ├── CSharpVLC.exe
│   │   │   │   ├── CSharpVLC.exe.config
│   │   │   │   ├── CSharpVLC.exe.manifest
│   │   │   │   ├── CSharpVLC.pdb
│   │   │   │   ├── CSharpVLC.vshost.application
│   │   │   │   ├── CSharpVLC.vshost.exe
│   │   │   │   ├── CSharpVLC.vshost.exe.config
│   │   │   │   ├── CSharpVLC.vshost.exe.manifest
│   │   │   │   ├── libvlccore.dll
│   │   │   │   ├── libvlc.dll
│   │   │   │   ├── npvlc.dll
│   │   │   │   └── plugins
│   │   │   │   ├── access
│   │   │   │   │   ├── libaccess_attachment_plugin.dll
│   │   │   │   │   ├── libaccess_bd_plugin.dll
│   │   │   │   │   ├── libaccess_ftp_plugin.dll
│   │   │   │   │   ├── libaccess_http_plugin.dll
│   │   │   │   │   ├── libaccess_imem_plugin.dll
│   │   │   │   │   ├── libaccess_mms_plugin.dll
│   │   │   │   │   ├── libaccess_rar_plugin.dll
│   │   │   │   │   ├── libaccess_realrtsp_plugin.dll
│   │   │   │   │   ├── libaccess_smb_plugin.dll
│   │   │   │   │   ├── libaccess_tcp_plugin.dll
│   │   │   │   │   ├── libaccess_udp_plugin.dll
│   │   │   │   │   ├── libaccess_vdr_plugin.dll
│   │   │   │   │   ├── libcdda_plugin.dll
│   │   │   │   │   ├── libdshow_plugin.dll
│   │   │   │   │   ├── libdtv_plugin.dll
│   │   │   │   │   ├── libdvdnav_plugin.dll
│   │   │   │   │   ├── libdvdread_plugin.dll
│   │   │   │   │   ├── libfilesystem_plugin.dll
│   │   │   │   │   ├── libidummy_plugin.dll
│   │   │   │   │   ├── liblibbluray_plugin.dll
│   │   │   │   │   ├── liblive555_plugin.dll
│   │   │   │   │   ├── librtp_plugin.dll
│   │   │   │   │   ├── libscreen_plugin.dll
│   │   │   │   │   ├── libsdp_plugin.dll
│   │   │   │   │   ├── libshm_plugin.dll
│   │   │   │   │   ├── libstream_filter_rar_plugin.dll
│   │   │   │   │   ├── libtimecode_plugin.dll
│   │   │   │   │   ├── libvcd_plugin.dll
│   │   │   │   │   └── libzip_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_udp_plugin.dll
│   │   │   │   ├── audio_filter
│   │   │   │   │   ├── liba52tofloat32_plugin.dll
│   │   │   │   │   ├── liba52tospdif_plugin.dll
│   │   │   │   │   ├── libaudiobargraph_a_plugin.dll
│   │   │   │   │   ├── libaudio_format_plugin.dll
│   │   │   │   │   ├── libchorus_flanger_plugin.dll
│   │   │   │   │   ├── libcompressor_plugin.dll
│   │   │   │   │   ├── libdolby_surround_decoder_plugin.dll
│   │   │   │   │   ├── libdtstofloat32_plugin.dll
│   │   │   │   │   ├── libdtstospdif_plugin.dll
│   │   │   │   │   ├── libequalizer_plugin.dll
│   │   │   │   │   ├── libgain_plugin.dll
│   │   │   │   │   ├── libheadphone_channel_mixer_plugin.dll
│   │   │   │   │   ├── libkaraoke_plugin.dll
│   │   │   │   │   ├── libmono_plugin.dll
│   │   │   │   │   ├── libmpgatofixed32_plugin.dll
│   │   │   │   │   ├── libnormvol_plugin.dll
│   │   │   │   │   ├── libparam_eq_plugin.dll
│   │   │   │   │   ├── libremap_plugin.dll
│   │   │   │   │   ├── libsamplerate_plugin.dll
│   │   │   │   │   ├── libscaletempo_plugin.dll
│   │   │   │   │   ├── libsimple_channel_mixer_plugin.dll
│   │   │   │   │   ├── libspatializer_plugin.dll
│   │   │   │   │   ├── libspeex_resampler_plugin.dll
│   │   │   │   │   ├── libstereo_widen_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
│   │   │   │   │   └── libwaveout_plugin.dll
│   │   │   │   ├── codec
│   │   │   │   │   ├── liba52_plugin.dll
│   │   │   │   │   ├── libadpcm_plugin.dll
│   │   │   │   │   ├── libaes3_plugin.dll
│   │   │   │   │   ├── libaraw_plugin.dll
│   │   │   │   │   ├── libavcodec_plugin.dll
│   │   │   │   │   ├── libcc_plugin.dll
│   │   │   │   │   ├── libcdg_plugin.dll
│   │   │   │   │   ├── libcrystalhd_plugin.dll
│   │   │   │   │   ├── libcvdsub_plugin.dll
│   │   │   │   │   ├── libddummy_plugin.dll
│   │   │   │   │   ├── libdmo_plugin.dll
│   │   │   │   │   ├── libdts_plugin.dll
│   │   │   │   │   ├── libdvbsub_plugin.dll
│   │   │   │   │   ├── libdxva2_plugin.dll
│   │   │   │   │   ├── libedummy_plugin.dll
│   │   │   │   │   ├── libfaad_plugin.dll
│   │   │   │   │   ├── libflac_plugin.dll
│   │   │   │   │   ├── libg711_plugin.dll
│   │   │   │   │   ├── libkate_plugin.dll
│   │   │   │   │   ├── liblibass_plugin.dll
│   │   │   │   │   ├── liblibmpeg2_plugin.dll
│   │   │   │   │   ├── liblpcm_plugin.dll
│   │   │   │   │   ├── libmpeg_audio_plugin.dll
│   │   │   │   │   ├── libopus_plugin.dll
│   │   │   │   │   ├── libpng_plugin.dll
│   │   │   │   │   ├── libquicktime_plugin.dll
│   │   │   │   │   ├── librawvideo_plugin.dll
│   │   │   │   │   ├── libschroedinger_plugin.dll
│   │   │   │   │   ├── libscte27_plugin.dll
│   │   │   │   │   ├── libspeex_plugin.dll
│   │   │   │   │   ├── libspudec_plugin.dll
│   │   │   │   │   ├── libstl_plugin.dll
│   │   │   │   │   ├── libsubsdec_plugin.dll
│   │   │   │   │   ├── libsubsusf_plugin.dll
│   │   │   │   │   ├── libsvcdsub_plugin.dll
│   │   │   │   │   ├── libt140_plugin.dll
│   │   │   │   │   ├── libtheora_plugin.dll
│   │   │   │   │   ├── libtwolame_plugin.dll
│   │   │   │   │   ├── libuleaddvaudio_plugin.dll
│   │   │   │   │   ├── libvorbis_plugin.dll
│   │   │   │   │   ├── libx264_plugin.dll
│   │   │   │   │   └── libzvbi_plugin.dll
│   │   │   │   ├── control
│   │   │   │   │   ├── libdummy_plugin.dll
│   │   │   │   │   ├── libgestures_plugin.dll
│   │   │   │   │   ├── libglobalhotkeys_plugin.dll
│   │   │   │   │   ├── libhotkeys_plugin.dll
│   │   │   │   │   ├── libnetsync_plugin.dll
│   │   │   │   │   ├── libntservice_plugin.dll
│   │   │   │   │   └── liboldrc_plugin.dll
│   │   │   │   ├── demux
│   │   │   │   │   ├── libaiff_plugin.dll
│   │   │   │   │   ├── libasf_plugin.dll
│   │   │   │   │   ├── libau_plugin.dll
│   │   │   │   │   ├── libavi_plugin.dll
│   │   │   │   │   ├── libdemux_cdg_plugin.dll
│   │   │   │   │   ├── libdemuxdump_plugin.dll
│   │   │   │   │   ├── libdemux_stl_plugin.dll
│   │   │   │   │   ├── libdirac_plugin.dll
│   │   │   │   │   ├── libes_plugin.dll
│   │   │   │   │   ├── libflacsys_plugin.dll
│   │   │   │   │   ├── libgme_plugin.dll
│   │   │   │   │   ├── libh264_plugin.dll
│   │   │   │   │   ├── libimage_plugin.dll
│   │   │   │   │   ├── libmjpeg_plugin.dll
│   │   │   │   │   ├── libmkv_plugin.dll
│   │   │   │   │   ├── libmod_plugin.dll
│   │   │   │   │   ├── libmp4_plugin.dll
│   │   │   │   │   ├── libmpc_plugin.dll
│   │   │   │   │   ├── libmpgv_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
│   │   │   │   │   ├── libqt4_plugin.dll
│   │   │   │   │   └── libskins2_plugin.dll
│   │   │   │   ├── lua
│   │   │   │   │   └── liblua_plugin.dll
│   │   │   │   ├── meta_engine
│   │   │   │   │   ├── libfolder_plugin.dll
│   │   │   │   │   └── libtaglib_plugin.dll
│   │   │   │   ├── misc
│   │   │   │   │   ├── 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
│   │   │   │   ├── mmx
│   │   │   │   │   ├── libi420_rgb_mmx_plugin.dll
│   │   │   │   │   ├── libi420_yuy2_mmx_plugin.dll
│   │   │   │   │   └── libi422_yuy2_mmx_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_copy_plugin.dll
│   │   │   │   │   ├── libpacketizer_dirac_plugin.dll
│   │   │   │   │   ├── libpacketizer_flac_plugin.dll
│   │   │   │   │   ├── libpacketizer_h264_plugin.dll
│   │   │   │   │   ├── libpacketizer_mlp_plugin.dll
│   │   │   │   │   ├── libpacketizer_mpeg4audio_plugin.dll
│   │   │   │   │   ├── libpacketizer_mpeg4video_plugin.dll
│   │   │   │   │   ├── libpacketizer_mpegvideo_plugin.dll
│   │   │   │   │   └── libpacketizer_vc1_plugin.dll
│   │   │   │   ├── plugins.dat
│   │   │   │   ├── services_discovery
│   │   │   │   │   ├── libmediadirs_plugin.dll
│   │   │   │   │   ├── libpodcast_plugin.dll
│   │   │   │   │   ├── libsap_plugin.dll
│   │   │   │   │   ├── libupnp_plugin.dll
│   │   │   │   │   └── libwindrive_plugin.dll
│   │   │   │   ├── sse2
│   │   │   │   │   ├── libi420_rgb_sse2_plugin.dll
│   │   │   │   │   ├── libi420_yuy2_sse2_plugin.dll
│   │   │   │   │   └── libi422_yuy2_sse2_plugin.dll
│   │   │   │   ├── stream_filter
│   │   │   │   │   ├── libdash_plugin.dll
│   │   │   │   │   ├── libhttplive_plugin.dll
│   │   │   │   │   ├── librecord_plugin.dll
│   │   │   │   │   └── libsmooth_plugin.dll
│   │   │   │   ├── stream_out
│   │   │   │   │   ├── libstream_out_autodel_plugin.dll
│   │   │   │   │   ├── libstream_out_bridge_plugin.dll
│   │   │   │   │   ├── libstream_out_chromaprint_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_langfromtelx_plugin.dll
│   │   │   │   │   ├── libstream_out_mosaic_bridge_plugin.dll
│   │   │   │   │   ├── libstream_out_raop_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_transcode_plugin.dll
│   │   │   │   ├── text_renderer
│   │   │   │   │   ├── libfreetype_plugin.dll
│   │   │   │   │   └── libtdummy_plugin.dll
│   │   │   │   ├── video_chroma
│   │   │   │   │   ├── libgrey_yuv_plugin.dll
│   │   │   │   │   ├── libi420_rgb_plugin.dll
│   │   │   │   │   ├── libi420_yuy2_plugin.dll
│   │   │   │   │   ├── libi422_i420_plugin.dll
│   │   │   │   │   ├── libi422_yuy2_plugin.dll
│   │   │   │   │   ├── librv32_plugin.dll
│   │   │   │   │   ├── libyuy2_i420_plugin.dll
│   │   │   │   │   └── libyuy2_i422_plugin.dll
│   │   │   │   ├── video_filter
│   │   │   │   │   ├── libadjust_plugin.dll
│   │   │   │   │   ├── libalphamask_plugin.dll
│   │   │   │   │   ├── libanaglyph_plugin.dll
│   │   │   │   │   ├── libantiflicker_plugin.dll
│   │   │   │   │   ├── libatmo_plugin.dll
│   │   │   │   │   ├── libaudiobargraph_v_plugin.dll
│   │   │   │   │   ├── libball_plugin.dll
│   │   │   │   │   ├── libblendbench_plugin.dll
│   │   │   │   │   ├── libblend_plugin.dll
│   │   │   │   │   ├── libbluescreen_plugin.dll
│   │   │   │   │   ├── libcanvas_plugin.dll
│   │   │   │   │   ├── libchain_plugin.dll
│   │   │   │   │   ├── libclone_plugin.dll
│   │   │   │   │   ├── libcolorthres_plugin.dll
│   │   │   │   │   ├── libcroppadd_plugin.dll
│   │   │   │   │   ├── libdeinterlace_plugin.dll
│   │   │   │   │   ├── liberase_plugin.dll
│   │   │   │   │   ├── libextract_plugin.dll
│   │   │   │   │   ├── libgaussianblur_plugin.dll
│   │   │   │   │   ├── libgradfun_plugin.dll
│   │   │   │   │   ├── libgradient_plugin.dll
│   │   │   │   │   ├── libgrain_plugin.dll
│   │   │   │   │   ├── libhqdn3d_plugin.dll
│   │   │   │   │   ├── libinvert_plugin.dll
│   │   │   │   │   ├── liblogo_plugin.dll
│   │   │   │   │   ├── libmagnify_plugin.dll
│   │   │   │   │   ├── libmarq_plugin.dll
│   │   │   │   │   ├── libmirror_plugin.dll
│   │   │   │   │   ├── libmosaic_plugin.dll
│   │   │   │   │   ├── libmotionblur_plugin.dll
│   │   │   │   │   ├── libmotiondetect_plugin.dll
│   │   │   │   │   ├── libpanoramix_plugin.dll
│   │   │   │   │   ├── libposterize_plugin.dll
│   │   │   │   │   ├── libpostproc_plugin.dll
│   │   │   │   │   ├── libpsychedelic_plugin.dll
│   │   │   │   │   ├── libpuzzle_plugin.dll
│   │   │   │   │   ├── libremoteosd_plugin.dll
│   │   │   │   │   ├── libripple_plugin.dll
│   │   │   │   │   ├── librotate_plugin.dll
│   │   │   │   │   ├── librss_plugin.dll
│   │   │   │   │   ├── libscale_plugin.dll
│   │   │   │   │   ├── libscene_plugin.dll
│   │   │   │   │   ├── libsepia_plugin.dll
│   │   │   │   │   ├── libsharpen_plugin.dll
│   │   │   │   │   ├── libsubsdelay_plugin.dll
│   │   │   │   │   ├── libswscale_plugin.dll
│   │   │   │   │   ├── libtransform_plugin.dll
│   │   │   │   │   ├── libwall_plugin.dll
│   │   │   │   │   ├── libwave_plugin.dll
│   │   │   │   │   └── libyuvp_plugin.dll
│   │   │   │   ├── video_output
│   │   │   │   │   ├── libcaca_plugin.dll
│   │   │   │   │   ├── libdirect2d_plugin.dll
│   │   │   │   │   ├── libdirect3d_plugin.dll
│   │   │   │   │   ├── libdirectdraw_plugin.dll
│   │   │   │   │   ├── libdrawable_plugin.dll
│   │   │   │   │   ├── libglwin32_plugin.dll
│   │   │   │   │   ├── libvdummy_plugin.dll
│   │   │   │   │   ├── libvmem_plugin.dll
│   │   │   │   │   ├── libwingdi_plugin.dll
│   │   │   │   │   └── libyuv_plugin.dll
│   │   │   │   └── visualization
│   │   │   │   ├── libgoom_plugin.dll
│   │   │   │   ├── libprojectm_plugin.dll
│   │   │   │   └── libvisual_plugin.dll
│   │   │   └── Release
│   │   │   ├── app.publish
│   │   │   │   └── CSharpVLC.exe
│   │   │   ├── CSharpVLC.application
│   │   │   ├── CSharpVLC.exe
│   │   │   ├── CSharpVLC.exe.CodeAnalysisLog.xml
│   │   │   ├── CSharpVLC.exe.config
│   │   │   ├── CSharpVLC.exe.lastcodeanalysissucceeded
│   │   │   ├── CSharpVLC.exe.manifest
│   │   │   └── CSharpVLC.pdb
│   │   ├── CSharpVLC.csproj
│   │   ├── CSharpVLC.csproj.user
│   │   ├── CSharpVLC_TemporaryKey.pfx
│   │   ├── frmITNotepad.cs
│   │   ├── frmITNotepad.Designer.cs
│   │   ├── frmITNotepad.resx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── CoreCompileInputs.cache
│   │   │   │   ├── CSharpVLC.about.resources
│   │   │   │   ├── CSharpVLC.application
│   │   │   │   ├── CSharpVLC.csproj.FileListAbsolute.txt
│   │   │   │   ├── CSharpVLC.csproj.GenerateResource.Cache
│   │   │   │   ├── CSharpVLC.csprojResolveAssemblyReference.cache
│   │   │   │   ├── CSharpVLC.exe
│   │   │   │   ├── CSharpVLC.exe.manifest
│   │   │   │   ├── CSharpVLC.frmITNotepad.resources
│   │   │   │   ├── CSharpVLC.pdb
│   │   │   │   ├── CSharpVLC.Properties.Resources.resources
│   │   │   │   ├── CSharpVLC.TrustInfo.xml
│   │   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── RTSP_Client.networkForm.resources
│   │   │   │   ├── RTSP_Client.openFile.resources
│   │   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   │   └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   └── Release
│   │   │   ├── CoreCompileInputs.cache
│   │   │   ├── CSharpVLC.application
│   │   │   ├── CSharpVLC.csproj.FileListAbsolute.txt
│   │   │   ├── CSharpVLC.csproj.GenerateResource.Cache
│   │   │   ├── CSharpVLC.exe
│   │   │   ├── CSharpVLC.exe.manifest
│   │   │   ├── CSharpVLC.frmITNotepad.resources
│   │   │   ├── CSharpVLC.pdb
│   │   │   ├── CSharpVLC.Properties.Resources.resources
│   │   │   ├── CSharpVLC.TrustInfo.xml
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   ├── openFile.cs
│   │   ├── openFile.Designer.cs
│   │   ├── openFile.resx
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── app.manifest
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── UPlayer.cs
│   │   ├── VLC
│   │   │   ├── VLCAPI.cs
│   │   │   ├── VLCPlayer.cs
│   │   │   └── VLCUtil.cs
│   │   └── VLCLib
│   │   ├── libvlccore.dll
│   │   ├── libvlc.dll
│   │   ├── npvlc.dll
│   │   └── plugins
│   │   ├── access
│   │   │   ├── libaccess_attachment_plugin.dll
│   │   │   ├── libaccess_bd_plugin.dll
│   │   │   ├── libaccess_ftp_plugin.dll
│   │   │   ├── libaccess_http_plugin.dll
│   │   │   ├── libaccess_imem_plugin.dll
│   │   │   ├── libaccess_mms_plugin.dll
│   │   │   ├── libaccess_rar_plugin.dll
│   │   │   ├── libaccess_realrtsp_plugin.dll
│   │   │   ├── libaccess_smb_plugin.dll
│   │   │   ├── libaccess_tcp_plugin.dll
│   │   │   ├── libaccess_udp_plugin.dll
│   │   │   ├── libaccess_vdr_plugin.dll
│   │   │   ├── libcdda_plugin.dll
│   │   │   ├── libdshow_plugin.dll
│   │   │   ├── libdtv_plugin.dll
│   │   │   ├── libdvdnav_plugin.dll
│   │   │   ├── libdvdread_plugin.dll
│   │   │   ├── libfilesystem_plugin.dll
│   │   │   ├── libidummy_plugin.dll
│   │   │   ├── liblibbluray_plugin.dll
│   │   │   ├── liblive555_plugin.dll
│   │   │   ├── librtp_plugin.dll
│   │   │   ├── libscreen_plugin.dll
│   │   │   ├── libsdp_plugin.dll
│   │   │   ├── libshm_plugin.dll
│   │   │   ├── libstream_filter_rar_plugin.dll
│   │   │   ├── libtimecode_plugin.dll
│   │   │   ├── libvcd_plugin.dll
│   │   │   └── libzip_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_udp_plugin.dll
│   │   ├── audio_filter
│   │   │   ├── liba52tofloat32_plugin.dll
│   │   │   ├── liba52tospdif_plugin.dll
│   │   │   ├── libaudiobargraph_a_plugin.dll
│   │   │   ├── libaudio_format_plugin.dll
│   │   │   ├── libchorus_flanger_plugin.dll
│   │   │   ├── libcompressor_plugin.dll
│   │   │   ├── libdolby_surround_decoder_plugin.dll
│   │   │   ├── libdtstofloat32_plugin.dll
│   │   │   ├── libdtstospdif_plugin.dll
│   │   │   ├── libequalizer_plugin.dll
│   │   │   ├── libgain_plugin.dll
│   │   │   ├── libheadphone_channel_mixer_plugin.dll
│   │   │   ├── libkaraoke_plugin.dll
│   │   │   ├── libmono_plugin.dll
│   │   │   ├── libmpgatofixed32_plugin.dll
│   │   │   ├── libnormvol_plugin.dll
│   │   │   ├── libparam_eq_plugin.dll
│   │   │   ├── libremap_plugin.dll
│   │   │   ├── libsamplerate_plugin.dll
│   │   │   ├── libscaletempo_plugin.dll
│   │   │   ├── libsimple_channel_mixer_plugin.dll
│   │   │   ├── libspatializer_plugin.dll
│   │   │   ├── libspeex_resampler_plugin.dll
│   │   │   ├── libstereo_widen_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
│   │   │   └── libwaveout_plugin.dll
│   │   ├── codec
│   │   │   ├── liba52_plugin.dll
│   │   │   ├── libadpcm_plugin.dll
│   │   │   ├── libaes3_plugin.dll
│   │   │   ├── libaraw_plugin.dll
│   │   │   ├── libavcodec_plugin.dll
│   │   │   ├── libcc_plugin.dll
│   │   │   ├── libcdg_plugin.dll
│   │   │   ├── libcrystalhd_plugin.dll
│   │   │   ├── libcvdsub_plugin.dll
│   │   │   ├── libddummy_plugin.dll
│   │   │   ├── libdmo_plugin.dll
│   │   │   ├── libdts_plugin.dll
│   │   │   ├── libdvbsub_plugin.dll
│   │   │   ├── libdxva2_plugin.dll
│   │   │   ├── libedummy_plugin.dll
│   │   │   ├── libfaad_plugin.dll
│   │   │   ├── libflac_plugin.dll
│   │   │   ├── libg711_plugin.dll
│   │   │   ├── libkate_plugin.dll
│   │   │   ├── liblibass_plugin.dll
│   │   │   ├── liblibmpeg2_plugin.dll
│   │   │   ├── liblpcm_plugin.dll
│   │   │   ├── libmpeg_audio_plugin.dll
│   │   │   ├── libopus_plugin.dll
│   │   │   ├── libpng_plugin.dll
│   │   │   ├── libquicktime_plugin.dll
│   │   │   ├── librawvideo_plugin.dll
│   │   │   ├── libschroedinger_plugin.dll
│   │   │   ├── libscte27_plugin.dll
│   │   │   ├── libspeex_plugin.dll
│   │   │   ├── libspudec_plugin.dll
│   │   │   ├── libstl_plugin.dll
│   │   │   ├── libsubsdec_plugin.dll
│   │   │   ├── libsubsusf_plugin.dll
│   │   │   ├── libsvcdsub_plugin.dll
│   │   │   ├── libt140_plugin.dll
│   │   │   ├── libtheora_plugin.dll
│   │   │   ├── libtwolame_plugin.dll
│   │   │   ├── libuleaddvaudio_plugin.dll
│   │   │   ├── libvorbis_plugin.dll
│   │   │   ├── libx264_plugin.dll
│   │   │   └── libzvbi_plugin.dll
│   │   ├── control
│   │   │   ├── libdummy_plugin.dll
│   │   │   ├── libgestures_plugin.dll
│   │   │   ├── libglobalhotkeys_plugin.dll
│   │   │   ├── libhotkeys_plugin.dll
│   │   │   ├── libnetsync_plugin.dll
│   │   │   ├── libntservice_plugin.dll
│   │   │   └── liboldrc_plugin.dll
│   │   ├── demux
│   │   │   ├── libaiff_plugin.dll
│   │   │   ├── libasf_plugin.dll
│   │   │   ├── libau_plugin.dll
│   │   │   ├── libavi_plugin.dll
│   │   │   ├── libdemux_cdg_plugin.dll
│   │   │   ├── libdemuxdump_plugin.dll
│   │   │   ├── libdemux_stl_plugin.dll
│   │   │   ├── libdirac_plugin.dll
│   │   │   ├── libes_plugin.dll
│   │   │   ├── libflacsys_plugin.dll
│   │   │   ├── libgme_plugin.dll
│   │   │   ├── libh264_plugin.dll
│   │   │   ├── libimage_plugin.dll
│   │   │   ├── libmjpeg_plugin.dll
│   │   │   ├── libmkv_plugin.dll
│   │   │   ├── libmod_plugin.dll
│   │   │   ├── libmp4_plugin.dll
│   │   │   ├── libmpc_plugin.dll
│   │   │   ├── libmpgv_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
│   │   │   ├── libqt4_plugin.dll
│   │   │   └── libskins2_plugin.dll
│   │   ├── lua
│   │   │   └── liblua_plugin.dll
│   │   ├── meta_engine
│   │   │   ├── libfolder_plugin.dll
│   │   │   └── libtaglib_plugin.dll
│   │   ├── misc
│   │   │   ├── 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
│   │   ├── mmx
│   │   │   ├── libi420_rgb_mmx_plugin.dll
│   │   │   ├── libi420_yuy2_mmx_plugin.dll
│   │   │   └── libi422_yuy2_mmx_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_copy_plugin.dll
│   │   │   ├── libpacketizer_dirac_plugin.dll
│   │   │   ├── libpacketizer_flac_plugin.dll
│   │   │   ├── libpacketizer_h264_plugin.dll
│   │   │   ├── libpacketizer_mlp_plugin.dll
│   │   │   ├── libpacketizer_mpeg4audio_plugin.dll
│   │   │   ├── libpacketizer_mpeg4video_plugin.dll
│   │   │   ├── libpacketizer_mpegvideo_plugin.dll
│   │   │   └── libpacketizer_vc1_plugin.dll
│   │   ├── plugins.dat
│   │   ├── services_discovery
│   │   │   ├── libmediadirs_plugin.dll
│   │   │   ├── libpodcast_plugin.dll
│   │   │   ├── libsap_plugin.dll
│   │   │   ├── libupnp_plugin.dll
│   │   │   └── libwindrive_plugin.dll
│   │   ├── sse2
│   │   │   ├── libi420_rgb_sse2_plugin.dll
│   │   │   ├── libi420_yuy2_sse2_plugin.dll
│   │   │   └── libi422_yuy2_sse2_plugin.dll
│   │   ├── stream_filter
│   │   │   ├── libdash_plugin.dll
│   │   │   ├── libhttplive_plugin.dll
│   │   │   ├── librecord_plugin.dll
│   │   │   └── libsmooth_plugin.dll
│   │   ├── stream_out
│   │   │   ├── libstream_out_autodel_plugin.dll
│   │   │   ├── libstream_out_bridge_plugin.dll
│   │   │   ├── libstream_out_chromaprint_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_langfromtelx_plugin.dll
│   │   │   ├── libstream_out_mosaic_bridge_plugin.dll
│   │   │   ├── libstream_out_raop_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_transcode_plugin.dll
│   │   ├── text_renderer
│   │   │   ├── libfreetype_plugin.dll
│   │   │   └── libtdummy_plugin.dll
│   │   ├── video_chroma
│   │   │   ├── libgrey_yuv_plugin.dll
│   │   │   ├── libi420_rgb_plugin.dll
│   │   │   ├── libi420_yuy2_plugin.dll
│   │   │   ├── libi422_i420_plugin.dll
│   │   │   ├── libi422_yuy2_plugin.dll
│   │   │   ├── librv32_plugin.dll
│   │   │   ├── libyuy2_i420_plugin.dll
│   │   │   └── libyuy2_i422_plugin.dll
│   │   ├── video_filter
│   │   │   ├── libadjust_plugin.dll
│   │   │   ├── libalphamask_plugin.dll
│   │   │   ├── libanaglyph_plugin.dll
│   │   │   ├── libantiflicker_plugin.dll
│   │   │   ├── libatmo_plugin.dll
│   │   │   ├── libaudiobargraph_v_plugin.dll
│   │   │   ├── libball_plugin.dll
│   │   │   ├── libblendbench_plugin.dll
│   │   │   ├── libblend_plugin.dll
│   │   │   ├── libbluescreen_plugin.dll
│   │   │   ├── libcanvas_plugin.dll
│   │   │   ├── libchain_plugin.dll
│   │   │   ├── libclone_plugin.dll
│   │   │   ├── libcolorthres_plugin.dll
│   │   │   ├── libcroppadd_plugin.dll
│   │   │   ├── libdeinterlace_plugin.dll
│   │   │   ├── liberase_plugin.dll
│   │   │   ├── libextract_plugin.dll
│   │   │   ├── libgaussianblur_plugin.dll
│   │   │   ├── libgradfun_plugin.dll
│   │   │   ├── libgradient_plugin.dll
│   │   │   ├── libgrain_plugin.dll
│   │   │   ├── libhqdn3d_plugin.dll
│   │   │   ├── libinvert_plugin.dll
│   │   │   ├── liblogo_plugin.dll
│   │   │   ├── libmagnify_plugin.dll
│   │   │   ├── libmarq_plugin.dll
│   │   │   ├── libmirror_plugin.dll
│   │   │   ├── libmosaic_plugin.dll
│   │   │   ├── libmotionblur_plugin.dll
│   │   │   ├── libmotiondetect_plugin.dll
│   │   │   ├── libpanoramix_plugin.dll
│   │   │   ├── libposterize_plugin.dll
│   │   │   ├── libpostproc_plugin.dll
│   │   │   ├── libpsychedelic_plugin.dll
│   │   │   ├── libpuzzle_plugin.dll
│   │   │   ├── libremoteosd_plugin.dll
│   │   │   ├── libripple_plugin.dll
│   │   │   ├── librotate_plugin.dll
│   │   │   ├── librss_plugin.dll
│   │   │   ├── libscale_plugin.dll
│   │   │   ├── libscene_plugin.dll
│   │   │   ├── libsepia_plugin.dll
│   │   │   ├── libsharpen_plugin.dll
│   │   │   ├── libsubsdelay_plugin.dll
│   │   │   ├── libswscale_plugin.dll
│   │   │   ├── libtransform_plugin.dll
│   │   │   ├── libwall_plugin.dll
│   │   │   ├── libwave_plugin.dll
│   │   │   └── libyuvp_plugin.dll
│   │   ├── video_output
│   │   │   ├── libcaca_plugin.dll
│   │   │   ├── libdirect2d_plugin.dll
│   │   │   ├── libdirect3d_plugin.dll
│   │   │   ├── libdirectdraw_plugin.dll
│   │   │   ├── libdrawable_plugin.dll
│   │   │   ├── libglwin32_plugin.dll
│   │   │   ├── libvdummy_plugin.dll
│   │   │   ├── libvmem_plugin.dll
│   │   │   ├── libwingdi_plugin.dll
│   │   │   └── libyuv_plugin.dll
│   │   └── visualization
│   │   ├── libgoom_plugin.dll
│   │   ├── libprojectm_plugin.dll
│   │   └── libvisual_plugin.dll
│   ├── CSharpVLC.sln
│   ├── CSharpVLC.v11.suo
│   └── CSharpVLC.v12.suo
├── IntefaceRTSP
│   ├── Debug
│   │   ├── EventLog.dll
│   │   ├── EventLog.pdb
│   │   ├── libvlccore.dll
│   │   ├── libvlc.dll
│   │   ├── WinVLC.exe
│   │   ├── WinVLC.exe2015121615.log
│   │   ├── WinVLC.exe2015121619.log
│   │   ├── WinVLC.exe2015121708.log
│   │   ├── WinVLC.exe2015121709.log
│   │   ├── WinVLC.exe.config
│   │   ├── WinVLC.pdb
│   │   ├── WinVLC.vshost.exe
│   │   ├── WinVLC.vshost.exe.config
│   │   └── WinVLC.vshost.exe.manifest
│   ├── EventLog
│   │   ├── EventLog.cs
│   │   ├── EventLog.csproj
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── EventLog.csproj.FileListAbsolute.txt
│   │   │   │   ├── EventLog.csprojResolveAssemblyReference.cache
│   │   │   │   ├── EventLog.dll
│   │   │   │   └── EventLog.pdb
│   │   │   └── Release
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── EventLog.csproj.FileListAbsolute.txt
│   │   │   ├── EventLog.dll
│   │   │   └── EventLog.pdb
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── IntefaceRTSP.sln
│   ├── Release
│   │   ├── EventLog.dll
│   │   ├── EventLog.pdb
│   │   ├── libvlccore.dll
│   │   ├── libvlc.dll
│   │   ├── WinVLC.exe
│   │   ├── WinVLC.exe2015121416.log
│   │   ├── WinVLC.exe.config
│   │   ├── WinVLC.pdb
│   │   ├── WinVLC.vshost.exe
│   │   ├── WinVLC.vshost.exe.config
│   │   └── WinVLC.vshost.exe.manifest
│   └── WinVLC
│   ├── App.config
│   ├── bin
│   │   └── Debug
│   │   └── WinVLC.vshost.exe.manifest
│   ├── LibVlc.cs
│   ├── MainForm.cs
│   ├── MainForm.Designer.cs
│   ├── MainForm.resx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── WinVLC.csproj.FileListAbsolute.txt
│   │   │   ├── WinVLC.csproj.GenerateResource.Cache
│   │   │   ├── WinVLC.csprojResolveAssemblyReference.cache
│   │   │   ├── WinVLC.exe
│   │   │   ├── WinVLC.MainForm.resources
│   │   │   ├── WinVLC.pdb
│   │   │   └── WinVLC.Properties.Resources.resources
│   │   └── Release
│   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── WinVLC.csproj.FileListAbsolute.txt
│   │   ├── WinVLC.csproj.GenerateResource.Cache
│   │   ├── WinVLC.csprojResolveAssemblyReference.cache
│   │   ├── WinVLC.exe
│   │   ├── WinVLC.MainForm.resources
│   │   ├── WinVLC.pdb
│   │   └── WinVLC.Properties.Resources.resources
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── webcam.ico
│   └── WinVLC.csproj
├── PLAY正确版(输入IP版)1.3
│   └── PLAY正确版1.2
│   └── tcpClient
│   ├── tcpClient
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── tcpClient.exe
│   │   │   ├── tcpClient.pdb
│   │   │   └── tcpClient.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── tcpClient.csproj.GenerateResource.Cache
│   │   │   │   ├── tcpClient.exe
│   │   │   │   ├── tcpClient.Form1.resources
│   │   │   │   ├── tcpClient.pdb
│   │   │   │   └── tcpClient.Properties.Resources.resources
│   │   │   └── tcpClient.csproj.FileList.txt
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── tcpClient.csproj
│   ├── tcpClient.sln
│   └── tcpClient.suo
├── RtspClient
│   ├── bin
│   │   └── Debug
│   │   ├── AsynSocket.dll
│   │   ├── log4net.DLL
│   │   ├── log4net.xml
│   │   ├── RtspClient.exe
│   │   ├── RtspClient.pdb
│   │   └── RtspClient.vshost.exe
│   ├── MainForm.cs
│   ├── MainForm.Designer.cs
│   ├── MainForm.resx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── jn.isos.video.MainForm.resources
│   │   │   ├── jn.isos.video.Properties.Resources.resources
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── RtspClient.csproj.GenerateResource.Cache
│   │   │   ├── RtspClient.exe
│   │   │   ├── RtspClient.pdb
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   └── RtspClient.csproj.FileListAbsolute.txt
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── RtspClient.cs
│   └── RtspClient.csproj
├── Sat2Ip.UI.RtspSample
│   ├── bin
│   │   └── Debug
│   │   ├── AxInterop.WMPLib.dll
│   │   ├── Interop.UPNPLib.dll
│   │   ├── Interop.WMPLib.dll
│   │   ├── Sat2Ip.Library.dll
│   │   ├── Sat2Ip.Library.pdb
│   │   ├── Sat2Ip.UI.RtspClient.exe
│   │   ├── Sat2Ip.UI.RtspClient.pdb
│   │   ├── Sat2Ip.UI.RtspClient.vshost.exe.manifest
│   │   ├── Sat2Ip.UI.RtspSample.exe
│   │   ├── Sat2Ip.UI.RtspSample.pdb
│   │   ├── Sat2Ip.UI.RtspSample.vshost.exe
│   │   └── Sat2Ip.UI.RtspSample.vshost.exe.manifest
│   ├── Form1.cs
│   ├── Form1.Designer.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── AxInterop.WMPLib.dll
│   │   ├── Interop.WMPLib.dll
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── Sat2Ip.UI.RtspClient.csproj.FileListAbsolute.txt
│   │   ├── Sat2Ip.UI.RtspClient.csproj.GenerateResource.Cache
│   │   ├── Sat2Ip.UI.RtspClient.csproj.ResolveComReference.cache
│   │   ├── Sat2Ip.UI.RtspClient.exe
│   │   ├── Sat2Ip.UI.RtspClient.Form1.resources
│   │   ├── Sat2Ip.UI.RtspClient.Properties.Resources.resources
│   │   ├── Sat2Ip.UI.RtspSample.csproj.FileListAbsolute.txt
│   │   ├── Sat2Ip.UI.RtspSample.csproj.GenerateResource.Cache
│   │   ├── Sat2Ip.UI.RtspSample.csproj.ResolveComReference.cache
│   │   ├── Sat2Ip.UI.RtspSample.exe
│   │   ├── Sat2Ip.UI.RtspSample.Form1.resources
│   │   ├── Sat2Ip.UI.RtspSample.pdb
│   │   ├── Sat2Ip.UI.RtspSample.Properties.Resources.resources
│   │   └── TempPE
│   │   └── Properties.Resources.Designer.cs.dll
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Sat2Ip.UI.RtspSample.csproj
│   └── Service.cs
├── vlc.net
│   ├── bin
│   │   └── Debug
│   │   ├── axvlc.dll
│   │   ├── libvlccore.dll
│   │   ├── libvlc.dll
│   │   ├── npvlc.dll
│   │   ├── plugins
│   │   │   ├── access
│   │   │   │   ├── libaccess_bd_plugin.dll
│   │   │   │   ├── libaccess_mms_plugin.dll
│   │   │   │   ├── libaccess_realrtsp_plugin.dll
│   │   │   │   ├── libattachment_plugin.dll
│   │   │   │   ├── libbluray-j2se-0.9.2.jar
│   │   │   │   ├── libcdda_plugin.dll
│   │   │   │   ├── libdshow_plugin.dll
│   │   │   │   ├── libdtv_plugin.dll
│   │   │   │   ├── libdvdnav_plugin.dll
│   │   │   │   ├── libdvdread_plugin.dll
│   │   │   │   ├── libfilesystem_plugin.dll
│   │   │   │   ├── libftp_plugin.dll
│   │   │   │   ├── libhttp_plugin.dll
│   │   │   │   ├── libidummy_plugin.dll
│   │   │   │   ├── libimem_plugin.dll
│   │   │   │   ├── liblibbluray_plugin.dll
│   │   │   │   ├── liblive555_plugin.dll
│   │   │   │   ├── librar_plugin.dll
│   │   │   │   ├── librtp_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
│   │   │   │   └── libzip_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_udp_plugin.dll
│   │   │   ├── audio_filter
│   │   │   │   ├── liba52tofloat32_plugin.dll
│   │   │   │   ├── liba52tospdif_plugin.dll
│   │   │   │   ├── libaudiobargraph_a_plugin.dll
│   │   │   │   ├── libaudio_format_plugin.dll
│   │   │   │   ├── libchorus_flanger_plugin.dll
│   │   │   │   ├── libcompressor_plugin.dll
│   │   │   │   ├── libdolby_surround_decoder_plugin.dll
│   │   │   │   ├── libdtstofloat32_plugin.dll
│   │   │   │   ├── libdtstospdif_plugin.dll
│   │   │   │   ├── libequalizer_plugin.dll
│   │   │   │   ├── libgain_plugin.dll
│   │   │   │   ├── libheadphone_channel_mixer_plugin.dll
│   │   │   │   ├── libkaraoke_plugin.dll
│   │   │   │   ├── libmono_plugin.dll
│   │   │   │   ├── libmpgatofixed32_plugin.dll
│   │   │   │   ├── libnormvol_plugin.dll
│   │   │   │   ├── libparam_eq_plugin.dll
│   │   │   │   ├── libremap_plugin.dll
│   │   │   │   ├── libsamplerate_plugin.dll
│   │   │   │   ├── libscaletempo_plugin.dll
│   │   │   │   ├── libsimple_channel_mixer_plugin.dll
│   │   │   │   ├── libspatializer_plugin.dll
│   │   │   │   ├── libspeex_resampler_plugin.dll
│   │   │   │   ├── libstereo_widen_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
│   │   │   │   ├── libaraw_plugin.dll
│   │   │   │   ├── libavcodec_plugin.dll
│   │   │   │   ├── libcc_plugin.dll
│   │   │   │   ├── libcdg_plugin.dll
│   │   │   │   ├── libcrystalhd_plugin.dll
│   │   │   │   ├── libcvdsub_plugin.dll
│   │   │   │   ├── libddummy_plugin.dll
│   │   │   │   ├── libdmo_plugin.dll
│   │   │   │   ├── libdts_plugin.dll
│   │   │   │   ├── libdvbsub_plugin.dll
│   │   │   │   ├── libdxva2_plugin.dll
│   │   │   │   ├── libedummy_plugin.dll
│   │   │   │   ├── libfaad_plugin.dll
│   │   │   │   ├── libflac_plugin.dll
│   │   │   │   ├── libg711_plugin.dll
│   │   │   │   ├── libjpeg_plugin.dll
│   │   │   │   ├── libkate_plugin.dll
│   │   │   │   ├── liblibass_plugin.dll
│   │   │   │   ├── liblibmpeg2_plugin.dll
│   │   │   │   ├── liblpcm_plugin.dll
│   │   │   │   ├── libmft_plugin.dll
│   │   │   │   ├── libmpeg_audio_plugin.dll
│   │   │   │   ├── libopus_plugin.dll
│   │   │   │   ├── libpng_plugin.dll
│   │   │   │   ├── libqsv_plugin.dll
│   │   │   │   ├── libquicktime_plugin.dll
│   │   │   │   ├── librawvideo_plugin.dll
│   │   │   │   ├── libschroedinger_plugin.dll
│   │   │   │   ├── libscte27_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
│   │   │   │   ├── libtheora_plugin.dll
│   │   │   │   ├── libtwolame_plugin.dll
│   │   │   │   ├── libuleaddvaudio_plugin.dll
│   │   │   │   ├── libvorbis_plugin.dll
│   │   │   │   ├── libvpx_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
│   │   │   ├── demux
│   │   │   │   ├── libaiff_plugin.dll
│   │   │   │   ├── libasf_plugin.dll
│   │   │   │   ├── libau_plugin.dll
│   │   │   │   ├── libavi_plugin.dll
│   │   │   │   ├── libcaf_plugin.dll
│   │   │   │   ├── libdemux_cdg_plugin.dll
│   │   │   │   ├── libdemuxdump_plugin.dll
│   │   │   │   ├── libdemux_stl_plugin.dll
│   │   │   │   ├── libdiracsys_plugin.dll
│   │   │   │   ├── libes_plugin.dll
│   │   │   │   ├── libflacsys_plugin.dll
│   │   │   │   ├── libgme_plugin.dll
│   │   │   │   ├── libh264_plugin.dll
│   │   │   │   ├── libhevc_plugin.dll
│   │   │   │   ├── libimage_plugin.dll
│   │   │   │   ├── libmjpeg_plugin.dll
│   │   │   │   ├── libmkv_plugin.dll
│   │   │   │   ├── libmod_plugin.dll
│   │   │   │   ├── libmp4_plugin.dll
│   │   │   │   ├── libmpc_plugin.dll
│   │   │   │   ├── libmpgv_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
│   │   │   │   ├── libqt4_plugin.dll
│   │   │   │   └── libskins2_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_copy_plugin.dll
│   │   │   │   ├── libpacketizer_dirac_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_mpegvideo_plugin.dll
│   │   │   │   └── libpacketizer_vc1_plugin.dll
│   │   │   ├── plugins.dat
│   │   │   ├── services_discovery
│   │   │   │   ├── libmediadirs_plugin.dll
│   │   │   │   ├── libpodcast_plugin.dll
│   │   │   │   ├── libsap_plugin.dll
│   │   │   │   ├── libupnp_plugin.dll
│   │   │   │   └── libwindrive_plugin.dll
│   │   │   ├── stream_filter
│   │   │   │   ├── libdash_plugin.dll
│   │   │   │   ├── libhttplive_plugin.dll
│   │   │   │   ├── librecord_plugin.dll
│   │   │   │   └── libsmooth_plugin.dll
│   │   │   ├── stream_out
│   │   │   │   ├── libstream_out_autodel_plugin.dll
│   │   │   │   ├── libstream_out_bridge_plugin.dll
│   │   │   │   ├── libstream_out_chromaprint_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_langfromtelx_plugin.dll
│   │   │   │   ├── libstream_out_mosaic_bridge_plugin.dll
│   │   │   │   ├── libstream_out_raop_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
│   │   │   │   └── libtdummy_plugin.dll
│   │   │   ├── video_chroma
│   │   │   │   ├── libchain_plugin.dll
│   │   │   │   ├── libgrey_yuv_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
│   │   │   │   ├── libyuy2_i420_plugin.dll
│   │   │   │   └── libyuy2_i422_plugin.dll
│   │   │   ├── video_filter
│   │   │   │   ├── libadjust_plugin.dll
│   │   │   │   ├── libalphamask_plugin.dll
│   │   │   │   ├── libanaglyph_plugin.dll
│   │   │   │   ├── libantiflicker_plugin.dll
│   │   │   │   ├── libatmo_plugin.dll
│   │   │   │   ├── libaudiobargraph_v_plugin.dll
│   │   │   │   ├── libball_plugin.dll
│   │   │   │   ├── libblendbench_plugin.dll
│   │   │   │   ├── libblend_plugin.dll
│   │   │   │   ├── libbluescreen_plugin.dll
│   │   │   │   ├── libcanvas_plugin.dll
│   │   │   │   ├── libcolorthres_plugin.dll
│   │   │   │   ├── libcroppadd_plugin.dll
│   │   │   │   ├── libdeinterlace_plugin.dll
│   │   │   │   ├── liberase_plugin.dll
│   │   │   │   ├── libextract_plugin.dll
│   │   │   │   ├── libfreeze_plugin.dll
│   │   │   │   ├── libgaussianblur_plugin.dll
│   │   │   │   ├── libgradfun_plugin.dll
│   │   │   │   ├── libgradient_plugin.dll
│   │   │   │   ├── libgrain_plugin.dll
│   │   │   │   ├── libhqdn3d_plugin.dll
│   │   │   │   ├── libinvert_plugin.dll
│   │   │   │   ├── liblogo_plugin.dll
│   │   │   │   ├── libmagnify_plugin.dll
│   │   │   │   ├── libmarq_plugin.dll
│   │   │   │   ├── libmirror_plugin.dll
│   │   │   │   ├── libmosaic_plugin.dll
│   │   │   │   ├── libmotionblur_plugin.dll
│   │   │   │   ├── libmotiondetect_plugin.dll
│   │   │   │   ├── liboldmovie_plugin.dll
│   │   │   │   ├── libposterize_plugin.dll
│   │   │   │   ├── libpostproc_plugin.dll
│   │   │   │   ├── libpsychedelic_plugin.dll
│   │   │   │   ├── libpuzzle_plugin.dll
│   │   │   │   ├── libremoteosd_plugin.dll
│   │   │   │   ├── libripple_plugin.dll
│   │   │   │   ├── librotate_plugin.dll
│   │   │   │   ├── librss_plugin.dll
│   │   │   │   ├── libscale_plugin.dll
│   │   │   │   ├── libscene_plugin.dll
│   │   │   │   ├── libsepia_plugin.dll
│   │   │   │   ├── libsharpen_plugin.dll
│   │   │   │   ├── libsubsdelay_plugin.dll
│   │   │   │   ├── libtransform_plugin.dll
│   │   │   │   ├── libvhs_plugin.dll
│   │   │   │   ├── libwave_plugin.dll
│   │   │   │   └── libyuvp_plugin.dll
│   │   │   ├── video_output
│   │   │   │   ├── libcaca_plugin.dll
│   │   │   │   ├── libdirect2d_plugin.dll
│   │   │   │   ├── libdirect3d_plugin.dll
│   │   │   │   ├── libdirectdraw_plugin.dll
│   │   │   │   ├── libdrawable_plugin.dll
│   │   │   │   ├── libgl_plugin.dll
│   │   │   │   ├── libglwin32_plugin.dll
│   │   │   │   ├── libvdummy_plugin.dll
│   │   │   │   ├── libvmem_plugin.dll
│   │   │   │   ├── libwingdi_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.DotNet.Core.dll
│   │   ├── Vlc.DotNet.Core.Interops.dll
│   │   ├── Vlc.DotNet.Forms.dll
│   │   ├── vlc.net.exe
│   │   ├── vlc.net.pdb
│   │   ├── vlc.net.vshost.exe
│   │   └── vlc.net.vshost.exe.manifest
│   ├── Form1.cs
│   ├── Form1.Designer.cs
│   ├── Form1.resx
│   ├── libvlccore.dll
│   ├── libvlc.dll
│   ├── obj
│   │   └── x86
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── vlc.net.csproj.FileListAbsolute.txt
│   │   ├── vlc.net.csproj.GenerateResource.Cache
│   │   ├── vlc.net.csprojResolveAssemblyReference.cache
│   │   ├── vlc.net.exe
│   │   ├── vlc.net.Form1.resources
│   │   ├── vlc.net.pdb
│   │   └── vlc.net.Properties.Resources.resources
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── vlc.net.csproj
│   └── VlcPlayer.cs
├── WpfSample
│   ├── credist
│   │   ├── msvcp110d.dll
│   │   ├── msvcp110.dll
│   │   ├── msvcr110d.dll
│   │   ├── msvcr110.dll
│   │   ├── vccorlib110d.dll
│   │   └── vccorlib110.dll
│   ├── libs
│   │   ├── onvif.discovery.dll
│   │   ├── onvif.services.dll
│   │   ├── onvif.session.dll
│   │   ├── onvif.utils.dll
│   │   ├── System.Reactive.Core.dll
│   │   ├── System.Reactive.Interfaces.dll
│   │   ├── System.Reactive.Linq.dll
│   │   ├── utils.activities.dll
│   │   ├── utils.async.dll
│   │   ├── utils.bootstrapping.dll
│   │   ├── utils.common.dll
│   │   ├── utils.diagnostics.dll
│   │   ├── utils.fsharp.dll
│   │   ├── utils.linq.dll
│   │   ├── utils.wpf.dll
│   │   └── utils.xml.dll
│   ├── Player
│   │   ├── video.player.host.exe
│   │   ├── video.player.host.exe.config
│   │   ├── video.player.media.dll
│   │   └── video.player.net.dll
│   ├── WpfSample
│   │   ├── App.config
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── avcodec-54.dll
│   │   ├── avdevice-54.dll
│   │   ├── avfilter-2.dll
│   │   ├── avformat-54.dll
│   │   ├── avutil-51.dll
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── avcodec-54.dll
│   │   │   │   ├── avdevice-54.dll
│   │   │   │   ├── avfilter-2.dll
│   │   │   │   ├── avformat-54.dll
│   │   │   │   ├── avutil-51.dll
│   │   │   │   ├── FSharp.Core.dll
│   │   │   │   ├── FSharp.Core.xml
│   │   │   │   ├── msvcp110d.dll
│   │   │   │   ├── msvcp110.dll
│   │   │   │   ├── msvcr110d.dll
│   │   │   │   ├── msvcr110.dll
│   │   │   │   ├── onvif.discovery.dll
│   │   │   │   ├── onvif.services.dll
│   │   │   │   ├── onvif.session.dll
│   │   │   │   ├── onvif.utils.dll
│   │   │   │   ├── postproc-52.dll
│   │   │   │   ├── swresample-0.dll
│   │   │   │   ├── swscale-2.dll
│   │   │   │   ├── System.Reactive.Core.dll
│   │   │   │   ├── System.Reactive.Interfaces.dll
│   │   │   │   ├── System.Reactive.Linq.dll
│   │   │   │   ├── utils.activities.dll
│   │   │   │   ├── utils.async.dll
│   │   │   │   ├── utils.bootstrapping.dll
│   │   │   │   ├── utils.common.dll
│   │   │   │   ├── utils.diagnostics.dll
│   │   │   │   ├── utils.fsharp.dll
│   │   │   │   ├── utils.linq.dll
│   │   │   │   ├── utils.wpf.dll
│   │   │   │   ├── utils.xml.dll
│   │   │   │   ├── vccorlib110d.dll
│   │   │   │   ├── vccorlib110.dll
│   │   │   │   ├── video.player.host.exe
│   │   │   │   ├── video.player.media.dll
│   │   │   │   ├── video.player.net.dll
│   │   │   │   ├── WpfSample.application
│   │   │   │   ├── WpfSample.exe
│   │   │   │   ├── WpfSample.exe.config
│   │   │   │   ├── WpfSample.exe.manifest
│   │   │   │   ├── WpfSample.pdb
│   │   │   │   ├── WpfSample.vshost.application
│   │   │   │   ├── WpfSample.vshost.exe
│   │   │   │   ├── WpfSample.vshost.exe.config
│   │   │   │   ├── WpfSample.vshost.exe.manifest
│   │   │   │   └── zh-Hans
│   │   │   │   └── FSharp.Core.resources.dll
│   │   │   └── Release
│   │   │   ├── avcodec-54.dll
│   │   │   ├── avdevice-54.dll
│   │   │   ├── avfilter-2.dll
│   │   │   ├── avformat-54.dll
│   │   │   ├── avutil-51.dll
│   │   │   ├── FSharp.Core.dll
│   │   │   ├── FSharp.Core.xml
│   │   │   ├── msvcp110d.dll
│   │   │   ├── msvcp110.dll
│   │   │   ├── msvcr110d.dll
│   │   │   ├── msvcr110.dll
│   │   │   ├── onvif.discovery.dll
│   │   │   ├── onvif.services.dll
│   │   │   ├── onvif.session.dll
│   │   │   ├── onvif.utils.dll
│   │   │   ├── postproc-52.dll
│   │   │   ├── swresample-0.dll
│   │   │   ├── swscale-2.dll
│   │   │   ├── System.Reactive.Core.dll
│   │   │   ├── System.Reactive.Interfaces.dll
│   │   │   ├── System.Reactive.Linq.dll
│   │   │   ├── utils.activities.dll
│   │   │   ├── utils.async.dll
│   │   │   ├── utils.bootstrapping.dll
│   │   │   ├── utils.common.dll
│   │   │   ├── utils.diagnostics.dll
│   │   │   ├── utils.fsharp.dll
│   │   │   ├── utils.linq.dll
│   │   │   ├── utils.wpf.dll
│   │   │   ├── utils.xml.dll
│   │   │   ├── vccorlib110d.dll
│   │   │   ├── vccorlib110.dll
│   │   │   ├── video.player.host.exe
│   │   │   ├── video.player.media.dll
│   │   │   ├── video.player.net.dll
│   │   │   ├── WpfSample.application
│   │   │   ├── WpfSample.exe
│   │   │   ├── WpfSample.exe.config
│   │   │   ├── WpfSample.exe.manifest
│   │   │   ├── WpfSample.pdb
│   │   │   ├── WpfSample.vshost.application
│   │   │   ├── WpfSample.vshost.exe
│   │   │   ├── WpfSample.vshost.exe.config
│   │   │   ├── WpfSample.vshost.exe.manifest
│   │   │   └── zh-Hans
│   │   │   └── FSharp.Core.resources.dll
│   │   ├── ConnectControl.xaml
│   │   ├── ConnectControl.xaml.cs
│   │   ├── ErrorControl.xaml
│   │   ├── ErrorControl.xaml.cs
│   │   ├── IdentificationControl.xaml
│   │   ├── IdentificationControl.xaml.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── msvcp110d.dll
│   │   ├── msvcp110.dll
│   │   ├── msvcr110d.dll
│   │   ├── msvcr110.dll
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── App.g.cs
│   │   │   │   ├── App.g.i.cs
│   │   │   │   ├── ConnectControl.baml
│   │   │   │   ├── ConnectControl.g.cs
│   │   │   │   ├── ConnectControl.g.i.cs
│   │   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── ErrorControl.baml
│   │   │   │   ├── ErrorControl.g.cs
│   │   │   │   ├── ErrorControl.g.i.cs
│   │   │   │   ├── IdentificationControl.baml
│   │   │   │   ├── IdentificationControl.g.cs
│   │   │   │   ├── IdentificationControl.g.i.cs
│   │   │   │   ├── MainWindow.baml
│   │   │   │   ├── MainWindow.g.cs
│   │   │   │   ├── MainWindow.g.i.cs
│   │   │   │   ├── PlayerCtrl.baml
│   │   │   │   ├── PlayerCtrl.g.cs
│   │   │   │   ├── PlayerCtrl.g.i.cs
│   │   │   │   ├── ProfieInfoControl.baml
│   │   │   │   ├── ProfieInfoControl.g.cs
│   │   │   │   ├── ProfieInfoControl.g.i.cs
│   │   │   │   ├── ProgressControl.baml
│   │   │   │   ├── ProgressControl.g.cs
│   │   │   │   ├── ProgressControl.g.i.cs
│   │   │   │   ├── PtzControl.baml
│   │   │   │   ├── PtzControl.g.cs
│   │   │   │   ├── PtzControl.g.i.cs
│   │   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   │   ├── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   ├── WpfSample.application
│   │   │   │   ├── WpfSample_Content.g.cs
│   │   │   │   ├── WpfSample_Content.g.i.cs
│   │   │   │   ├── WpfSample.csproj.FileListAbsolute.txt
│   │   │   │   ├── WpfSample.csproj.GenerateResource.Cache
│   │   │   │   ├── WpfSample.csprojResolveAssemblyReference.cache
│   │   │   │   ├── WpfSample.exe
│   │   │   │   ├── WpfSample.exe.manifest
│   │   │   │   ├── WpfSample.g.resources
│   │   │   │   ├── WpfSample_MarkupCompile.cache
│   │   │   │   ├── WpfSample_MarkupCompile.i.cache
│   │   │   │   ├── WpfSample.pdb
│   │   │   │   └── WpfSample.Properties.Resources.resources
│   │   │   └── Release
│   │   │   ├── App.g.cs
│   │   │   ├── App.g.i.cs
│   │   │   ├── ConnectControl.baml
│   │   │   ├── ConnectControl.g.cs
│   │   │   ├── ConnectControl.g.i.cs
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ErrorControl.baml
│   │   │   ├── ErrorControl.g.cs
│   │   │   ├── ErrorControl.g.i.cs
│   │   │   ├── IdentificationControl.baml
│   │   │   ├── IdentificationControl.g.cs
│   │   │   ├── IdentificationControl.g.i.cs
│   │   │   ├── MainWindow.baml
│   │   │   ├── MainWindow.g.cs
│   │   │   ├── MainWindow.g.i.cs
│   │   │   ├── PlayerCtrl.baml
│   │   │   ├── PlayerCtrl.g.cs
│   │   │   ├── PlayerCtrl.g.i.cs
│   │   │   ├── ProfieInfoControl.baml
│   │   │   ├── ProfieInfoControl.g.cs
│   │   │   ├── ProfieInfoControl.g.i.cs
│   │   │   ├── ProgressControl.baml
│   │   │   ├── ProgressControl.g.cs
│   │   │   ├── ProgressControl.g.i.cs
│   │   │   ├── PtzControl.baml
│   │   │   ├── PtzControl.g.cs
│   │   │   ├── PtzControl.g.i.cs
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── WpfSample.application
│   │   │   ├── WpfSample_Content.g.cs
│   │   │   ├── WpfSample_Content.g.i.cs
│   │   │   ├── WpfSample.csproj.FileListAbsolute.txt
│   │   │   ├── WpfSample.csproj.GenerateResource.Cache
│   │   │   ├── WpfSample.csprojResolveAssemblyReference.cache
│   │   │   ├── WpfSample.exe
│   │   │   ├── WpfSample.exe.manifest
│   │   │   ├── WpfSample.g.resources
│   │   │   ├── WpfSample_MarkupCompile.cache
│   │   │   ├── WpfSample_MarkupCompile.i.cache
│   │   │   ├── WpfSample.pdb
│   │   │   └── WpfSample.Properties.Resources.resources
│   │   ├── PlayerCtrl.xaml
│   │   ├── PlayerCtrl.xaml.cs
│   │   ├── postproc-52.dll
│   │   ├── ProfieInfoControl.xaml
│   │   ├── ProfieInfoControl.xaml.cs
│   │   ├── ProgressControl.xaml
│   │   ├── ProgressControl.xaml.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── PtzControl.xaml
│   │   ├── PtzControl.xaml.cs
│   │   ├── swresample-0.dll
│   │   ├── swscale-2.dll
│   │   ├── vccorlib110d.dll
│   │   ├── vccorlib110.dll
│   │   ├── WpfSample.csproj
│   │   ├── WpfSample.csproj.user
│   │   └── WpfSample_TemporaryKey.pfx
│   ├── WpfSample.sln
│   ├── WpfSample.suo
│   ├── WpfSample.v11.suo
│   └── 新建文本文档.txt
└── 网络流程序
├── Codecs
│   ├── Audio
│   │   ├── Aac
│   │   │   ├── License.txt
│   │   │   ├── Media.Codecs.Audio.Aac.csproj
│   │   │   ├── Media.Codecs.Audio.Aac.csproj.vspscc
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── AC3
│   │   │   ├── BitStreamInformation.cs
│   │   │   ├── Media.Codecs.Audio.Ac3.csproj
│   │   │   ├── Media.Codecs.Audio.Ac3.csproj.vspscc
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── SyncFrame.cs
│   │   │   └── SyncInfo.cs
│   │   ├── Alaw
│   │   │   ├── ALawCodec.cs
│   │   │   ├── ALawDecoder.cs
│   │   │   ├── ALawEncoder.cs
│   │   │   ├── Media.Codecs.Audio.Alaw.csproj
│   │   │   ├── Media.Codecs.Audio.Alaw.csproj.vspscc
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── AudioBuffer.cs
│   │   ├── AudioCodec.cs
│   │   ├── AudioFormat.cs
│   │   ├── AudioTransformation.cs
│   │   ├── Flac
│   │   │   ├── Class1.cs
│   │   │   ├── Media.Codecs.Audio.Flac.csproj
│   │   │   ├── Media.Codecs.Audio.Flac.csproj.vspscc
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── G722
│   │   │   ├── G722Codec.cs
│   │   │   ├── Media.Codecs.Audio.G722.csproj
│   │   │   ├── Media.Codecs.Audio.G722.csproj.vspscc
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── IAudioCodec.cs
│   │   ├── License.txt
│   │   ├── Media.Codecs.Audio.csproj
│   │   ├── Media.Codecs.Audio.csproj.vspscc
│   │   ├── Mp3
│   │   │   ├── Class1.cs
│   │   │   ├── License.txt
│   │   │   ├── Media.Codecs.Audio.Mp3.csproj
│   │   │   ├── Media.Codecs.Audio.Mp3.csproj.vspscc
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Mulaw
│   │   │   ├── Media.Codecs.Audio.MuLaw.csproj
│   │   │   ├── Media.Codecs.Audio.MuLaw.csproj.vspscc
│   │   │   ├── MulawCodec.cs
│   │   │   ├── MuLawDecoder.cs
│   │   │   ├── MuLawEncoder.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Vorbis
│   │   │   ├── Class1.cs
│   │   │   ├── Media.Codecs.Audio.Vorbis.csproj
│   │   │   ├── Media.Codecs.Audio.Vorbis.csproj.vspscc
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── WAVEFORMATEX.cs
│   │   ├── WaveFormatId.cs
│   │   └── WaveForms.cs
│   ├── Classes
│   │   ├── Codec.cs
│   │   ├── Decoder.cs
│   │   ├── Encoder.cs
│   │   └── Transformation.cs
│   ├── Codecs.cs
│   ├── DataLayout.cs
│   ├── Image
│   │   ├── BitmapInfoHeader.cs
│   │   ├── Bmp
│   │   │   ├── Class1.cs
│   │   │   ├── Media.Codecs.Image.Bmp.csproj
│   │   │   ├── Media.Codecs.Image.Bmp.csproj.vspscc
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── ColorConversions.cs
│   │   ├── ColorSpace.cs
│   │   ├── ComponentDescriptor.cs
│   │   ├── Gif
│   │   │   ├── Class1.cs
│   │   │   ├── Media.Codecs.Image.Gif.csproj
│   │   │   ├── Media.Codecs.Image.Gif.csproj.vspscc
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── IImageCodec.cs
│   │   ├── ImageCodec.cs
│   │   ├── Image.cs
│   │   ├── ImageFormat.cs
│   │   ├── ImageTransformation.cs
│   │   ├── Jpeg
│   │   │   ├── License.txt
│   │   │   ├── MarkerReader.cs
│   │   │   ├── Markers.cs
│   │   │   ├── Media.Codecs.Image.Jpeg.csproj
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── License.txt
│   │   ├── Media.Codecs.Image.csproj
│   │   ├── Media.Codecs.Image.csproj.vspscc
│   │   ├── Png
│   │   │   ├── Class1.cs
│   │   │   ├── Media.Codecs.Image.Png.csproj
│   │   │   ├── Media.Codecs.Image.Png.csproj.vspscc
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── Transformations
│   │   ├── RGB.cs
│   │   └── YUV.cs
│   ├── Interfaces
│   │   ├── ICodec.cs
│   │   ├── IDecoder.cs
│   │   ├── IEncoder.cs
│   │   ├── IMediaBuffer.cs
│   │   └── ITransformation.cs
│   ├── License.txt
│   ├── MediaBuffer.cs
│   ├── Media.Codec.csproj
│   ├── Media.Codecs.csproj
│   ├── MediaComponent.cs
│   ├── MediaFormat.cs
│   ├── MediaType.cs
│   ├── Mpeg
│   │   ├── AudioDataTransportStream.cs
│   │   ├── ElementaryStream.cs
│   │   ├── Media.Codec.Mpeg.csproj
│   │   ├── Media.Codec.Mpeg.csproj.vspscc
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── VideoStream.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── RFC2361.cs
│   ├── TransformationQuality.cs
│   └── Video
│   ├── H261
│   │   ├── Media.Codecs.Video.H261.csproj
│   │   ├── Media.Codecs.Video.H261.csproj.vspscc
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── H263
│   │   ├── Media.Codecs.Video.H263.csproj
│   │   ├── Media.Codecs.Video.H263.csproj.vspscc
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── H264
│   │   ├── ContentInterpretationType.cs
│   │   ├── FramePackingArrangementType.cs
│   │   ├── License.txt
│   │   ├── Media.Codecs.Video.H264.csproj
│   │   ├── Media.Codecs.Video.H264.csproj.vspscc
│   │   ├── NalReader.cs
│   │   ├── NalUnitPriority.cs
│   │   ├── NalUnitSubType.cs
│   │   ├── NalUnitType.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── SliceType.cs
│   │   └── SupplementalEncoderInformationType.cs
│   ├── H265
│   │   ├── Media.Codecs.Video.H265.csproj
│   │   ├── Media.Codecs.Video.H265.csproj.vspscc
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── IVideoCodec.cs
│   ├── License.txt
│   ├── Media.Codecs.Video.csproj
│   ├── Media.Codecs.Video.csproj.vspscc
│   ├── Mpeg
│   │   ├── License.txt
│   │   ├── Media.Codecs.Video.Mpeg.csproj
│   │   ├── Media.Codecs.Video.Mpeg.csproj.vspscc
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Mpeg2
│   │   ├── Media.Codecs.Video.Mpeg2.csproj
│   │   ├── Media.Codecs.Video.Mpeg2.csproj.vspscc
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Mpeg4
│   │   ├── License.txt
│   │   ├── Media.Codecs.Video.Mpeg4.csproj
│   │   ├── Media.Codecs.Video.Mpeg4.csproj.vspscc
│   │   ├── ObjectTypeIndication.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── StartCodes.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Thor
│   │   ├── Class1.cs
│   │   ├── Media.Codecs.Video.Thor.csproj
│   │   ├── Media.Codecs.Video.Thor.csproj.vspscc
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── VideoCodec.cs
│   ├── VideoInfoHeader.cs
│   ├── VideoSample.cs
│   ├── Vp8
│   │   ├── Media.Codecs.Video.Vp8.csproj
│   │   ├── Media.Codecs.Video.Vp8.csproj.vspscc
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── RFC7741Frame.cs
│   └── VP9
│   ├── Media.Codecs.Video.Vp9.csproj
│   ├── Media.Codecs.Video.Vp9.csproj.vspscc
│   └── Properties
│   └── AssemblyInfo.cs
├── Common
│   ├── Classes
│   │   ├── Binary
│   │   │   ├── Binary.cs
│   │   │   ├── BitReader.cs
│   │   │   └── BitWriter.cs
│   │   ├── Classes.cs
│   │   ├── Consoles
│   │   │   └── PlatformConsole.cs
│   │   ├── Disposables
│   │   │   ├── BaseDisposable.cs
│   │   │   ├── CommonDisposable.cs
│   │   │   ├── LifetimeDisposable.cs
│   │   │   └── SuppressedFinalizerDisposable.cs
│   │   ├── EventArgsEx.cs
│   │   ├── Loggers
│   │   │   ├── BaseLogger.cs
│   │   │   ├── ConsoleLogger.cs
│   │   │   ├── DebugLogger.cs
│   │   │   ├── ExceptionLogger.cs
│   │   │   ├── FileLogger.cs
│   │   │   ├── FormattableLogger.cs
│   │   │   ├── NullLogger.cs
│   │   │   └── TraceLogger.cs
│   │   ├── Machine.cs
│   │   ├── MemorySegment.cs
│   │   ├── PacketBase.cs
│   │   ├── SegmentStream.cs
│   │   ├── TaggedException.cs
│   │   ├── Text
│   │   │   ├── ASCII.cs
│   │   │   └── UTF8.cs
│   │   └── Transport
│   │   ├── TransportClient.cs
│   │   └── TransportMessageBase.cs
│   ├── Collections
│   │   └── Generic
│   │   ├── ConcurrentLinkedList.cs
│   │   ├── ConcurrentLinkedQueueSlim.cs
│   │   ├── ConcurrentLinkedStackSlim.cs
│   │   ├── ConcurrentThesaurus.cs
│   │   ├── Grouping.cs
│   │   ├── LinkedNode.cs
│   │   ├── PrecicseList.cs
│   │   └── RingBuffer.cs
│   ├── Extensions
│   │   ├── ArrayExtensions.cs
│   │   ├── DateTimeExtensions.cs
│   │   ├── DebugExtensions.cs
│   │   ├── DelegateExtensions.cs
│   │   ├── DictionaryExtensions.cs
│   │   ├── EncodingExtensions.cs
│   │   ├── EnumerableExtensions.cs
│   │   ├── ExceptionExtensions.cs
│   │   ├── GenericExtensions.cs
│   │   ├── IPAddressExtensions.cs
│   │   ├── IPEndPointExtensions.cs
│   │   ├── LinqExtensions.cs
│   │   ├── ListExtensions.cs
│   │   ├── MathExtensions.cs
│   │   ├── NetworkInterfaceExtensions.cs
│   │   ├── ObjectExtensions.cs
│   │   ├── OperatingSystemExtensions.cs
│   │   ├── ProcessExtensions.cs
│   │   ├── ReflectionExtensions.cs
│   │   ├── RuntimeExtensions.cs
│   │   ├── SocketExtensions.cs
│   │   ├── StreamExtensions.cs
│   │   ├── StringExtensions.cs
│   │   ├── SymbolExtensions.cs
│   │   ├── ThreadExtensions.cs
│   │   ├── TimeSpanExtensions.cs
│   │   ├── UriExtensions.cs
│   │   └── WaitHandleExtensions.cs
│   ├── Interfaces
│   │   ├── IBuffer.cs
│   │   ├── IComposeds.cs
│   │   ├── IConsole.cs
│   │   ├── IDisposed.cs
│   │   ├── ILogging.cs
│   │   ├── Indexables.cs
│   │   ├── Inputs.cs
│   │   ├── Interface.cs
│   │   ├── Interfaces.cs
│   │   ├── IPacket.cs
│   │   ├── IParser.cs
│   │   ├── IReadOnlys.cs
│   │   ├── IShareds.cs
│   │   ├── ISocketReference.cs
│   │   ├── ITaggedException.cs
│   │   ├── IThreadReference.cs
│   │   └── ITries.cs
│   ├── License.txt
│   ├── Media.Common.csproj
│   ├── Media.Common.csproj.vspscc
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── MediaAssemblyInfo.cs
│   │   ├── MediaAssemblyVersionInfo.cs
│   │   ├── MediaCLSComplaintInfo.cs
│   │   └── MediaCLSInternalVisibleToUnitTestsAttribute.cs
│   ├── Structures
│   │   └── Struct.cs
│   └── Utility.cs
├── Compression
│   ├── Huffman.cs
│   ├── License.txt
│   ├── Media.Compression.csproj
│   └── Properties
│   └── AssemblyInfo.cs
├── Concepts
│   ├── Classes
│   │   ├── Allocators.cs
│   │   ├── ArithmeticLogicUnit.cs
│   │   ├── Arrays.cs
│   │   ├── B
│   │   │   ├── B.cs
│   │   │   └── Buffer.cs
│   │   ├── BindableBase.cs
│   │   ├── BitEnumerator.cs
│   │   ├── Bitwise.cs
│   │   ├── Bus.cs
│   │   ├── C
│   │   │   ├── C.cs
│   │   │   └── Connection.cs
│   │   ├── CentralProcessingUnit.cs
│   │   ├── Clock.cs
│   │   ├── CommonIntermediateLanguage.cs
│   │   ├── Disposable.cs
│   │   ├── E
│   │   │   ├── Enigma.cs
│   │   │   ├── Extensions.cs
│   │   │   └── Interface.cs
│   │   ├── Experimental.cs
│   │   ├── GC
│   │   │   └── Controller.cs
│   │   ├── Hardware.cs
│   │   ├── I
│   │   │   └── I.cs
│   │   ├── Intrinsics.cs
│   │   ├── MethodHelper.cs
│   │   ├── Number.cs
│   │   ├── Physics.cs
│   │   ├── S
│   │   │   ├── S.cs
│   │   │   └── Symbols.cs
│   │   ├── Sockets
│   │   │   └── Sockets.cs
│   │   ├── Stopwatch.cs
│   │   ├── T
│   │   │   └── T.cs
│   │   ├── Threading
│   │   │   ├── Pool.cs
│   │   │   └── Threading.cs
│   │   ├── Timer.cs
│   │   ├── Units.cs
│   │   ├── Unsafe.cs
│   │   ├── UpdateableBase.cs
│   │   ├── V
│   │   │   └── v.cs
│   │   ├── VirtualScreen.cs
│   │   └── W
│   │   └── Writings.cs
│   ├── Collections
│   │   ├── LinkedCollections.cs
│   │   ├── SocketCollection.cs
│   │   └── ThreadCollection.cs
│   ├── Concepts.csproj
│   ├── Concepts.csproj.vspscc
│   ├── EndPoints.cs
│   ├── Interfaces
│   │   ├── Interfaces.cs
│   │   ├── ITextData.cs
│   │   ├── IUpdateable.cs
│   │   └── IUsable.cs
│   ├── Math.cs
│   └── Properties
│   └── AssemblyInfo.cs
├── Containers
│   ├── Asf
│   │   ├── AsfReader.cs
│   │   ├── License.txt
│   │   ├── Media.Containers.Asf.csproj
│   │   ├── Media.Containers.Asf.csproj.vspscc
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── BaseMedia
│   │   ├── BaseMediaReader.cs
│   │   ├── License.txt
│   │   ├── Media.Containers.BaseMedia.csproj
│   │   ├── Media.Containers.BaseMedia.csproj.vspscc
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Gxf
│   │   ├── GxfReader.cs
│   │   ├── License.txt
│   │   ├── Media.Containers.Gxf.csproj
│   │   ├── Media.Containers.Gxf.csproj.vspscc
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── IMediaContainer.cs
│   ├── License.txt
│   ├── Matroska
│   │   ├── License.txt
│   │   ├── MatroskaReader.cs
│   │   ├── Media.Containers.Matroska.csproj
│   │   ├── Media.Containers.Matroska.csproj.vspscc
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Mcf
│   │   ├── License.txt
│   │   ├── McfReader.cs
│   │   ├── Media.Containers.Mcf.csproj
│   │   ├── Media.Containers.Mcf.csproj.vspscc
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Media.Container.csproj
│   ├── Media.Container.csproj.vspscc
│   ├── MediaFileStream.cs
│   ├── Mpeg
│   │   ├── License.txt
│   │   ├── Media.Containers.Mpeg.csproj
│   │   ├── Media.Containers.Mpeg.csproj.vspscc
│   │   ├── PacketizedElementaryStreamReader.cs
│   │   ├── ProgramStreamReader.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── StartCodes.cs
│   │   ├── StreamTypes.cs
│   │   ├── TransportStreamReader.cs
│   │   ├── TransportStreamUnit.cs
│   │   └── TransportStreamWriter.cs
│   ├── Mxf
│   │   ├── License.txt
│   │   ├── Media.Containers.Mxf.csproj
│   │   ├── Media.Containers.Mxf.csproj.vspscc
│   │   ├── MxfReader.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Node.cs
│   ├── Nut
│   │   ├── License.txt
│   │   ├── Media.Containers.Nut.csproj
│   │   ├── Media.Containers.Nut.csproj.vspscc
│   │   ├── NutReader.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Ogg
│   │   ├── License.txt
│   │   ├── Media.Containers.Ogg.csproj
│   │   ├── Media.Containers.Ogg.csproj.vspscc
│   │   ├── OggReader.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Real
│   │   ├── License.txt
│   │   ├── Media.Containers.Real.csproj
│   │   ├── Media.Containers.Real.csproj.vspscc
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── RealReader.cs
│   ├── Riff
│   │   ├── License.txt
│   │   ├── Media.Containers.Riff.csproj
│   │   ├── Media.Containers.Riff.csproj.vspscc
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── RiffReader.cs
│   └── Track.cs
├── Cryptography
│   ├── License.txt
│   ├── MD5.cs
│   ├── Media.Cryptography.csproj
│   ├── Media.Cryptography.csproj.vspscc
│   ├── New Text Document.txt
│   └── Properties
│   └── AssemblyInfo.cs
├── Http
│   ├── HeaderFields.cs
│   ├── HttpClient.cs
│   ├── HttpContent.cs
│   ├── HttpCookieCollection.cs
│   ├── HttpCookie.cs
│   ├── HttpHeaders.cs
│   ├── HttpMessage.cs
│   ├── HttpSession.cs
│   ├── License.txt
│   ├── Media.Http.csproj
│   ├── Media.Http.csproj.vspscc
│   └── Properties
│   └── AssemblyInfo.cs
├── License.txt
├── Media.csproj
├── Media.csproj.vspscc
├── Media.sln
├── Media.suo
├── Media.vssscc
├── nCodec
│   ├── Codecs
│   │   ├── H264
│   │   │   ├── AspectRatio.cs
│   │   │   ├── BlockInterpolator.cs
│   │   │   ├── CABACConst.cs
│   │   │   ├── CABAC.cs
│   │   │   ├── CALVCReader.cs
│   │   │   ├── CAVLC.cs
│   │   │   ├── CAVLCWriter.cs
│   │   │   ├── ChromaPredictionBuilder.cs
│   │   │   ├── CoeffTransformer.cs
│   │   │   ├── Constants.cs
│   │   │   ├── DeblockingFilter.cs
│   │   │   ├── FlatMBlockMapper.cs
│   │   │   ├── Frame.cs
│   │   │   ├── H264Decoder.cs
│   │   │   ├── HRDParameters.cs
│   │   │   ├── Interpolator.cs
│   │   │   ├── Intra16x16PredictionBuilder.cs
│   │   │   ├── Intra4x4PredictionBuilder.cs
│   │   │   ├── Intra8x8PredictionBuilder.cs
│   │   │   ├── MapManager.cs
│   │   │   ├── Mapper.cs
│   │   │   ├── MBToSliceGroupMap.cs
│   │   │   ├── MBType.cs
│   │   │   ├── NALUnit.cs
│   │   │   ├── NalUnitType.cs
│   │   │   ├── NALUnitWriter.cs
│   │   │   ├── PictureParameterSet.cs
│   │   │   ├── POCManager.cs
│   │   │   ├── PrebuildMBlockMapper.cs
│   │   │   ├── Prediction.cs
│   │   │   ├── PredictionWeightTable.cs
│   │   │   ├── RefPicMarking.cs
│   │   │   ├── RefPicMarkingIDR.cs
│   │   │   ├── SampleEntry.cs
│   │   │   ├── ScalingList.cs
│   │   │   ├── ScalingMatrix.cs
│   │   │   ├── SeqParameterSet.cs
│   │   │   ├── SeqParameterSetExt.cs
│   │   │   ├── SliceDecoder.cs
│   │   │   ├── SliceGroupMapBuilder.cs
│   │   │   ├── SliceHeader.cs
│   │   │   ├── SliceHeaderReader.cs
│   │   │   ├── SliceHeaderWriter.cs
│   │   │   ├── SliceType.cs
│   │   │   ├── Utility.cs
│   │   │   ├── VideoSampleEntry.cs
│   │   │   └── VUIParameters.cs
│   │   ├── MJPEG
│   │   │   ├── FrameHeader.cs
│   │   │   ├── JPEGBitStream.cs
│   │   │   ├── JPEGConst.cs
│   │   │   ├── JPEGDecoder.cs
│   │   │   └── ScanHeader.cs
│   │   ├── MPEG12
│   │   │   ├── CopyrightExtension.cs
│   │   │   ├── FixHLSTimestamps.cs
│   │   │   ├── FixTimestamp.cs
│   │   │   ├── GOPHeader.cs
│   │   │   ├── HLSFixPMT.cs
│   │   │   ├── MPEGConst.cs
│   │   │   ├── MPEGDecoder.cs
│   │   │   ├── MPEGES.cs
│   │   │   ├── MPEGPred.cs
│   │   │   ├── MPEGUtil.cs
│   │   │   ├── PictureCodingExtension.cs
│   │   │   ├── PictureDisplayExtension.cs
│   │   │   ├── PictureHeader.cs
│   │   │   ├── PictureSpatialScalableExtension.cs
│   │   │   ├── PictureTemporalScalableExtension.cs
│   │   │   ├── QuantMatrixExtension.cs
│   │   │   ├── SegmentReader.cs
│   │   │   ├── SequenceDisplayExtension.cs
│   │   │   ├── SequenceExtension.cs
│   │   │   ├── SequenceHeader.cs
│   │   │   └── SequenceScalableExtension.cs
│   │   ├── ProRes
│   │   │   ├── Codebook.cs
│   │   │   └── ProResConst.cs
│   │   └── RAW
│   │   ├── V210Decoder.cs
│   │   └── V210Encoder.cs
│   ├── Common
│   │   ├── Arrays.cs
│   │   ├── BitReader.cs
│   │   ├── BitWriter.cs
│   │   ├── ColorSpace.cs
│   │   ├── DCT
│   │   │   ├── SimpleIDCT10Bit.cs
│   │   │   └── SparseIDCT.cs
│   │   ├── DemuxerTrack.cs
│   │   ├── DemuxerTrackMeta.cs
│   │   ├── MConst.cs
│   │   ├── MDecoder.cs
│   │   ├── MEncoder.cs
│   │   ├── Packet.cs
│   │   ├── Picture.cs
│   │   ├── Point.cs
│   │   ├── Rational.cs
│   │   ├── RationalLarge.cs
│   │   ├── Rect.cs
│   │   ├── Size.cs
│   │   ├── StreamExtensions.cs
│   │   ├── TapeTimeCode.cs
│   │   ├── VLCBuilder.cs
│   │   └── VLC.cs
│   ├── Containers
│   │   ├── AvcCBox.cs
│   │   ├── Box.cs
│   │   ├── BoxFactory.cs
│   │   ├── FullBox.cs
│   │   ├── Header.cs
│   │   ├── LeafBox.cs
│   │   ├── MovieHeaderBox.cs
│   │   ├── MPS
│   │   │   ├── MPEGDemuxer.cs
│   │   │   ├── MPSDemuxer.cs
│   │   │   └── MPSUtils.cs
│   │   └── NodeBox.cs
│   ├── nCodec.csproj
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── VideoDecoder.cs
│   └── VideoEncoder.cs
├── Ntp
│   ├── Media.Ntp.csproj
│   ├── Media.Ntp.csproj.vspscc
│   ├── NetworkTimeProtocol.cs
│   └── Properties
│   └── AssemblyInfo.cs
├── project.json
├── Properties
│   └── AssemblyInfo.cs
├── Reference
│   ├── AC3.pdf
│   ├── BMFF-ISO_IEC_14496-12_2005(E).pdf
│   ├── Information.html
│   ├── MPEG2-IEC-13818-2_Specs.pdf
│   ├── MpegTS-PES.pdf
│   ├── MXF-S377-1-2009.pdf
│   ├── rf64-tech3306-2009.pdf
│   └── T-REC-H.264-200305-S.pdf
├── RtcpFeedback
│   ├── Media.Rtcp.Feedback.csproj
│   ├── Media.Rtcp.Feedback.csproj.vspscc
│   ├── PayloadSpecificFeedbackReport.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Reports
│   │   ├── NackReport.cs
│   │   ├── PictureLossIndicationReport.cs
│   │   ├── ReferencePictureSelectionIndicationReport.cs
│   │   └── SliceLossIndicationReport.cs
│   ├── RFC4585.cs
│   ├── RtcpFeedbackReport.cs
│   └── TransportLayerFeedbackReport.cs
├── Rtmp
│   ├── License.txt
│   ├── Media.Rtmp.csproj
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── RtmpClient.cs
│   └── RtmpPacket.cs
├── Rtp
│   ├── Conference.cs
│   ├── JitterBuffer.cs
│   ├── License.txt
│   ├── Media.Rtp.csproj
│   ├── Mixer.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── RedundantRtpFrame.cs
│   ├── RFC3550.cs
│   ├── Rtcp
│   │   ├── AppplicationSpecificReport.cs
│   │   ├── GoodbyeReport.cs
│   │   ├── IReportBlock.cs
│   │   ├── ReceiversReport.cs
│   │   ├── ReportBlock.cs
│   │   ├── RtcpHeader.cs
│   │   ├── RtcpPacket.cs
│   │   ├── RtcpReport.cs
│   │   ├── SendersReport.cs
│   │   └── SourceDescriptionReport.cs
│   ├── RtpClient.Constants.cs
│   ├── RtpClient.cs
│   ├── RtpClient.Fields.cs
│   ├── RtpClient.Methods.cs
│   ├── RtpExtension.cs
│   ├── RtpFrame.cs
│   ├── RtpHeader.cs
│   ├── RtpPacket.cs
│   └── Translator.cs
├── RtpTools
│   ├── FileFormat.cs
│   ├── License.txt
│   ├── Media.RtpTools.csproj
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── RtpDump.cs
│   ├── RtpMix.cs
│   ├── RtpPlay.cs
│   ├── RtpSend.cs
│   ├── RtpToolEntry.cs
│   └── RtpTrans.cs
├── Rtsp
│   ├── License.txt
│   ├── Media.Rtsp.csproj
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── RtspClient.cs
│   ├── RtspHeaders.cs
│   ├── RtspMessage.cs
│   └── RtspSession.cs
├── RtspServer
│   ├── Classes
│   │   ├── ArchivedMedia.cs
│   │   ├── ChildMedia.cs
│   │   └── SourceMedia.cs
│   ├── ClientSession.cs
│   ├── Interfaces
│   │   ├── IMedia.cs
│   │   ├── IMediaSink.cs
│   │   ├── IMediaSource.cs
│   │   └── IRtspServerArchiver.cs
│   ├── License.txt
│   ├── Media.RtspServer.csproj
│   ├── MediaTypes
│   │   ├── HttpMedia.cs
│   │   ├── JPEGMedia.cs
│   │   ├── MJPEGMedia.cs
│   │   ├── RFC2190Media.cs
│   │   ├── RFC2250Media.cs
│   │   ├── RFC2435Media.cs
│   │   ├── RFC3640Media.cs
│   │   ├── RFC3952Media.cs
│   │   ├── RFC4421Media.cs
│   │   ├── RFC4629Media.cs
│   │   ├── RFC4733Media.cs
│   │   ├── RFC4867Media.cs
│   │   ├── RFC5215Media.cs
│   │   ├── RFC5219Media.cs
│   │   ├── RFC5391Media.cs
│   │   ├── RFC5404Media.cs
│   │   ├── RFC5577Media.cs
│   │   ├── RFC5993Media.cs
│   │   ├── RFC6184Media.cs
│   │   ├── RFC6185Media.cs
│   │   ├── RFC6190Media.cs
│   │   ├── RFC6295Media.cs
│   │   ├── RFC6416Media.cs
│   │   ├── RtpSink.cs
│   │   ├── RtpSource.cs
│   │   ├── RtspSink.cs
│   │   └── RtspSource.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── RtspServerConsoleLogger.cs
│   ├── RtspServer.cs
│   ├── RtspServerDebugLogger.cs
│   ├── RtspServerLogger.cs
│   ├── RtspServerTraceLogger.cs
│   └── RtspStreamArchiver.cs
├── Sdp
│   ├── AttributeFields.cs
│   ├── License.txt
│   ├── LineGroup.cs
│   ├── Lines.cs
│   ├── MediaDescription.cs
│   ├── Media.Sdp.csproj
│   ├── MediaType.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── SessionDescription.cs
│   ├── SessionDescriptionLine.cs
│   └── TimeDescription.cs
├── Sip
│   ├── Media.Sip.csproj
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── SipClient.cs
│   ├── SipHeaders.cs
│   └── SipMessage.cs
├── Sockets
│   ├── ConnectionCapabilities.cs
│   ├── Connection.cs
│   ├── DisposableWaitHandle.cs
│   ├── IPAddressInformation.cs
│   ├── IPNetworkConnection.cs
│   ├── Listener.cs
│   ├── Media.Sockets.csproj
│   ├── Media.Sockets.csproj.vspscc
│   ├── NetworkAddressTranslator.cs
│   ├── NetworkConnection.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   └── TcpNetworkConnection.cs
└── UnitTests
├── App.config
├── Code
│   ├── RtpClientUnitTests.cs
│   ├── RtpRtcpUnitTests.cs
│   └── SDPUnitTests.cs
├── Forms
│   ├── ContainerInspector.cs
│   ├── ContainerInspector.Designer.cs
│   ├── ContainerInspector.resx
│   ├── RtspInspector.cs
│   ├── RtspInspector.Designer.cs
│   ├── RtspInspector.resx
│   ├── ServerTester.cs
│   ├── ServerTester.Designer.cs
│   └── ServerTester.resx
├── Media
│   ├── Bandit
│   │   ├── 20130707_083611.jpg
│   │   ├── 20131022_171308.jpg
│   │   ├── 20131031_121028.jpg
│   │   ├── 20131031_121032.jpg
│   │   ├── 20131211_103924.jpg
│   │   ├── 20131211_104757.jpg
│   │   ├── 20131225_232429.jpg
│   │   ├── 20131225_232530_HDR.jpg
│   │   └── IMG_20130421_140022.jpg
│   ├── bark.rtp
│   ├── JpegTest
│   │   ├── camera.jpg
│   │   ├── Channel_digital_image_CMYK_color.jpg
│   │   ├── croinbw.jpg
│   │   ├── jpeg400jfif.jpg
│   │   ├── jpeg420exif.jpg
│   │   ├── jpeg422jfif.jpg
│   │   ├── jpeg444.jpg
│   │   ├── m00905argb.jpg
│   │   ├── m00905srgb.jpg
│   │   ├── testimg.jpg
│   │   ├── testimgp.jpg
│   │   ├── testorig.jpg
│   │   ├── testprog.jpg
│   │   ├── Untitled.jpg
│   │   ├── videoalt.jpg
│   │   ├── videoflipalt.jpg
│   │   ├── video.jpg
│   │   ├── yh9r01459argbsmall.jpg
│   │   ├── yh9r01459srgbsmall.jpg
│   │   └── yuvj422.jpg
│   └── Video
│   ├── asf
│   │   └── pages.asf
│   ├── avi
│   │   ├── MVI_3572.AVI
│   │   └── turning_pages_mjpeg.avi
│   ├── flv
│   │   └── pages.flv
│   ├── mkv
│   │   ├── mvi.mkv
│   │   └── pages.mkv
│   ├── mov
│   │   └── pages.mov
│   ├── mp4
│   │   ├── h264_acc_stream.mp4
│   │   ├── mvi.mp4
│   │   ├── pages.mp4
│   │   └── pages_ogg.mp4
│   ├── mpjpeg
│   │   ├── mvi.mpjpeg
│   │   └── pages.mpjpeg
│   ├── mxf
│   │   └── freeMXF-mxf1.mxf
│   ├── nut
│   │   └── Akon_cut.nut
│   ├── ogg
│   │   └── small.ogv
│   └── turning_pages_mjpeg.avi
├── Program.cs
├── Properties
│   └── AssemblyInfo.cs
├── UnitTests.csproj
└── UnitTests.csproj.vspscc

324 directories, 2167 files

标签:

实例下载地址

C#sharpRTSPDemo

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警