在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → live555实现H264实时流进行RTSP发送

live555实现H264实时流进行RTSP发送

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:17.67M
  • 下载次数:5
  • 浏览次数:143
  • 发布时间:2020-09-11
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
liveMedia 项目(http://www.live555.com/)的源代码包括四个基本的库,各种测试代码以及Media Server。四个基本的库分别是: UsageEnvironment&TaskScheduler, groupsock, liveMedia和BasicUsageEnvironment。UsageEnvironment 和TaskScheduler 类用于事件的调度,实现异步读取事件的句柄的设置以及错误信息的输出。另外,还有一个HashTable 类定义了一个通用的hash 表,其它代码要用到这个表。这些都是抽象类,在应用程序中基于这些类来实现自己的子类。groups
【实例截图】
【核心代码】
live555
└── live555player
├── Debug
│   ├── live555player.exe
│   ├── live555player.ilk
│   ├── live555player.pdb
│   └── test.264
├── live555player
│   ├── BasicUsageEnvironment
│   │   ├── BasicHashTable.cpp
│   │   ├── BasicTaskScheduler0.cpp
│   │   ├── BasicTaskScheduler.cpp
│   │   ├── BasicUsageEnvironment0.cpp
│   │   ├── BasicUsageEnvironment.cpp
│   │   ├── BasicUsageEnvironment.vcxproj
│   │   ├── BasicUsageEnvironment.vcxproj.filters
│   │   ├── BasicUsageEnvironment.vcxproj.user
│   │   ├── COPYING
│   │   ├── Debug
│   │   │   ├── BasicHashTable.obj
│   │   │   ├── BasicTaskScheduler0.obj
│   │   │   ├── BasicTaskScheduler.obj
│   │   │   ├── BasicUsa.92E04722.tlog
│   │   │   │   ├── BasicUsageEnvironment.lastbuildstate
│   │   │   │   ├── cl.command.1.tlog
│   │   │   │   ├── CL.read.1.tlog
│   │   │   │   ├── CL.write.1.tlog
│   │   │   │   ├── lib.command.1.tlog
│   │   │   │   ├── Lib-link.read.1.tlog
│   │   │   │   └── Lib-link.write.1.tlog
│   │   │   ├── BasicUsageEnvironment0.obj
│   │   │   ├── BasicUsageEnvironment.log
│   │   │   ├── BasicUsageEnvironment.obj
│   │   │   ├── DelayQueue.obj
│   │   │   ├── vc120.idb
│   │   │   └── vc120.pdb
│   │   ├── DelayQueue.cpp
│   │   ├── include
│   │   │   ├── BasicHashTable.hh
│   │   │   ├── BasicUsageEnvironment0.hh
│   │   │   ├── BasicUsageEnvironment.hh
│   │   │   ├── BasicUsageEnvironment_version.hh
│   │   │   ├── DelayQueue.hh
│   │   │   └── HandlerSet.hh
│   │   ├── Makefile
│   │   ├── Makefile.head
│   │   ├── Makefile.tail
│   │   └── ReadMe.txt
│   ├── BasicUsageEnvironment.lib
│   ├── Debug
│   │   ├── DynamicRTSPServer.obj
│   │   ├── H264FramedLiveSource.obj
│   │   ├── H264LiveVideoServerMediaSubssion.obj
│   │   ├── live555MediaServer.obj
│   │   ├── live555player.log
│   │   ├── live555player.tlog
│   │   │   ├── cl.command.1.tlog
│   │   │   ├── CL.read.1.tlog
│   │   │   ├── CL.write.1.tlog
│   │   │   ├── link.command.1.tlog
│   │   │   ├── link.read.1.tlog
│   │   │   ├── link.write.1.tlog
│   │   │   └── live555player.lastbuildstate
│   │   ├── vc120.idb
│   │   └── vc120.pdb
│   ├── groupsock
│   │   ├── COPYING
│   │   ├── Debug
│   │   │   ├── GroupEId.obj
│   │   │   ├── GroupsockHelper.obj
│   │   │   ├── groupsock.log
│   │   │   ├── Groupsock.obj
│   │   │   ├── groupsock.tlog
│   │   │   │   ├── cl.command.1.tlog
│   │   │   │   ├── CL.read.1.tlog
│   │   │   │   ├── CL.write.1.tlog
│   │   │   │   ├── groupsock.lastbuildstate
│   │   │   │   ├── lib.command.1.tlog
│   │   │   │   ├── Lib-link.read.1.tlog
│   │   │   │   └── Lib-link.write.1.tlog
│   │   │   ├── inet.obj
│   │   │   ├── IOHandlers.obj
│   │   │   ├── NetAddress.obj
│   │   │   ├── NetInterface.obj
│   │   │   ├── vc120.idb
│   │   │   └── vc120.pdb
│   │   ├── GroupEId.cpp
│   │   ├── Groupsock.cpp
│   │   ├── GroupsockHelper.cpp
│   │   ├── groupsock.vcxproj
│   │   ├── groupsock.vcxproj.filters
│   │   ├── 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
│   │   ├── Makefile.head
│   │   ├── Makefile.tail
│   │   ├── NetAddress.cpp
│   │   ├── NetInterface.cpp
│   │   └── ReadMe.txt
│   ├── groupsock.lib
│   ├── H264FramedLiveSource.cpp
│   ├── H264FramedLiveSource.hh
│   ├── H264LiveVideoServerMediaSubssion.cpp
│   ├── H264LiveVideoServerMediaSubssion.hh
│   ├── live555MediaServer.cpp
│   ├── live555player.vcxproj
│   ├── live555player.vcxproj.filters
│   ├── 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
│   │   │   ├── 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
│   │   │   ├── liveMedia.Build.CppClean.log
│   │   │   ├── liveMedia.log
│   │   │   ├── liveMedia.tlog
│   │   │   │   ├── cl.command.1.tlog
│   │   │   │   ├── CL.read.1.tlog
│   │   │   │   ├── CL.write.1.tlog
│   │   │   │   ├── lib.command.1.tlog
│   │   │   │   ├── Lib-link.read.1.tlog
│   │   │   │   ├── Lib-link.write.1.tlog
│   │   │   │   └── liveMedia.lastbuildstate
│   │   │   ├── 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
│   │   │   ├── vc120.idb
│   │   │   ├── vc120.pdb
│   │   │   ├── VideoRTPSink.obj
│   │   │   ├── VorbisAudioRTPSink.obj
│   │   │   ├── VorbisAudioRTPSource.obj
│   │   │   ├── VP8VideoRTPSink.obj
│   │   │   ├── VP8VideoRTPSource.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
│   │   │   ├── 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
│   │   │   ├── WAVAudioFileServerMediaSubsession.hh
│   │   │   └── WAVAudioFileSource.hh
│   │   ├── InputFile.cpp
│   │   ├── JPEGVideoRTPSink.cpp
│   │   ├── JPEGVideoRTPSource.cpp
│   │   ├── JPEGVideoSource.cpp
│   │   ├── liveMedia.vcxproj
│   │   ├── liveMedia.vcxproj.filters
│   │   ├── Locale.cpp
│   │   ├── Makefile
│   │   ├── 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
│   │   ├── ourMD5.hh
│   │   ├── OutputFile.cpp
│   │   ├── PassiveServerMediaSubsession.cpp
│   │   ├── ProxyServerMediaSession.cpp
│   │   ├── QCELPAudioRTPSource.cpp
│   │   ├── QuickTimeFileSink.cpp
│   │   ├── QuickTimeGenericRTPSource.cpp
│   │   ├── ReadMe.txt
│   │   ├── 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
│   │   ├── WAVAudioFileServerMediaSubsession.cpp
│   │   └── WAVAudioFileSource.cpp
│   ├── liveMedia.lib
│   ├── test.264
│   ├── UsageEnvironment
│   │   ├── COPYING
│   │   ├── Debug
│   │   │   ├── HashTable.obj
│   │   │   ├── strDup.obj
│   │   │   ├── UsageEnvironment.log
│   │   │   ├── UsageEnvironment.obj
│   │   │   ├── UsageEnvironment.tlog
│   │   │   │   ├── cl.command.1.tlog
│   │   │   │   ├── CL.read.1.tlog
│   │   │   │   ├── CL.write.1.tlog
│   │   │   │   ├── lib.command.1.tlog
│   │   │   │   ├── Lib-link.read.1.tlog
│   │   │   │   ├── Lib-link.write.1.tlog
│   │   │   │   └── UsageEnvironment.lastbuildstate
│   │   │   ├── vc120.idb
│   │   │   └── vc120.pdb
│   │   ├── HashTable.cpp
│   │   ├── include
│   │   │   ├── Boolean.hh
│   │   │   ├── HashTable.hh
│   │   │   ├── strDup.hh
│   │   │   ├── UsageEnvironment.hh
│   │   │   └── UsageEnvironment_version.hh
│   │   ├── Makefile
│   │   ├── Makefile.head
│   │   ├── Makefile.tail
│   │   ├── ReadMe.txt
│   │   ├── strDup.cpp
│   │   ├── UsageEnvironment.cpp
│   │   ├── UsageEnvironment.vcxproj
│   │   └── UsageEnvironment.vcxproj.filters
│   └── UsageEnvironment.lib
├── live555player.sln
└── live555player.v12.suo

21 directories, 644 files

标签:

实例下载地址

live555实现H264实时流进行RTSP发送

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警