实例介绍
live555 使用ffmpeg实现mp4文件点播
【实例截图】
【核心代码】
4744300845210380404.zip
└── live555-12.25
├── BasicUsageEnvironment
│ ├── BasicHashTable.cpp
│ ├── BasicTaskScheduler0.cpp
│ ├── BasicTaskScheduler.cpp
│ ├── BasicUsageEnvironment0.cpp
│ ├── BasicUsageEnvironment.cpp
│ ├── BasicUsageEnvironment.mak
│ ├── BasicUsageEnvironment.vcproj
│ ├── BasicUsageEnvironment.vcproj.think.user.user
│ ├── BasicUsageEnvironment.vcproj.肖孝奇.xxqi.user
│ ├── BasicUsageEnvironment.vcxproj
│ ├── BasicUsageEnvironment.vcxproj.filters
│ ├── BasicUsageEnvironment.vcxproj.user
│ ├── COPYING
│ ├── Debug
│ │ ├── BasicHashTable.obj
│ │ ├── BasicTaskScheduler0.obj
│ │ ├── BasicTaskScheduler.obj
│ │ ├── BasicUsageEnvironment0.obj
│ │ ├── BasicUsageEnvironment.Build.CppClean.log
│ │ ├── BasicUsageEnvironment.lastbuildstate
│ │ ├── BasicUsageEnvironment.log
│ │ ├── BasicUsageEnvironment.obj
│ │ ├── BasicUsageEnvironment.vcxprojResolveAssemblyReference.cache
│ │ ├── BasicUsageEnvironment.write.1.tlog
│ │ ├── BuildLog.htm
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── DelayQueue.obj
│ │ ├── lib.command.1.tlog
│ │ ├── Lib-link.read.1.tlog
│ │ ├── Lib-link.write.1.tlog
│ │ ├── Lib.read.1.tlog
│ │ ├── Lib.write.1.tlog
│ │ ├── vc100.idb
│ │ └── vc100.pdb
│ ├── DelayQueue.cpp
│ ├── include
│ │ ├── BasicHashTable.hh
│ │ ├── BasicUsageEnvironment0.hh
│ │ ├── BasicUsageEnvironment.hh
│ │ ├── BasicUsageEnvironment_version.hh
│ │ ├── DelayQueue.hh
│ │ └── HandlerSet.hh
│ ├── Makefile.head
│ ├── Makefile.tail
│ └── Release
│ ├── BasicHashTable.obj
│ ├── BasicTaskScheduler0.obj
│ ├── BasicTaskScheduler.obj
│ ├── BasicUsageEnvironment0.obj
│ ├── BasicUsageEnvironment.lastbuildstate
│ ├── BasicUsageEnvironment.log
│ ├── BasicUsageEnvironment.obj
│ ├── BasicUsageEnvironment.write.1.tlog
│ ├── BuildLog.htm
│ ├── cl.command.1.tlog
│ ├── CL.read.1.tlog
│ ├── CL.write.1.tlog
│ ├── DelayQueue.obj
│ ├── lib.command.1.tlog
│ ├── Lib-link.read.1.tlog
│ ├── Lib-link.write.1.tlog
│ ├── Lib.read.1.tlog
│ ├── Lib.write.1.tlog
│ ├── vc100.pdb
│ ├── vc90.idb
│ └── vc90.pdb
├── Debug
│ ├── avcodec-56.dll
│ ├── avdevice-56.dll
│ ├── avfilter-5.dll
│ ├── avformat-56.dll
│ ├── avutil-54.dll
│ ├── BasicUsageEnvironment.lib
│ ├── groupsock.lib
│ ├── libgcc_s_dw2-1.dll
│ ├── libiconv-2.dll
│ ├── libx264-142.dll
│ ├── liveMedia.lib
│ ├── mediaServer.exe
│ ├── mediaServer.ilk
│ ├── mediaServer.pdb
│ ├── postproc-53.dll
│ ├── swresample-1.dll
│ ├── swscale-3.dll
│ └── UsageEnvironment.lib
├── ffmpeg
│ ├── inc
│ │ ├── inttypes.h
│ │ ├── libavcodec
│ │ │ ├── avcodec.h
│ │ │ ├── avfft.h
│ │ │ ├── dv_profile.h
│ │ │ ├── dxva2.h
│ │ │ ├── old_codec_ids.h
│ │ │ ├── vaapi.h
│ │ │ ├── vda.h
│ │ │ ├── vdpau.h
│ │ │ ├── version.h
│ │ │ └── xvmc.h
│ │ ├── libavdevice
│ │ │ ├── avdevice.h
│ │ │ └── version.h
│ │ ├── libavfilter
│ │ │ ├── asrc_abuffer.h
│ │ │ ├── avcodec.h
│ │ │ ├── avfiltergraph.h
│ │ │ ├── avfilter.h
│ │ │ ├── buffersink.h
│ │ │ ├── buffersrc.h
│ │ │ └── version.h
│ │ ├── libavformat
│ │ │ ├── avformat.h
│ │ │ ├── avio.h
│ │ │ └── version.h
│ │ ├── libavutil
│ │ │ ├── adler32.h
│ │ │ ├── aes.h
│ │ │ ├── attributes.h
│ │ │ ├── audioconvert.h
│ │ │ ├── audio_fifo.h
│ │ │ ├── avassert.h
│ │ │ ├── avconfig.h
│ │ │ ├── avstring.h
│ │ │ ├── avutil.h
│ │ │ ├── base64.h
│ │ │ ├── blowfish.h
│ │ │ ├── bprint.h
│ │ │ ├── bswap.h
│ │ │ ├── buffer.h
│ │ │ ├── channel_layout.h
│ │ │ ├── common.h
│ │ │ ├── cpu.h
│ │ │ ├── crc.h
│ │ │ ├── dict.h
│ │ │ ├── display.h
│ │ │ ├── downmix_info.h
│ │ │ ├── error.h
│ │ │ ├── eval.h
│ │ │ ├── ffversion.h
│ │ │ ├── fifo.h
│ │ │ ├── file.h
│ │ │ ├── frame.h
│ │ │ ├── hash.h
│ │ │ ├── hmac.h
│ │ │ ├── imgutils.h
│ │ │ ├── intfloat.h
│ │ │ ├── intfloat_readwrite.h
│ │ │ ├── intreadwrite.h
│ │ │ ├── lfg.h
│ │ │ ├── log.h
│ │ │ ├── lzo.h
│ │ │ ├── macros.h
│ │ │ ├── mathematics.h
│ │ │ ├── md5.h
│ │ │ ├── mem.h
│ │ │ ├── motion_vector.h
│ │ │ ├── murmur3.h
│ │ │ ├── old_pix_fmts.h
│ │ │ ├── opt.h
│ │ │ ├── parseutils.h
│ │ │ ├── pixdesc.h
│ │ │ ├── pixelutils.h
│ │ │ ├── pixfmt.h
│ │ │ ├── random_seed.h
│ │ │ ├── rational.h
│ │ │ ├── replaygain.h
│ │ │ ├── ripemd.h
│ │ │ ├── samplefmt.h
│ │ │ ├── sha512.h
│ │ │ ├── sha.h
│ │ │ ├── stereo3d.h
│ │ │ ├── threadmessage.h
│ │ │ ├── timecode.h
│ │ │ ├── time.h
│ │ │ ├── timestamp.h
│ │ │ ├── version.h
│ │ │ └── xtea.h
│ │ ├── libpostproc
│ │ │ └── postprocess.h
│ │ ├── libswresample
│ │ │ ├── swresample.h
│ │ │ └── version.h
│ │ ├── libswscale
│ │ │ ├── swscale.h
│ │ │ └── version.h
│ │ └── stdint.h
│ └── lib
│ ├── avcodec.lib
│ ├── avdevice.lib
│ ├── avfilter.lib
│ ├── avformat.lib
│ ├── avutil.lib
│ ├── postproc.lib
│ ├── swresample.lib
│ └── swscale.lib
├── groupsock
│ ├── COPYING
│ ├── Debug
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── GroupEId.obj
│ │ ├── GroupsockHelper.obj
│ │ ├── groupsock.lastbuildstate
│ │ ├── groupsock.log
│ │ ├── Groupsock.obj
│ │ ├── groupsock.write.1.tlog
│ │ ├── inet.obj
│ │ ├── IOHandlers.obj
│ │ ├── lib.command.1.tlog
│ │ ├── Lib-link.read.1.tlog
│ │ ├── Lib-link.write.1.tlog
│ │ ├── Lib.read.1.tlog
│ │ ├── Lib.write.1.tlog
│ │ ├── NetAddress.obj
│ │ ├── NetInterface.obj
│ │ ├── vc100.idb
│ │ └── vc100.pdb
│ ├── GroupEId.cpp
│ ├── Groupsock.cpp
│ ├── GroupsockHelper.cpp
│ ├── groupsock.mak
│ ├── groupsock.vcproj
│ ├── groupsock.vcproj.think.user.user
│ ├── groupsock.vcproj.肖孝奇.xxqi.user
│ ├── groupsock.vcxproj
│ ├── groupsock.vcxproj.filters
│ ├── groupsock.vcxproj.user
│ ├── include
│ │ ├── GroupEId.hh
│ │ ├── GroupsockHelper.hh
│ │ ├── Groupsock.hh
│ │ ├── groupsock_version.hh
│ │ ├── IOHandlers.hh
│ │ ├── NetAddress.hh
│ │ ├── NetCommon.h
│ │ ├── NetInterface.hh
│ │ └── TunnelEncaps.hh
│ ├── inet.c
│ ├── IOHandlers.cpp
│ ├── Makefile.head
│ ├── Makefile.tail
│ ├── NetAddress.cpp
│ └── NetInterface.cpp
├── include
│ ├── compat
│ │ ├── getopt.c
│ │ ├── msvcrt
│ │ ├── strtod.c
│ │ └── va_copy.h
│ ├── inttypes.h
│ ├── libavcodec
│ │ ├── avcodec.h
│ │ ├── avfft.h
│ │ ├── dxva2.h
│ │ ├── old_codec_ids.h
│ │ ├── vaapi.h
│ │ ├── vda.h
│ │ ├── vdpau.h
│ │ ├── version.h
│ │ └── xvmc.h
│ ├── libavdevice
│ │ ├── avdevice.h
│ │ └── version.h
│ ├── libavfilter
│ │ ├── asrc_abuffer.h
│ │ ├── avcodec.h
│ │ ├── avfiltergraph.h
│ │ ├── avfilter.h
│ │ ├── buffersink.h
│ │ ├── buffersrc.h
│ │ └── version.h
│ ├── libavformat
│ │ ├── aiff.h
│ │ ├── apetag.h
│ │ ├── asfcrypt.h
│ │ ├── asf.h
│ │ ├── audiointerleave.h
│ │ ├── avc.h
│ │ ├── avformat.h
│ │ ├── avi.h
│ │ ├── avio.h
│ │ ├── avio_internal.h
│ │ ├── avlanguage.h
│ │ ├── caf.h
│ │ ├── dv.h
│ │ ├── ffmeta.h
│ │ ├── ffm.h
│ │ ├── flacenc.h
│ │ ├── flv.h
│ │ ├── gxf.h
│ │ ├── httpauth.h
│ │ ├── http.h
│ │ ├── network.h
│ │ ├── nut.h
│ │ ├── oggdec.h
│ │ ├── oma.h
│ │ ├── options_table.h
│ │ ├── os_support.h
│ │ ├── pcm.h
│ │ ├── qtpalette.h
│ │ ├── rawdec.h
│ │ ├── rawenc.h
│ │ ├── rdt.h
│ │ ├── riff.h
│ │ ├── rm.h
│ │ ├── rso.h
│ │ ├── rtmpcrypt.h
│ │ ├── rtmpdh.h
│ │ ├── rtmp.h
│ │ ├── rtmppkt.h
│ │ ├── rtpdec_formats.h
│ │ ├── rtpdec.h
│ │ ├── rtpenc_chain.h
│ │ ├── rtpenc.h
│ │ ├── rtp.h
│ │ ├── rtspcodes.h
│ │ ├── rtsp.h
│ │ ├── sauce.h
│ │ ├── seek.h
│ │ ├── smjpeg.h
│ │ ├── sox.h
│ │ ├── spdif.h
│ │ ├── subtitles.h
│ │ ├── swf.h
│ │ ├── urldecode.h
│ │ ├── url.h
│ │ ├── version.h
│ │ ├── voc.h
│ │ ├── vorbiscomment.h
│ │ └── wtv.h
│ ├── libavresample
│ │ ├── arm
│ │ ├── audio_convert.c
│ │ ├── audio_convert.h
│ │ ├── audio_data.c
│ │ ├── audio_data.h
│ │ ├── audio_mix.c
│ │ ├── audio_mix.h
│ │ ├── audio_mix_matrix.c
│ │ ├── avresample.h
│ │ ├── avresample-test.c
│ │ ├── internal.h
│ │ ├── libavresample.v
│ │ ├── Makefile
│ │ ├── options.c
│ │ ├── resample.c
│ │ ├── resample.h
│ │ ├── resample_template.c
│ │ ├── utils.c
│ │ ├── version.h
│ │ └── x86
│ ├── libavutil
│ │ ├── adler32.h
│ │ ├── aes.h
│ │ ├── attributes.h
│ │ ├── audioconvert.h
│ │ ├── audio_fifo.h
│ │ ├── avassert.h
│ │ ├── avconfig.h
│ │ ├── avstring.h
│ │ ├── avutil.h
│ │ ├── base64.h
│ │ ├── blowfish.h
│ │ └── bprint.h
│ ├── libpostproc
│ ├── libswresample
│ ├── libswscale
│ └── stdint.h
├── live.2012.04.04
│ ├── BasicUsageEnvironment
│ │ ├── BasicHashTable.cpp
│ │ ├── BasicTaskScheduler0.cpp
│ │ ├── BasicTaskScheduler.cpp
│ │ ├── BasicUsageEnvironment0.cpp
│ │ ├── BasicUsageEnvironment.cpp
│ │ ├── COPYING
│ │ ├── DelayQueue.cpp
│ │ ├── include
│ │ │ ├── BasicHashTable.hh
│ │ │ ├── BasicUsageEnvironment0.hh
│ │ │ ├── BasicUsageEnvironment.hh
│ │ │ ├── BasicUsageEnvironment_version.hh
│ │ │ ├── DelayQueue.hh
│ │ │ └── HandlerSet.hh
│ │ ├── Makefile.head
│ │ └── Makefile.tail
│ ├── config.aix
│ ├── config.alpha
│ ├── config.armeb-uclibc
│ ├── config.armlinux
│ ├── config.avr32-linux
│ ├── config.bfin-linux-uclibc
│ ├── config.bfin-uclinux
│ ├── config.bsplinux
│ ├── config.cris-axis-linux-gnu
│ ├── config.cygwin
│ ├── config.cygwin-for-vlc
│ ├── config.freebsd
│ ├── config.iphoneos
│ ├── config.irix
│ ├── config.linux
│ ├── config.linux-64bit
│ ├── config.linux-gdb
│ ├── config.macosx
│ ├── config.macosx-32bit
│ ├── config.macosx-before-version-10.4
│ ├── config.mingw
│ ├── config.openbsd
│ ├── config.qnx4
│ ├── config.solaris-32bit
│ ├── config.solaris-64bit
│ ├── config.sunos
│ ├── config.uClinux
│ ├── configure
│ ├── COPYING
│ ├── fix-makefile
│ ├── genMakefiles
│ ├── genWindowsMakefiles
│ ├── genWindowsMakefiles.cmd
│ ├── groupsock
│ │ ├── COPYING
│ │ ├── GroupEId.cpp
│ │ ├── Groupsock.cpp
│ │ ├── GroupsockHelper.cpp
│ │ ├── include
│ │ │ ├── GroupEId.hh
│ │ │ ├── GroupsockHelper.hh
│ │ │ ├── Groupsock.hh
│ │ │ ├── groupsock_version.hh
│ │ │ ├── IOHandlers.hh
│ │ │ ├── NetAddress.hh
│ │ │ ├── NetCommon.h
│ │ │ ├── NetInterface.hh
│ │ │ └── TunnelEncaps.hh
│ │ ├── inet.c
│ │ ├── IOHandlers.cpp
│ │ ├── Makefile.head
│ │ ├── Makefile.tail
│ │ ├── NetAddress.cpp
│ │ └── NetInterface.cpp
│ ├── liveMedia
│ │ ├── AACAudioMatroskaFileServerMediaSubsession.cpp
│ │ ├── AACAudioMatroskaFileServerMediaSubsession.hh
│ │ ├── AC3AudioFileServerMediaSubsession.cpp
│ │ ├── AC3AudioMatroskaFileServerMediaSubsession.cpp
│ │ ├── AC3AudioMatroskaFileServerMediaSubsession.hh
│ │ ├── AC3AudioRTPSink.cpp
│ │ ├── AC3AudioRTPSource.cpp
│ │ ├── AC3AudioStreamFramer.cpp
│ │ ├── ADTSAudioFileServerMediaSubsession.cpp
│ │ ├── ADTSAudioFileSource.cpp
│ │ ├── AMRAudioFileServerMediaSubsession.cpp
│ │ ├── AMRAudioFileSink.cpp
│ │ ├── AMRAudioFileSource.cpp
│ │ ├── AMRAudioRTPSink.cpp
│ │ ├── AMRAudioRTPSource.cpp
│ │ ├── AMRAudioSource.cpp
│ │ ├── AudioInputDevice.cpp
│ │ ├── AudioRTPSink.cpp
│ │ ├── AVIFileSink.cpp
│ │ ├── Base64.cpp
│ │ ├── BasicUDPSink.cpp
│ │ ├── BasicUDPSource.cpp
│ │ ├── BitVector.cpp
│ │ ├── BitVector.hh
│ │ ├── ByteStreamFileSource.cpp
│ │ ├── ByteStreamMemoryBufferSource.cpp
│ │ ├── ByteStreamMultiFileSource.cpp
│ │ ├── COPYING
│ │ ├── DarwinInjector.cpp
│ │ ├── DeviceSource.cpp
│ │ ├── DigestAuthentication.cpp
│ │ ├── DVVideoFileServerMediaSubsession.cpp
│ │ ├── DVVideoRTPSink.cpp
│ │ ├── DVVideoRTPSource.cpp
│ │ ├── DVVideoStreamFramer.cpp
│ │ ├── EBMLNumber.cpp
│ │ ├── EBMLNumber.hh
│ │ ├── FileServerMediaSubsession.cpp
│ │ ├── FileSink.cpp
│ │ ├── FramedFileSource.cpp
│ │ ├── FramedFilter.cpp
│ │ ├── FramedSource.cpp
│ │ ├── GSMAudioRTPSink.cpp
│ │ ├── H261VideoRTPSource.cpp
│ │ ├── H263plusVideoFileServerMediaSubsession.cpp
│ │ ├── H263plusVideoRTPSink.cpp
│ │ ├── H263plusVideoRTPSource.cpp
│ │ ├── H263plusVideoStreamFramer.cpp
│ │ ├── H263plusVideoStreamParser.cpp
│ │ ├── H263plusVideoStreamParser.hh
│ │ ├── H264VideoFileServerMediaSubsession.cpp
│ │ ├── H264VideoFileSink.cpp
│ │ ├── H264VideoMatroskaFileServerMediaSubsession.cpp
│ │ ├── H264VideoMatroskaFileServerMediaSubsession.hh
│ │ ├── H264VideoRTPSink.cpp
│ │ ├── H264VideoRTPSource.cpp
│ │ ├── H264VideoStreamDiscreteFramer.cpp
│ │ ├── H264VideoStreamFramer.cpp
│ │ ├── include
│ │ │ ├── AC3AudioFileServerMediaSubsession.hh
│ │ │ ├── AC3AudioRTPSink.hh
│ │ │ ├── AC3AudioRTPSource.hh
│ │ │ ├── AC3AudioStreamFramer.hh
│ │ │ ├── ADTSAudioFileServerMediaSubsession.hh
│ │ │ ├── ADTSAudioFileSource.hh
│ │ │ ├── AMRAudioFileServerMediaSubsession.hh
│ │ │ ├── AMRAudioFileSink.hh
│ │ │ ├── AMRAudioFileSource.hh
│ │ │ ├── AMRAudioRTPSink.hh
│ │ │ ├── AMRAudioRTPSource.hh
│ │ │ ├── AMRAudioSource.hh
│ │ │ ├── AudioInputDevice.hh
│ │ │ ├── AudioRTPSink.hh
│ │ │ ├── AVIFileSink.hh
│ │ │ ├── Base64.hh
│ │ │ ├── BasicUDPSink.hh
│ │ │ ├── BasicUDPSource.hh
│ │ │ ├── ByteStreamFileSource.hh
│ │ │ ├── ByteStreamMemoryBufferSource.hh
│ │ │ ├── ByteStreamMultiFileSource.hh
│ │ │ ├── DarwinInjector.hh
│ │ │ ├── DeviceSource.hh
│ │ │ ├── DigestAuthentication.hh
│ │ │ ├── DVVideoFileServerMediaSubsession.hh
│ │ │ ├── DVVideoRTPSink.hh
│ │ │ ├── DVVideoRTPSource.hh
│ │ │ ├── DVVideoStreamFramer.hh
│ │ │ ├── FileServerMediaSubsession.hh
│ │ │ ├── FileSink.hh
│ │ │ ├── FramedFileSource.hh
│ │ │ ├── FramedFilter.hh
│ │ │ ├── FramedSource.hh
│ │ │ ├── GSMAudioRTPSink.hh
│ │ │ ├── H261VideoRTPSource.hh
│ │ │ ├── H263plusVideoFileServerMediaSubsession.hh
│ │ │ ├── H263plusVideoRTPSink.hh
│ │ │ ├── H263plusVideoRTPSource.hh
│ │ │ ├── H263plusVideoStreamFramer.hh
│ │ │ ├── H264VideoFileServerMediaSubsession.hh
│ │ │ ├── H264VideoFileSink.hh
│ │ │ ├── H264VideoRTPSink.hh
│ │ │ ├── H264VideoRTPSource.hh
│ │ │ ├── H264VideoStreamDiscreteFramer.hh
│ │ │ ├── H264VideoStreamFramer.hh
│ │ │ ├── InputFile.hh
│ │ │ ├── JPEGVideoRTPSink.hh
│ │ │ ├── JPEGVideoRTPSource.hh
│ │ │ ├── JPEGVideoSource.hh
│ │ │ ├── liveMedia.hh
│ │ │ ├── liveMedia_version.hh
│ │ │ ├── Locale.hh
│ │ │ ├── MatroskaFile.hh
│ │ │ ├── MatroskaFileServerDemux.hh
│ │ │ ├── Media.hh
│ │ │ ├── MediaSession.hh
│ │ │ ├── MediaSink.hh
│ │ │ ├── MediaSource.hh
│ │ │ ├── MP3ADU.hh
│ │ │ ├── MP3ADUinterleaving.hh
│ │ │ ├── MP3ADURTPSink.hh
│ │ │ ├── MP3ADURTPSource.hh
│ │ │ ├── MP3ADUTranscoder.hh
│ │ │ ├── MP3AudioFileServerMediaSubsession.hh
│ │ │ ├── MP3FileSource.hh
│ │ │ ├── MP3HTTPSource.hh
│ │ │ ├── MP3Transcoder.hh
│ │ │ ├── MPEG1or2AudioRTPSink.hh
│ │ │ ├── MPEG1or2AudioRTPSource.hh
│ │ │ ├── MPEG1or2AudioStreamFramer.hh
│ │ │ ├── MPEG1or2DemuxedElementaryStream.hh
│ │ │ ├── MPEG1or2DemuxedServerMediaSubsession.hh
│ │ │ ├── MPEG1or2Demux.hh
│ │ │ ├── MPEG1or2FileServerDemux.hh
│ │ │ ├── MPEG1or2VideoFileServerMediaSubsession.hh
│ │ │ ├── MPEG1or2VideoRTPSink.hh
│ │ │ ├── MPEG1or2VideoRTPSource.hh
│ │ │ ├── MPEG1or2VideoStreamDiscreteFramer.hh
│ │ │ ├── MPEG1or2VideoStreamFramer.hh
│ │ │ ├── MPEG2IndexFromTransportStream.hh
│ │ │ ├── MPEG2TransportFileServerMediaSubsession.hh
│ │ │ ├── MPEG2TransportStreamFramer.hh
│ │ │ ├── MPEG2TransportStreamFromESSource.hh
│ │ │ ├── MPEG2TransportStreamFromPESSource.hh
│ │ │ ├── MPEG2TransportStreamIndexFile.hh
│ │ │ ├── MPEG2TransportStreamMultiplexor.hh
│ │ │ ├── MPEG2TransportStreamTrickModeFilter.hh
│ │ │ ├── MPEG2TransportUDPServerMediaSubsession.hh
│ │ │ ├── MPEG4ESVideoRTPSink.hh
│ │ │ ├── MPEG4ESVideoRTPSource.hh
│ │ │ ├── MPEG4GenericRTPSink.hh
│ │ │ ├── MPEG4GenericRTPSource.hh
│ │ │ ├── MPEG4LATMAudioRTPSink.hh
│ │ │ ├── MPEG4LATMAudioRTPSource.hh
│ │ │ ├── MPEG4VideoFileServerMediaSubsession.hh
│ │ │ ├── MPEG4VideoStreamDiscreteFramer.hh
│ │ │ ├── MPEG4VideoStreamFramer.hh
│ │ │ ├── MPEGVideoStreamFramer.hh
│ │ │ ├── MultiFramedRTPSink.hh
│ │ │ ├── MultiFramedRTPSource.hh
│ │ │ ├── OnDemandServerMediaSubsession.hh
│ │ │ ├── OutputFile.hh
│ │ │ ├── PassiveServerMediaSubsession.hh
│ │ │ ├── QCELPAudioRTPSource.hh
│ │ │ ├── QuickTimeFileSink.hh
│ │ │ ├── QuickTimeGenericRTPSource.hh
│ │ │ ├── RTCP.hh
│ │ │ ├── RTPInterface.hh
│ │ │ ├── RTPSink.hh
│ │ │ ├── RTPSource.hh
│ │ │ ├── RTSPClient.hh
│ │ │ ├── RTSPCommon.hh
│ │ │ ├── RTSPServer.hh
│ │ │ ├── RTSPServerSupportingHTTPStreaming.hh
│ │ │ ├── ServerMediaSession.hh
│ │ │ ├── SimpleRTPSink.hh
│ │ │ ├── SimpleRTPSource.hh
│ │ │ ├── SIPClient.hh
│ │ │ ├── StreamReplicator.hh
│ │ │ ├── T140TextRTPSink.hh
│ │ │ ├── TCPStreamSink.hh
│ │ │ ├── TextRTPSink.hh
│ │ │ ├── uLawAudioFilter.hh
│ │ │ ├── VideoRTPSink.hh
│ │ │ ├── VorbisAudioRTPSink.hh
│ │ │ ├── VorbisAudioRTPSource.hh
│ │ │ ├── VP8VideoRTPSink.hh
│ │ │ ├── VP8VideoRTPSource.hh
│ │ │ ├── WAVAudioFileServerMediaSubsession.hh
│ │ │ ├── WAVAudioFileSource.hh
│ │ │ └── WAVAudioFileSource.hh.save
│ │ ├── InputFile.cpp
│ │ ├── JPEGVideoRTPSink.cpp
│ │ ├── JPEGVideoRTPSource.cpp
│ │ ├── JPEGVideoSource.cpp
│ │ ├── Locale.cpp
│ │ ├── Makefile.head
│ │ ├── Makefile.tail
│ │ ├── MatroskaDemuxedTrack.cpp
│ │ ├── MatroskaDemuxedTrack.hh
│ │ ├── MatroskaFile.cpp
│ │ ├── MatroskaFileParser.cpp
│ │ ├── MatroskaFileParser.hh
│ │ ├── MatroskaFileServerDemux.cpp
│ │ ├── Media.cpp
│ │ ├── MediaSession.cpp
│ │ ├── MediaSink.cpp
│ │ ├── MediaSource.cpp
│ │ ├── MP3ADU.cpp
│ │ ├── MP3ADUdescriptor.cpp
│ │ ├── MP3ADUdescriptor.hh
│ │ ├── MP3ADUinterleaving.cpp
│ │ ├── MP3ADURTPSink.cpp
│ │ ├── MP3ADURTPSource.cpp
│ │ ├── MP3ADUTranscoder.cpp
│ │ ├── MP3AudioFileServerMediaSubsession.cpp
│ │ ├── MP3AudioMatroskaFileServerMediaSubsession.cpp
│ │ ├── MP3AudioMatroskaFileServerMediaSubsession.hh
│ │ ├── MP3FileSource.cpp
│ │ ├── MP3HTTPSource.cpp
│ │ ├── MP3Internals.cpp
│ │ ├── MP3Internals.hh
│ │ ├── MP3InternalsHuffman.cpp
│ │ ├── MP3InternalsHuffman.hh
│ │ ├── MP3InternalsHuffmanTable.cpp
│ │ ├── MP3StreamState.cpp
│ │ ├── MP3StreamState.hh
│ │ ├── MP3Transcoder.cpp
│ │ ├── MPEG1or2AudioRTPSink.cpp
│ │ ├── MPEG1or2AudioRTPSource.cpp
│ │ ├── MPEG1or2AudioStreamFramer.cpp
│ │ ├── MPEG1or2Demux.cpp
│ │ ├── MPEG1or2DemuxedElementaryStream.cpp
│ │ ├── MPEG1or2DemuxedServerMediaSubsession.cpp
│ │ ├── MPEG1or2FileServerDemux.cpp
│ │ ├── MPEG1or2VideoFileServerMediaSubsession.cpp
│ │ ├── MPEG1or2VideoRTPSink.cpp
│ │ ├── MPEG1or2VideoRTPSource.cpp
│ │ ├── MPEG1or2VideoStreamDiscreteFramer.cpp
│ │ ├── MPEG1or2VideoStreamFramer.cpp
│ │ ├── MPEG2IndexFromTransportStream.cpp
│ │ ├── MPEG2TransportFileServerMediaSubsession.cpp
│ │ ├── MPEG2TransportStreamFramer.cpp
│ │ ├── MPEG2TransportStreamFromESSource.cpp
│ │ ├── MPEG2TransportStreamFromPESSource.cpp
│ │ ├── MPEG2TransportStreamIndexFile.cpp
│ │ ├── MPEG2TransportStreamMultiplexor.cpp
│ │ ├── MPEG2TransportStreamTrickModeFilter.cpp
│ │ ├── MPEG2TransportUDPServerMediaSubsession.cpp
│ │ ├── MPEG4ESVideoRTPSink.cpp
│ │ ├── MPEG4ESVideoRTPSource.cpp
│ │ ├── MPEG4GenericRTPSink.cpp
│ │ ├── MPEG4GenericRTPSource.cpp
│ │ ├── MPEG4LATMAudioRTPSink.cpp
│ │ ├── MPEG4LATMAudioRTPSource.cpp
│ │ ├── MPEG4VideoFileServerMediaSubsession.cpp
│ │ ├── MPEG4VideoStreamDiscreteFramer.cpp
│ │ ├── MPEG4VideoStreamFramer.cpp
│ │ ├── MPEGVideoStreamFramer.cpp
│ │ ├── MPEGVideoStreamParser.cpp
│ │ ├── MPEGVideoStreamParser.hh
│ │ ├── MultiFramedRTPSink.cpp
│ │ ├── MultiFramedRTPSource.cpp
│ │ ├── OnDemandServerMediaSubsession.cpp
│ │ ├── our_md5.c
│ │ ├── our_md5.h
│ │ ├── our_md5hl.c
│ │ ├── OutputFile.cpp
│ │ ├── PassiveServerMediaSubsession.cpp
│ │ ├── QCELPAudioRTPSource.cpp
│ │ ├── QuickTimeFileSink.cpp
│ │ ├── QuickTimeGenericRTPSource.cpp
│ │ ├── RTCP.cpp
│ │ ├── rtcp_from_spec.c
│ │ ├── rtcp_from_spec.h
│ │ ├── RTPInterface.cpp
│ │ ├── RTPSink.cpp
│ │ ├── RTPSource.cpp
│ │ ├── RTSPClient.cpp
│ │ ├── RTSPCommon.cpp
│ │ ├── RTSPServer.cpp
│ │ ├── RTSPServerSupportingHTTPStreaming.cpp
│ │ ├── ServerMediaSession.cpp
│ │ ├── SimpleRTPSink.cpp
│ │ ├── SimpleRTPSource.cpp
│ │ ├── SIPClient.cpp
│ │ ├── StreamParser.cpp
│ │ ├── StreamParser.hh
│ │ ├── StreamReplicator.cpp
│ │ ├── T140TextMatroskaFileServerMediaSubsession.cpp
│ │ ├── T140TextMatroskaFileServerMediaSubsession.hh
│ │ ├── T140TextRTPSink.cpp
│ │ ├── TCPStreamSink.cpp
│ │ ├── TextRTPSink.cpp
│ │ ├── uLawAudioFilter.cpp
│ │ ├── VideoRTPSink.cpp
│ │ ├── VorbisAudioMatroskaFileServerMediaSubsession.cpp
│ │ ├── VorbisAudioMatroskaFileServerMediaSubsession.hh
│ │ ├── VorbisAudioRTPSink.cpp
│ │ ├── VorbisAudioRTPSource.cpp
│ │ ├── VP8VideoMatroskaFileServerMediaSubsession.cpp
│ │ ├── VP8VideoMatroskaFileServerMediaSubsession.hh
│ │ ├── VP8VideoRTPSink.cpp
│ │ ├── VP8VideoRTPSource.cpp
│ │ ├── WAVAudioFileServerMediaSubsession.cpp
│ │ └── WAVAudioFileSource.cpp
│ ├── Makefile.head
│ ├── Makefile.tail
│ ├── mediaServer
│ │ ├── COPYING
│ │ ├── DynamicRTSPServer.cpp
│ │ ├── DynamicRTSPServer.hh
│ │ ├── ffmpeg_demux.h
│ │ ├── ffmpeg_media.h
│ │ ├── ffmpeg_rtsp_server.h
│ │ ├── live555MediaServer.cpp
│ │ ├── Makefile.head
│ │ ├── Makefile.tail
│ │ ├── test.avi
│ │ ├── test.mp4
│ │ └── version.hh
│ ├── README
│ ├── testProgs
│ │ ├── COPYING
│ │ ├── Makefile.head
│ │ ├── Makefile.tail
│ │ ├── MPEG2TransportStreamIndexer.cpp
│ │ ├── openRTSP.cpp
│ │ ├── playCommon.cpp
│ │ ├── playCommon.hh
│ │ ├── playSIP.cpp
│ │ ├── sapWatch.cpp
│ │ ├── testAMRAudioStreamer.cpp
│ │ ├── testDVVideoStreamer.cpp
│ │ ├── testGSMStreamer.cpp
│ │ ├── testH264VideoStreamer.cpp
│ │ ├── testH264VideoToTransportStream.cpp
│ │ ├── testMP3Receiver.cpp
│ │ ├── testMP3.sdp
│ │ ├── testMP3Streamer.cpp
│ │ ├── testMP3-using-ADUs.sdp
│ │ ├── testMPEG1or2AudioVideo.sdp
│ │ ├── testMPEG1or2AudioVideoStreamer.cpp
│ │ ├── testMPEG1or2AudioVideoToDarwin.cpp
│ │ ├── testMPEG1or2ProgramToTransportStream.cpp
│ │ ├── testMPEG1or2Splitter.cpp
│ │ ├── testMPEG1or2VideoReceiver.cpp
│ │ ├── testMPEG1or2Video.sdp
│ │ ├── testMPEG1or2VideoStreamer.cpp
│ │ ├── testMPEG2TransportReceiver.cpp
│ │ ├── testMPEG2Transport.sdp
│ │ ├── testMPEG2TransportStreamer.cpp
│ │ ├── testMPEG2TransportStreamTrickPlay.cpp
│ │ ├── testMPEG4VideoStreamer.cpp
│ │ ├── testMPEG4VideoToDarwin.cpp
│ │ ├── testOnDemandRTSPServer.cpp
│ │ ├── testRelay.cpp
│ │ ├── testReplicator.cpp
│ │ ├── testRTSPClient.cpp
│ │ ├── testWAVAudioStreamer.cpp
│ │ └── vobStreamer.cpp
│ ├── UsageEnvironment
│ │ ├── COPYING
│ │ ├── HashTable.cpp
│ │ ├── include
│ │ │ ├── Boolean.hh
│ │ │ ├── HashTable.hh
│ │ │ ├── strDup.hh
│ │ │ ├── UsageEnvironment.hh
│ │ │ └── UsageEnvironment_version.hh
│ │ ├── Makefile.head
│ │ ├── Makefile.tail
│ │ ├── strDup.cpp
│ │ └── UsageEnvironment.cpp
│ ├── win32config
│ ├── win32config.Borland
│ └── WindowsAudioInputDevice
│ ├── showAudioInputPorts.cpp
│ ├── WindowsAudioInputDevice_common.cpp
│ ├── WindowsAudioInputDevice_common.hh
│ ├── WindowsAudioInputDevice.mak
│ ├── WindowsAudioInputDevice_mixer.cpp
│ ├── WindowsAudioInputDevice_mixer.hh
│ ├── WindowsAudioInputDevice_noMixer.cpp
│ └── WindowsAudioInputDevice_noMixer.hh
├── live555.sln
├── live555.suo
├── live555.v12.suo
├── live_ex
│ ├── DynamicRTSPServer.cpp_
│ ├── DynamicRTSPServer.hh_
│ ├── ffmpeg_demux.cpp
│ ├── ffmpeg_demuxed_elementary_stream.cpp
│ ├── ffmpeg_demuxed_elementary_stream.h
│ ├── ffmpeg_demux.h
│ ├── ffmpeg_media.h
│ ├── ffmpeg_rtsp_server.cpp
│ ├── ffmpeg_rtsp_server.h
│ ├── ffmpeg_server_demux.cpp
│ ├── ffmpeg_server_demux.h
│ ├── media_server.cpp
│ ├── readme.txt
│ └── subsession
│ ├── ffmpeg_aac_server_media_subsession.cpp
│ ├── ffmpeg_aac_server_media_subsession.h
│ ├── ffmpeg_h264_server_media_subsession.cpp
│ ├── ffmpeg_h264_server_media_subsession.h
│ ├── ffmpeg_mp3_server_media_subsession.cpp
│ ├── ffmpeg_mp3_server_media_subsession.h
│ ├── ffmpeg_mpeg4_server_media_subsession.cpp
│ ├── ffmpeg_mpeg4_server_media_subsession.h
│ └── ffmpeg_server_media_subsession.h
├── liveMedia
│ ├── AC3AudioFileServerMediaSubsession.cpp
│ ├── AC3AudioRTPSink.cpp
│ ├── AC3AudioRTPSource.cpp
│ ├── AC3AudioStreamFramer.cpp
│ ├── ADTSAudioFileServerMediaSubsession.cpp
│ ├── ADTSAudioFileSource.cpp
│ ├── AMRAudioFileServerMediaSubsession.cpp
│ ├── AMRAudioFileSink.cpp
│ ├── AMRAudioFileSource.cpp
│ ├── AMRAudioRTPSink.cpp
│ ├── AMRAudioRTPSource.cpp
│ ├── AMRAudioSource.cpp
│ ├── AudioInputDevice.cpp
│ ├── AudioRTPSink.cpp
│ ├── AVIFileSink.cpp
│ ├── Base64.cpp
│ ├── BasicUDPSink.cpp
│ ├── BasicUDPSource.cpp
│ ├── BitVector.cpp
│ ├── ByteStreamFileSource.cpp
│ ├── ByteStreamMemoryBufferSource.cpp
│ ├── ByteStreamMultiFileSource.cpp
│ ├── COPYING
│ ├── DarwinInjector.cpp
│ ├── Debug
│ │ ├── AC3AudioFileServerMediaSubsession.obj
│ │ ├── AC3AudioRTPSink.obj
│ │ ├── AC3AudioRTPSource.obj
│ │ ├── AC3AudioStreamFramer.obj
│ │ ├── ADTSAudioFileServerMediaSubsession.obj
│ │ ├── ADTSAudioFileSource.obj
│ │ ├── AMRAudioFileServerMediaSubsession.obj
│ │ ├── AMRAudioFileSink.obj
│ │ ├── AMRAudioFileSource.obj
│ │ ├── AMRAudioRTPSink.obj
│ │ ├── AMRAudioRTPSource.obj
│ │ ├── AMRAudioSource.obj
│ │ ├── AudioInputDevice.obj
│ │ ├── AudioRTPSink.obj
│ │ ├── AVIFileSink.obj
│ │ ├── Base64.obj
│ │ ├── BasicUDPSink.obj
│ │ ├── BasicUDPSource.obj
│ │ ├── BitVector.obj
│ │ ├── ByteStreamFileSource.obj
│ │ ├── ByteStreamMemoryBufferSource.obj
│ │ ├── ByteStreamMultiFileSource.obj
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── DarwinInjector.obj
│ │ ├── DeviceSource.obj
│ │ ├── DigestAuthentication.obj
│ │ ├── DVVideoFileServerMediaSubsession.obj
│ │ ├── DVVideoRTPSink.obj
│ │ ├── DVVideoRTPSource.obj
│ │ ├── DVVideoStreamFramer.obj
│ │ ├── EBMLNumber.obj
│ │ ├── FileServerMediaSubsession.obj
│ │ ├── FileSink.obj
│ │ ├── FramedFileSource.obj
│ │ ├── FramedFilter.obj
│ │ ├── FramedSource.obj
│ │ ├── GSMAudioRTPSink.obj
│ │ ├── H261VideoRTPSource.obj
│ │ ├── H263plusVideoFileServerMediaSubsession.obj
│ │ ├── H263plusVideoRTPSink.obj
│ │ ├── H263plusVideoRTPSource.obj
│ │ ├── H263plusVideoStreamFramer.obj
│ │ ├── H263plusVideoStreamParser.obj
│ │ ├── H264or5VideoFileSink.obj
│ │ ├── H264or5VideoRTPSink.obj
│ │ ├── H264or5VideoStreamDiscreteFramer.obj
│ │ ├── H264or5VideoStreamFramer.obj
│ │ ├── H264VideoFileServerMediaSubsession.obj
│ │ ├── H264VideoFileSink.obj
│ │ ├── H264VideoRTPSink.obj
│ │ ├── H264VideoRTPSource.obj
│ │ ├── H264VideoStreamDiscreteFramer.obj
│ │ ├── H264VideoStreamFramer.obj
│ │ ├── H265VideoFileServerMediaSubsession.obj
│ │ ├── H265VideoFileSink.obj
│ │ ├── H265VideoRTPSink.obj
│ │ ├── H265VideoRTPSource.obj
│ │ ├── H265VideoStreamDiscreteFramer.obj
│ │ ├── H265VideoStreamFramer.obj
│ │ ├── InputFile.obj
│ │ ├── JPEGVideoRTPSink.obj
│ │ ├── JPEGVideoRTPSource.obj
│ │ ├── JPEGVideoSource.obj
│ │ ├── lib.command.1.tlog
│ │ ├── Lib-link.read.1.tlog
│ │ ├── Lib-link.write.1.tlog
│ │ ├── Lib.read.1.tlog
│ │ ├── Lib.write.1.tlog
│ │ ├── liveMedia.lastbuildstate
│ │ ├── liveMedia.log
│ │ ├── liveMedia.vcxprojResolveAssemblyReference.cache
│ │ ├── liveMedia.write.1.tlog
│ │ ├── Locale.obj
│ │ ├── MatroskaDemuxedTrack.obj
│ │ ├── MatroskaFile.obj
│ │ ├── MatroskaFileParser.obj
│ │ ├── MatroskaFileServerDemux.obj
│ │ ├── MatroskaFileServerMediaSubsession.obj
│ │ ├── Media.obj
│ │ ├── MediaSession.obj
│ │ ├── MediaSink.obj
│ │ ├── MediaSource.obj
│ │ ├── MP3ADUdescriptor.obj
│ │ ├── MP3ADUinterleaving.obj
│ │ ├── MP3ADU.obj
│ │ ├── MP3ADURTPSink.obj
│ │ ├── MP3ADURTPSource.obj
│ │ ├── MP3ADUTranscoder.obj
│ │ ├── MP3AudioFileServerMediaSubsession.obj
│ │ ├── MP3AudioMatroskaFileServerMediaSubsession.obj
│ │ ├── MP3FileSource.obj
│ │ ├── MP3InternalsHuffman.obj
│ │ ├── MP3InternalsHuffmanTable.obj
│ │ ├── MP3Internals.obj
│ │ ├── MP3StreamState.obj
│ │ ├── MP3Transcoder.obj
│ │ ├── MPEG1or2AudioRTPSink.obj
│ │ ├── MPEG1or2AudioRTPSource.obj
│ │ ├── MPEG1or2AudioStreamFramer.obj
│ │ ├── MPEG1or2DemuxedElementaryStream.obj
│ │ ├── MPEG1or2DemuxedServerMediaSubsession.obj
│ │ ├── MPEG1or2Demux.obj
│ │ ├── MPEG1or2FileServerDemux.obj
│ │ ├── MPEG1or2VideoFileServerMediaSubsession.obj
│ │ ├── MPEG1or2VideoRTPSink.obj
│ │ ├── MPEG1or2VideoRTPSource.obj
│ │ ├── MPEG1or2VideoStreamDiscreteFramer.obj
│ │ ├── MPEG1or2VideoStreamFramer.obj
│ │ ├── MPEG2IndexFromTransportStream.obj
│ │ ├── MPEG2TransportFileServerMediaSubsession.obj
│ │ ├── MPEG2TransportStreamFramer.obj
│ │ ├── MPEG2TransportStreamFromESSource.obj
│ │ ├── MPEG2TransportStreamFromPESSource.obj
│ │ ├── MPEG2TransportStreamIndexFile.obj
│ │ ├── MPEG2TransportStreamMultiplexor.obj
│ │ ├── MPEG2TransportStreamTrickModeFilter.obj
│ │ ├── MPEG2TransportUDPServerMediaSubsession.obj
│ │ ├── MPEG4ESVideoRTPSink.obj
│ │ ├── MPEG4ESVideoRTPSource.obj
│ │ ├── MPEG4GenericRTPSink.obj
│ │ ├── MPEG4GenericRTPSource.obj
│ │ ├── MPEG4LATMAudioRTPSink.obj
│ │ ├── MPEG4LATMAudioRTPSource.obj
│ │ ├── MPEG4VideoFileServerMediaSubsession.obj
│ │ ├── MPEG4VideoStreamDiscreteFramer.obj
│ │ ├── MPEG4VideoStreamFramer.obj
│ │ ├── MPEGVideoStreamFramer.obj
│ │ ├── MPEGVideoStreamParser.obj
│ │ ├── MultiFramedRTPSink.obj
│ │ ├── MultiFramedRTPSource.obj
│ │ ├── OggDemuxedTrack.obj
│ │ ├── OggFile.obj
│ │ ├── OggFileParser.obj
│ │ ├── OggFileServerDemux.obj
│ │ ├── OggFileServerMediaSubsession.obj
│ │ ├── OggFileSink.obj
│ │ ├── OnDemandServerMediaSubsession.obj
│ │ ├── ourMD5.obj
│ │ ├── OutputFile.obj
│ │ ├── PassiveServerMediaSubsession.obj
│ │ ├── ProxyServerMediaSession.obj
│ │ ├── QCELPAudioRTPSource.obj
│ │ ├── QuickTimeFileSink.obj
│ │ ├── QuickTimeGenericRTPSource.obj
│ │ ├── rtcp_from_spec.obj
│ │ ├── RTCP.obj
│ │ ├── RTPInterface.obj
│ │ ├── RTPSink.obj
│ │ ├── RTPSource.obj
│ │ ├── RTSPClient.obj
│ │ ├── RTSPCommon.obj
│ │ ├── RTSPRegisterSender.obj
│ │ ├── RTSPServer.obj
│ │ ├── RTSPServerSupportingHTTPStreaming.obj
│ │ ├── ServerMediaSession.obj
│ │ ├── SimpleRTPSink.obj
│ │ ├── SimpleRTPSource.obj
│ │ ├── SIPClient.obj
│ │ ├── StreamParser.obj
│ │ ├── StreamReplicator.obj
│ │ ├── T140TextRTPSink.obj
│ │ ├── TCPStreamSink.obj
│ │ ├── TextRTPSink.obj
│ │ ├── TheoraVideoRTPSink.obj
│ │ ├── TheoraVideoRTPSource.obj
│ │ ├── uLawAudioFilter.obj
│ │ ├── vc100.idb
│ │ ├── vc100.pdb
│ │ ├── VideoRTPSink.obj
│ │ ├── VorbisAudioRTPSink.obj
│ │ ├── VorbisAudioRTPSource.obj
│ │ ├── VP8VideoRTPSink.obj
│ │ ├── VP8VideoRTPSource.obj
│ │ ├── VP9VideoRTPSink.obj
│ │ ├── VP9VideoRTPSource.obj
│ │ ├── WAVAudioFileServerMediaSubsession.obj
│ │ └── WAVAudioFileSource.obj
│ ├── DeviceSource.cpp
│ ├── DigestAuthentication.cpp
│ ├── DVVideoFileServerMediaSubsession.cpp
│ ├── DVVideoRTPSink.cpp
│ ├── DVVideoRTPSource.cpp
│ ├── DVVideoStreamFramer.cpp
│ ├── EBMLNumber.cpp
│ ├── EBMLNumber.hh
│ ├── FileServerMediaSubsession.cpp
│ ├── FileSink.cpp
│ ├── FramedFileSource.cpp
│ ├── FramedFilter.cpp
│ ├── FramedSource.cpp
│ ├── GSMAudioRTPSink.cpp
│ ├── H261VideoRTPSource.cpp
│ ├── H263plusVideoFileServerMediaSubsession.cpp
│ ├── H263plusVideoRTPSink.cpp
│ ├── H263plusVideoRTPSource.cpp
│ ├── H263plusVideoStreamFramer.cpp
│ ├── H263plusVideoStreamParser.cpp
│ ├── H263plusVideoStreamParser.hh
│ ├── H264or5VideoFileSink.cpp
│ ├── H264or5VideoRTPSink.cpp
│ ├── H264or5VideoStreamDiscreteFramer.cpp
│ ├── H264or5VideoStreamFramer.cpp
│ ├── H264VideoFileServerMediaSubsession.cpp
│ ├── H264VideoFileSink.cpp
│ ├── H264VideoRTPSink.cpp
│ ├── H264VideoRTPSource.cpp
│ ├── H264VideoStreamDiscreteFramer.cpp
│ ├── H264VideoStreamFramer.cpp
│ ├── H265VideoFileServerMediaSubsession.cpp
│ ├── H265VideoFileSink.cpp
│ ├── H265VideoRTPSink.cpp
│ ├── H265VideoRTPSource.cpp
│ ├── H265VideoStreamDiscreteFramer.cpp
│ ├── H265VideoStreamFramer.cpp
│ ├── include
│ │ ├── AC3AudioFileServerMediaSubsession.hh
│ │ ├── AC3AudioRTPSink.hh
│ │ ├── AC3AudioRTPSource.hh
│ │ ├── AC3AudioStreamFramer.hh
│ │ ├── ADTSAudioFileServerMediaSubsession.hh
│ │ ├── ADTSAudioFileSource.hh
│ │ ├── AMRAudioFileServerMediaSubsession.hh
│ │ ├── AMRAudioFileSink.hh
│ │ ├── AMRAudioFileSource.hh
│ │ ├── AMRAudioRTPSink.hh
│ │ ├── AMRAudioRTPSource.hh
│ │ ├── AMRAudioSource.hh
│ │ ├── AudioInputDevice.hh
│ │ ├── AudioRTPSink.hh
│ │ ├── AVIFileSink.hh
│ │ ├── Base64.hh
│ │ ├── BasicUDPSink.hh
│ │ ├── BasicUDPSource.hh
│ │ ├── BitVector.hh
│ │ ├── ByteStreamFileSource.hh
│ │ ├── ByteStreamMemoryBufferSource.hh
│ │ ├── ByteStreamMultiFileSource.hh
│ │ ├── DarwinInjector.hh
│ │ ├── DeviceSource.hh
│ │ ├── DigestAuthentication.hh
│ │ ├── DVVideoFileServerMediaSubsession.hh
│ │ ├── DVVideoRTPSink.hh
│ │ ├── DVVideoRTPSource.hh
│ │ ├── DVVideoStreamFramer.hh
│ │ ├── FileServerMediaSubsession.hh
│ │ ├── FileSink.hh
│ │ ├── FramedFileSource.hh
│ │ ├── FramedFilter.hh
│ │ ├── FramedSource.hh
│ │ ├── GSMAudioRTPSink.hh
│ │ ├── H261VideoRTPSource.hh
│ │ ├── H263plusVideoFileServerMediaSubsession.hh
│ │ ├── H263plusVideoRTPSink.hh
│ │ ├── H263plusVideoRTPSource.hh
│ │ ├── H263plusVideoStreamFramer.hh
│ │ ├── H264or5VideoFileSink.hh
│ │ ├── H264or5VideoRTPSink.hh
│ │ ├── H264or5VideoStreamDiscreteFramer.hh
│ │ ├── H264or5VideoStreamFramer.hh
│ │ ├── H264VideoFileServerMediaSubsession.hh
│ │ ├── H264VideoFileSink.hh
│ │ ├── H264VideoRTPSink.hh
│ │ ├── H264VideoRTPSource.hh
│ │ ├── H264VideoStreamDiscreteFramer.hh
│ │ ├── H264VideoStreamFramer.hh
│ │ ├── H265VideoFileServerMediaSubsession.hh
│ │ ├── H265VideoFileSink.hh
│ │ ├── H265VideoRTPSink.hh
│ │ ├── H265VideoRTPSource.hh
│ │ ├── H265VideoStreamDiscreteFramer.hh
│ │ ├── H265VideoStreamFramer.hh
│ │ ├── InputFile.hh
│ │ ├── JPEGVideoRTPSink.hh
│ │ ├── JPEGVideoRTPSource.hh
│ │ ├── JPEGVideoSource.hh
│ │ ├── liveMedia.hh
│ │ ├── liveMedia_version.hh
│ │ ├── Locale.hh
│ │ ├── MatroskaFile.hh
│ │ ├── MatroskaFileServerDemux.hh
│ │ ├── Media.hh
│ │ ├── MediaSession.hh
│ │ ├── MediaSink.hh
│ │ ├── MediaSource.hh
│ │ ├── MP3ADU.hh
│ │ ├── MP3ADUinterleaving.hh
│ │ ├── MP3ADURTPSink.hh
│ │ ├── MP3ADURTPSource.hh
│ │ ├── MP3ADUTranscoder.hh
│ │ ├── MP3AudioFileServerMediaSubsession.hh
│ │ ├── MP3FileSource.hh
│ │ ├── MP3Transcoder.hh
│ │ ├── MPEG1or2AudioRTPSink.hh
│ │ ├── MPEG1or2AudioRTPSource.hh
│ │ ├── MPEG1or2AudioStreamFramer.hh
│ │ ├── MPEG1or2DemuxedElementaryStream.hh
│ │ ├── MPEG1or2DemuxedServerMediaSubsession.hh
│ │ ├── MPEG1or2Demux.hh
│ │ ├── MPEG1or2FileServerDemux.hh
│ │ ├── MPEG1or2VideoFileServerMediaSubsession.hh
│ │ ├── MPEG1or2VideoRTPSink.hh
│ │ ├── MPEG1or2VideoRTPSource.hh
│ │ ├── MPEG1or2VideoStreamDiscreteFramer.hh
│ │ ├── MPEG1or2VideoStreamFramer.hh
│ │ ├── MPEG2IndexFromTransportStream.hh
│ │ ├── MPEG2TransportFileServerMediaSubsession.hh
│ │ ├── MPEG2TransportStreamFramer.hh
│ │ ├── MPEG2TransportStreamFromESSource.hh
│ │ ├── MPEG2TransportStreamFromPESSource.hh
│ │ ├── MPEG2TransportStreamIndexFile.hh
│ │ ├── MPEG2TransportStreamMultiplexor.hh
│ │ ├── MPEG2TransportStreamTrickModeFilter.hh
│ │ ├── MPEG2TransportUDPServerMediaSubsession.hh
│ │ ├── MPEG4ESVideoRTPSink.hh
│ │ ├── MPEG4ESVideoRTPSource.hh
│ │ ├── MPEG4GenericRTPSink.hh
│ │ ├── MPEG4GenericRTPSource.hh
│ │ ├── MPEG4LATMAudioRTPSink.hh
│ │ ├── MPEG4LATMAudioRTPSource.hh
│ │ ├── MPEG4VideoFileServerMediaSubsession.hh
│ │ ├── MPEG4VideoStreamDiscreteFramer.hh
│ │ ├── MPEG4VideoStreamFramer.hh
│ │ ├── MPEGVideoStreamFramer.hh
│ │ ├── MultiFramedRTPSink.hh
│ │ ├── MultiFramedRTPSource.hh
│ │ ├── OggFile.hh
│ │ ├── OggFileServerDemux.hh
│ │ ├── OggFileSink.hh
│ │ ├── OnDemandServerMediaSubsession.hh
│ │ ├── ourMD5.hh
│ │ ├── OutputFile.hh
│ │ ├── PassiveServerMediaSubsession.hh
│ │ ├── ProxyServerMediaSession.hh
│ │ ├── QCELPAudioRTPSource.hh
│ │ ├── QuickTimeFileSink.hh
│ │ ├── QuickTimeGenericRTPSource.hh
│ │ ├── RTCP.hh
│ │ ├── RTPInterface.hh
│ │ ├── RTPSink.hh
│ │ ├── RTPSource.hh
│ │ ├── RTSPClient.hh
│ │ ├── RTSPCommon.hh
│ │ ├── RTSPRegisterSender.hh
│ │ ├── RTSPServer.hh
│ │ ├── RTSPServerSupportingHTTPStreaming.hh
│ │ ├── ServerMediaSession.hh
│ │ ├── SimpleRTPSink.hh
│ │ ├── SimpleRTPSource.hh
│ │ ├── SIPClient.hh
│ │ ├── StreamReplicator.hh
│ │ ├── T140TextRTPSink.hh
│ │ ├── TCPStreamSink.hh
│ │ ├── TextRTPSink.hh
│ │ ├── TheoraVideoRTPSink.hh
│ │ ├── TheoraVideoRTPSource.hh
│ │ ├── uLawAudioFilter.hh
│ │ ├── VideoRTPSink.hh
│ │ ├── VorbisAudioRTPSink.hh
│ │ ├── VorbisAudioRTPSource.hh
│ │ ├── VP8VideoRTPSink.hh
│ │ ├── VP8VideoRTPSource.hh
│ │ ├── VP9VideoRTPSink.hh
│ │ ├── VP9VideoRTPSource.hh
│ │ ├── WAVAudioFileServerMediaSubsession.hh
│ │ └── WAVAudioFileSource.hh
│ ├── InputFile.cpp
│ ├── JPEGVideoRTPSink.cpp
│ ├── JPEGVideoRTPSource.cpp
│ ├── JPEGVideoSource.cpp
│ ├── liveMedia.mak
│ ├── liveMedia.vcproj
│ ├── liveMedia.vcproj.think.user.user
│ ├── liveMedia.vcproj.肖孝奇.xxqi.user
│ ├── liveMedia.vcxproj
│ ├── liveMedia.vcxproj.filters
│ ├── liveMedia.vcxproj.user
│ ├── Locale.cpp
│ ├── Makefile.head
│ ├── Makefile.tail
│ ├── MatroskaDemuxedTrack.cpp
│ ├── MatroskaDemuxedTrack.hh
│ ├── MatroskaFile.cpp
│ ├── MatroskaFileParser.cpp
│ ├── MatroskaFileParser.hh
│ ├── MatroskaFileServerDemux.cpp
│ ├── MatroskaFileServerMediaSubsession.cpp
│ ├── MatroskaFileServerMediaSubsession.hh
│ ├── Media.cpp
│ ├── MediaSession.cpp
│ ├── MediaSink.cpp
│ ├── MediaSource.cpp
│ ├── MP3ADU.cpp
│ ├── MP3ADUdescriptor.cpp
│ ├── MP3ADUdescriptor.hh
│ ├── MP3ADUinterleaving.cpp
│ ├── MP3ADURTPSink.cpp
│ ├── MP3ADURTPSource.cpp
│ ├── MP3ADUTranscoder.cpp
│ ├── MP3AudioFileServerMediaSubsession.cpp
│ ├── MP3AudioMatroskaFileServerMediaSubsession.cpp
│ ├── MP3AudioMatroskaFileServerMediaSubsession.hh
│ ├── MP3FileSource.cpp
│ ├── MP3Internals.cpp
│ ├── MP3Internals.hh
│ ├── MP3InternalsHuffman.cpp
│ ├── MP3InternalsHuffman.hh
│ ├── MP3InternalsHuffmanTable.cpp
│ ├── MP3StreamState.cpp
│ ├── MP3StreamState.hh
│ ├── MP3Transcoder.cpp
│ ├── MPEG1or2AudioRTPSink.cpp
│ ├── MPEG1or2AudioRTPSource.cpp
│ ├── MPEG1or2AudioStreamFramer.cpp
│ ├── MPEG1or2Demux.cpp
│ ├── MPEG1or2DemuxedElementaryStream.cpp
│ ├── MPEG1or2DemuxedServerMediaSubsession.cpp
│ ├── MPEG1or2FileServerDemux.cpp
│ ├── MPEG1or2VideoFileServerMediaSubsession.cpp
│ ├── MPEG1or2VideoRTPSink.cpp
│ ├── MPEG1or2VideoRTPSource.cpp
│ ├── MPEG1or2VideoStreamDiscreteFramer.cpp
│ ├── MPEG1or2VideoStreamFramer.cpp
│ ├── MPEG2IndexFromTransportStream.cpp
│ ├── MPEG2TransportFileServerMediaSubsession.cpp
│ ├── MPEG2TransportStreamFramer.cpp
│ ├── MPEG2TransportStreamFromESSource.cpp
│ ├── MPEG2TransportStreamFromPESSource.cpp
│ ├── MPEG2TransportStreamIndexFile.cpp
│ ├── MPEG2TransportStreamMultiplexor.cpp
│ ├── MPEG2TransportStreamTrickModeFilter.cpp
│ ├── MPEG2TransportUDPServerMediaSubsession.cpp
│ ├── MPEG4ESVideoRTPSink.cpp
│ ├── MPEG4ESVideoRTPSource.cpp
│ ├── MPEG4GenericRTPSink.cpp
│ ├── MPEG4GenericRTPSource.cpp
│ ├── MPEG4LATMAudioRTPSink.cpp
│ ├── MPEG4LATMAudioRTPSource.cpp
│ ├── MPEG4VideoFileServerMediaSubsession.cpp
│ ├── MPEG4VideoStreamDiscreteFramer.cpp
│ ├── MPEG4VideoStreamFramer.cpp
│ ├── MPEGVideoStreamFramer.cpp
│ ├── MPEGVideoStreamParser.cpp
│ ├── MPEGVideoStreamParser.hh
│ ├── MultiFramedRTPSink.cpp
│ ├── MultiFramedRTPSource.cpp
│ ├── OggDemuxedTrack.cpp
│ ├── OggDemuxedTrack.hh
│ ├── OggFile.cpp
│ ├── OggFileParser.cpp
│ ├── OggFileParser.hh
│ ├── OggFileServerDemux.cpp
│ ├── OggFileServerMediaSubsession.cpp
│ ├── OggFileServerMediaSubsession.hh
│ ├── OggFileSink.cpp
│ ├── OnDemandServerMediaSubsession.cpp
│ ├── ourMD5.cpp
│ ├── OutputFile.cpp
│ ├── PassiveServerMediaSubsession.cpp
│ ├── ProxyServerMediaSession.cpp
│ ├── QCELPAudioRTPSource.cpp
│ ├── QuickTimeFileSink.cpp
│ ├── QuickTimeGenericRTPSource.cpp
│ ├── RTCP.cpp
│ ├── rtcp_from_spec.c
│ ├── rtcp_from_spec.h
│ ├── RTPInterface.cpp
│ ├── RTPSink.cpp
│ ├── RTPSource.cpp
│ ├── RTSPClient.cpp
│ ├── RTSPCommon.cpp
│ ├── RTSPRegisterSender.cpp
│ ├── RTSPServer.cpp
│ ├── RTSPServerSupportingHTTPStreaming.cpp
│ ├── ServerMediaSession.cpp
│ ├── SimpleRTPSink.cpp
│ ├── SimpleRTPSource.cpp
│ ├── SIPClient.cpp
│ ├── StreamParser.cpp
│ ├── StreamParser.hh
│ ├── StreamReplicator.cpp
│ ├── T140TextRTPSink.cpp
│ ├── TCPStreamSink.cpp
│ ├── TextRTPSink.cpp
│ ├── TheoraVideoRTPSink.cpp
│ ├── TheoraVideoRTPSource.cpp
│ ├── uLawAudioFilter.cpp
│ ├── VideoRTPSink.cpp
│ ├── VorbisAudioRTPSink.cpp
│ ├── VorbisAudioRTPSource.cpp
│ ├── VP8VideoRTPSink.cpp
│ ├── VP8VideoRTPSource.cpp
│ ├── VP9VideoRTPSink.cpp
│ ├── VP9VideoRTPSource.cpp
│ ├── WAVAudioFileServerMediaSubsession.cpp
│ └── WAVAudioFileSource.cpp
├── mediaServer
│ ├── cmd.bat
│ ├── COPYING
│ ├── Debug
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── DynamicRTSPServer.obj
│ │ ├── ffmpeg_aac_server_media_subsession.obj
│ │ ├── ffmpeg_demuxed_elementary_stream.obj
│ │ ├── ffmpeg_demux.obj
│ │ ├── ffmpeg_h264_server_media_subsession.obj
│ │ ├── ffmpeg_mp3_server_media_subsession.obj
│ │ ├── ffmpeg_mpeg4_server_media_subsession.obj
│ │ ├── ffmpeg_rtsp_server.obj
│ │ ├── ffmpeg_server_demux.obj
│ │ ├── link.10980-cvtres.read.1.tlog
│ │ ├── link.10980-cvtres.write.1.tlog
│ │ ├── link.10980.read.1.tlog
│ │ ├── link.10980.write.1.tlog
│ │ ├── link.3420-cvtres.read.1.tlog
│ │ ├── link.3420-cvtres.write.1.tlog
│ │ ├── link.3420.read.1.tlog
│ │ ├── link.3420.write.1.tlog
│ │ ├── link.4524-cvtres.read.1.tlog
│ │ ├── link.4524-cvtres.write.1.tlog
│ │ ├── link.4524.read.1.tlog
│ │ ├── link.4524.read.2.tlog
│ │ ├── link.4524.write.1.tlog
│ │ ├── link.6668-cvtres.read.1.tlog
│ │ ├── link.6668-cvtres.write.1.tlog
│ │ ├── link.6668.read.1.tlog
│ │ ├── link.6668.write.1.tlog
│ │ ├── link.6960-cvtres.read.1.tlog
│ │ ├── link.6960-cvtres.write.1.tlog
│ │ ├── link.6960.read.1.tlog
│ │ ├── link.6960.write.1.tlog
│ │ ├── link.7300-cvtres.read.1.tlog
│ │ ├── link.7300-cvtres.write.1.tlog
│ │ ├── link.7300.read.1.tlog
│ │ ├── link.7300.write.1.tlog
│ │ ├── link.7324-cvtres.read.1.tlog
│ │ ├── link.7324-cvtres.write.1.tlog
│ │ ├── link.7324.read.1.tlog
│ │ ├── link.7324.write.1.tlog
│ │ ├── link.7660-cvtres.read.1.tlog
│ │ ├── link.7660-cvtres.write.1.tlog
│ │ ├── link.7660.read.1.tlog
│ │ ├── link.7660.write.1.tlog
│ │ ├── link.8444-cvtres.read.1.tlog
│ │ ├── link.8444-cvtres.write.1.tlog
│ │ ├── link.8444.read.1.tlog
│ │ ├── link.8444.read.2.tlog
│ │ ├── link.8444.write.1.tlog
│ │ ├── link.8624-cvtres.read.1.tlog
│ │ ├── link.8624-cvtres.write.1.tlog
│ │ ├── link.8624.read.1.tlog
│ │ ├── link.8624.write.1.tlog
│ │ ├── link.8740-cvtres.read.1.tlog
│ │ ├── link.8740-cvtres.write.1.tlog
│ │ ├── link.8740.read.1.tlog
│ │ ├── link.8740.write.1.tlog
│ │ ├── link.9180-cvtres.read.1.tlog
│ │ ├── link.9180-cvtres.write.1.tlog
│ │ ├── link.9180.read.1.tlog
│ │ ├── link.9180.write.1.tlog
│ │ ├── link.9228-cvtres.read.1.tlog
│ │ ├── link.9228-cvtres.write.1.tlog
│ │ ├── link.9228.read.1.tlog
│ │ ├── link.9228.write.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link-cvtres.read.1.tlog
│ │ ├── link-cvtres.write.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.read.2.tlog
│ │ ├── link.write.1.tlog
│ │ ├── live555MediaServer.obj
│ │ ├── mediaServer.exe.embed.manifest
│ │ ├── mediaServer.exe.embed.manifest.res
│ │ ├── mediaServer.exe.intermediate.manifest
│ │ ├── mediaServer.lastbuildstate
│ │ ├── mediaServer.log
│ │ ├── mediaServer_manifest.rc
│ │ ├── media_server.obj
│ │ ├── mediaServer.tlog
│ │ ├── mediaServer.vcxprojResolveAssemblyReference.cache
│ │ ├── mediaServer.write.1.tlog
│ │ ├── mt.command.1.tlog
│ │ ├── mt.read.1.tlog
│ │ ├── mt.write.1.tlog
│ │ ├── rc.command.1.tlog
│ │ ├── rc.read.1.tlog
│ │ ├── rc.write.1.tlog
│ │ ├── vc100.idb
│ │ └── vc100.pdb
│ ├── DynamicRTSPServer.cpp
│ ├── DynamicRTSPServer.cpp.old
│ ├── DynamicRTSPServer.hh
│ ├── DynamicRTSPServer.hh.old
│ ├── live555MediaServer.cpp
│ ├── Makefile.head
│ ├── Makefile.tail
│ ├── mediaServer.vcxproj
│ ├── mediaServer.vcxproj.filters
│ ├── mediaServer.vcxproj.user
│ └── version.hh
└── UsageEnvironment
├── COPYING
├── Debug
│ ├── BuildLog.htm
│ ├── cl.command.1.tlog
│ ├── CL.read.1.tlog
│ ├── CL.write.1.tlog
│ ├── HashTable.obj
│ ├── lib.command.1.tlog
│ ├── Lib-link.read.1.tlog
│ ├── Lib-link.write.1.tlog
│ ├── Lib.read.1.tlog
│ ├── Lib.write.1.tlog
│ ├── strDup.obj
│ ├── UsageEnvironment.Build.CppClean.log
│ ├── UsageEnvironment.lastbuildstate
│ ├── UsageEnvironment.log
│ ├── UsageEnvironment.obj
│ ├── UsageEnvironment.vcxprojResolveAssemblyReference.cache
│ ├── UsageEnvironment.write.1.tlog
│ ├── vc100.idb
│ └── vc100.pdb
├── HashTable.cpp
├── include
│ ├── Boolean.hh
│ ├── HashTable.hh
│ ├── strDup.hh
│ ├── UsageEnvironment.hh
│ └── UsageEnvironment_version.hh
├── Makefile.head
├── Makefile.tail
├── Release
│ ├── BuildLog.htm
│ ├── cl.command.1.tlog
│ ├── CL.read.1.tlog
│ ├── CL.write.1.tlog
│ ├── HashTable.obj
│ ├── lib.command.1.tlog
│ ├── Lib-link.read.1.tlog
│ ├── Lib-link.write.1.tlog
│ ├── Lib.read.1.tlog
│ ├── Lib.write.1.tlog
│ ├── strDup.obj
│ ├── UsageEnvironment.lastbuildstate
│ ├── UsageEnvironment.log
│ ├── UsageEnvironment.obj
│ ├── UsageEnvironment.write.1.tlog
│ ├── vc100.pdb
│ ├── vc90.idb
│ └── vc90.pdb
├── strDup.cpp
├── UsageEnvironment.cpp
├── UsageEnvironment.mak
├── UsageEnvironment.vcproj
├── UsageEnvironment.vcproj.think.user.user
├── UsageEnvironment.vcproj.肖孝奇.xxqi.user
├── UsageEnvironment.vcxproj
├── UsageEnvironment.vcxproj.filters
└── UsageEnvironment.vcxproj.user
58 directories, 1487 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论