├── .gitignore ├── .gitmodules ├── Dockerfile ├── Modules ├── .gitignore ├── 01_libressl │ └── compile.sh ├── 02_libpcre │ └── compile.sh ├── bftpd │ └── compile.sh ├── busybox │ └── compile.sh ├── dosfstools │ └── compile.sh ├── dropbear │ ├── compile.sh │ └── localoptions.h ├── freetype2 │ └── compile.sh ├── lame │ └── compile.sh ├── lighttpd1.4 │ └── compile.sh ├── live │ ├── compile.sh │ └── live555 │ │ ├── BasicUsageEnvironment │ │ ├── BasicHashTable.cpp │ │ ├── BasicTaskScheduler.cpp │ │ ├── BasicTaskScheduler0.cpp │ │ ├── BasicUsageEnvironment.cpp │ │ ├── BasicUsageEnvironment0.cpp │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── DelayQueue.cpp │ │ ├── Makefile.head │ │ ├── Makefile.tail │ │ └── include │ │ │ ├── BasicHashTable.hh │ │ │ ├── BasicUsageEnvironment.hh │ │ │ ├── BasicUsageEnvironment0.hh │ │ │ ├── BasicUsageEnvironment_version.hh │ │ │ ├── DelayQueue.hh │ │ │ └── HandlerSet.hh │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── Makefile.head │ │ ├── Makefile.tail │ │ ├── README │ │ ├── UsageEnvironment │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── HashTable.cpp │ │ ├── Makefile.head │ │ ├── Makefile.tail │ │ ├── UsageEnvironment.cpp │ │ ├── include │ │ │ ├── Boolean.hh │ │ │ ├── HashTable.hh │ │ │ ├── UsageEnvironment.hh │ │ │ ├── UsageEnvironment_version.hh │ │ │ └── strDup.hh │ │ └── strDup.cpp │ │ ├── WindowsAudioInputDevice │ │ ├── WindowsAudioInputDevice.mak │ │ ├── WindowsAudioInputDevice_common.cpp │ │ ├── WindowsAudioInputDevice_common.hh │ │ ├── WindowsAudioInputDevice_mixer.cpp │ │ ├── WindowsAudioInputDevice_mixer.hh │ │ ├── WindowsAudioInputDevice_noMixer.cpp │ │ ├── WindowsAudioInputDevice_noMixer.hh │ │ └── showAudioInputPorts.cpp │ │ ├── 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.freebsd-no-openssl │ │ ├── config.iphone-simulator │ │ ├── config.iphoneos │ │ ├── config.linux │ │ ├── config.linux-64bit │ │ ├── config.linux-gdb │ │ ├── config.linux-no-openssl │ │ ├── config.linux-with-shared-libraries │ │ ├── config.macosx-bigsur │ │ ├── config.macosx-catalina │ │ ├── config.macosx-no-openssl │ │ ├── config.mingw │ │ ├── config.openbsd │ │ ├── config.qnx4 │ │ ├── config.solaris-32bit │ │ ├── config.solaris-64bit │ │ ├── config.uClinux │ │ ├── configure │ │ ├── fix-makefile │ │ ├── genMakefiles │ │ ├── genWindowsMakefiles │ │ ├── genWindowsMakefiles.cmd │ │ ├── groupsock │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── GroupEId.cpp │ │ ├── Groupsock.cpp │ │ ├── GroupsockHelper.cpp │ │ ├── IOHandlers.cpp │ │ ├── Makefile.head │ │ ├── Makefile.tail │ │ ├── NetAddress.cpp │ │ ├── NetInterface.cpp │ │ ├── include │ │ │ ├── GroupEId.hh │ │ │ ├── Groupsock.hh │ │ │ ├── GroupsockHelper.hh │ │ │ ├── IOHandlers.hh │ │ │ ├── NetAddress.hh │ │ │ ├── NetCommon.h │ │ │ ├── NetInterface.hh │ │ │ └── groupsock_version.hh │ │ └── inet.c │ │ ├── hlsProxy │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── Makefile.head │ │ ├── Makefile.tail │ │ └── live555HLSProxy.cpp │ │ ├── liveMedia │ │ ├── AC3AudioFileServerMediaSubsession.cpp │ │ ├── AC3AudioRTPSink.cpp │ │ ├── AC3AudioRTPSource.cpp │ │ ├── AC3AudioStreamFramer.cpp │ │ ├── ADTSAudioFileServerMediaSubsession.cpp │ │ ├── ADTSAudioFileSource.cpp │ │ ├── ADTSAudioStreamDiscreteFramer.cpp │ │ ├── AMRAudioFileServerMediaSubsession.cpp │ │ ├── AMRAudioFileSink.cpp │ │ ├── AMRAudioFileSource.cpp │ │ ├── AMRAudioRTPSink.cpp │ │ ├── AMRAudioRTPSource.cpp │ │ ├── AMRAudioSource.cpp │ │ ├── AVIFileSink.cpp │ │ ├── AudioInputDevice.cpp │ │ ├── AudioRTPSink.cpp │ │ ├── Base64.cpp │ │ ├── BasicUDPSink.cpp │ │ ├── BasicUDPSource.cpp │ │ ├── BitVector.cpp │ │ ├── ByteStreamFileSource.cpp │ │ ├── ByteStreamMemoryBufferSource.cpp │ │ ├── ByteStreamMultiFileSource.cpp │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── DVVideoFileServerMediaSubsession.cpp │ │ ├── DVVideoRTPSink.cpp │ │ ├── DVVideoRTPSource.cpp │ │ ├── DVVideoStreamFramer.cpp │ │ ├── DeviceSource.cpp │ │ ├── DigestAuthentication.cpp │ │ ├── EBMLNumber.cpp │ │ ├── EBMLNumber.hh │ │ ├── FileServerMediaSubsession.cpp │ │ ├── FileSink.cpp │ │ ├── FramedFileSource.cpp │ │ ├── FramedFilter.cpp │ │ ├── FramedSource.cpp │ │ ├── GSMAudioRTPSink.cpp │ │ ├── GenericMediaServer.cpp │ │ ├── H261VideoRTPSource.cpp │ │ ├── H263plusVideoFileServerMediaSubsession.cpp │ │ ├── H263plusVideoRTPSink.cpp │ │ ├── H263plusVideoRTPSource.cpp │ │ ├── H263plusVideoStreamFramer.cpp │ │ ├── H263plusVideoStreamParser.cpp │ │ ├── H263plusVideoStreamParser.hh │ │ ├── H264VideoFileServerMediaSubsession.cpp │ │ ├── H264VideoFileSink.cpp │ │ ├── H264VideoRTPSink.cpp │ │ ├── H264VideoRTPSource.cpp │ │ ├── H264VideoStreamDiscreteFramer.cpp │ │ ├── H264VideoStreamFramer.cpp │ │ ├── H264or5VideoFileSink.cpp │ │ ├── H264or5VideoRTPSink.cpp │ │ ├── H264or5VideoStreamDiscreteFramer.cpp │ │ ├── H264or5VideoStreamFramer.cpp │ │ ├── H265VideoFileServerMediaSubsession.cpp │ │ ├── H265VideoFileSink.cpp │ │ ├── H265VideoRTPSink.cpp │ │ ├── H265VideoRTPSource.cpp │ │ ├── H265VideoStreamDiscreteFramer.cpp │ │ ├── H265VideoStreamFramer.cpp │ │ ├── HLSSegmenter.cpp │ │ ├── HMAC_SHA1.cpp │ │ ├── InputFile.cpp │ │ ├── JPEG2000VideoRTPSink.cpp │ │ ├── JPEG2000VideoRTPSource.cpp │ │ ├── JPEGVideoRTPSink.cpp │ │ ├── JPEGVideoRTPSource.cpp │ │ ├── JPEGVideoSource.cpp │ │ ├── Locale.cpp │ │ ├── MIKEY.cpp │ │ ├── MP3ADU.cpp │ │ ├── MP3ADURTPSink.cpp │ │ ├── MP3ADURTPSource.cpp │ │ ├── MP3ADUTranscoder.cpp │ │ ├── MP3ADUdescriptor.cpp │ │ ├── MP3ADUdescriptor.hh │ │ ├── MP3ADUinterleaving.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 │ │ ├── MPEG2TransportStreamAccumulator.cpp │ │ ├── MPEG2TransportStreamDemux.cpp │ │ ├── MPEG2TransportStreamDemuxedTrack.cpp │ │ ├── MPEG2TransportStreamDemuxedTrack.hh │ │ ├── MPEG2TransportStreamFramer.cpp │ │ ├── MPEG2TransportStreamFromESSource.cpp │ │ ├── MPEG2TransportStreamFromPESSource.cpp │ │ ├── MPEG2TransportStreamIndexFile.cpp │ │ ├── MPEG2TransportStreamMultiplexor.cpp │ │ ├── MPEG2TransportStreamParser.cpp │ │ ├── MPEG2TransportStreamParser.hh │ │ ├── MPEG2TransportStreamParser_PAT.cpp │ │ ├── MPEG2TransportStreamParser_PMT.cpp │ │ ├── MPEG2TransportStreamParser_STREAM.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 │ │ ├── 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 │ │ ├── MultiFramedRTPSink.cpp │ │ ├── MultiFramedRTPSource.cpp │ │ ├── OggDemuxedTrack.cpp │ │ ├── OggDemuxedTrack.hh │ │ ├── OggFile.cpp │ │ ├── OggFileParser.cpp │ │ ├── OggFileParser.hh │ │ ├── OggFileServerDemux.cpp │ │ ├── OggFileServerMediaSubsession.cpp │ │ ├── OggFileServerMediaSubsession.hh │ │ ├── OggFileSink.cpp │ │ ├── OnDemandServerMediaSubsession.cpp │ │ ├── OutputFile.cpp │ │ ├── PassiveServerMediaSubsession.cpp │ │ ├── ProxyServerMediaSession.cpp │ │ ├── QCELPAudioRTPSource.cpp │ │ ├── QuickTimeFileSink.cpp │ │ ├── QuickTimeGenericRTPSource.cpp │ │ ├── RTCP.cpp │ │ ├── RTPInterface.cpp │ │ ├── RTPSink.cpp │ │ ├── RTPSource.cpp │ │ ├── RTSPClient.cpp │ │ ├── RTSPCommon.cpp │ │ ├── RTSPRegisterSender.cpp │ │ ├── RTSPServer.cpp │ │ ├── RTSPServerRegister.cpp │ │ ├── RawVideoRTPSink.cpp │ │ ├── RawVideoRTPSource.cpp │ │ ├── SIPClient.cpp │ │ ├── SRTPCryptographicContext.cpp │ │ ├── ServerMediaSession.cpp │ │ ├── SimpleRTPSink.cpp │ │ ├── SimpleRTPSource.cpp │ │ ├── StreamParser.cpp │ │ ├── StreamParser.hh │ │ ├── StreamReplicator.cpp │ │ ├── T140TextRTPSink.cpp │ │ ├── TLSState.cpp │ │ ├── TextRTPSink.cpp │ │ ├── TheoraVideoRTPSink.cpp │ │ ├── TheoraVideoRTPSource.cpp │ │ ├── VP8VideoRTPSink.cpp │ │ ├── VP8VideoRTPSource.cpp │ │ ├── VP9VideoRTPSink.cpp │ │ ├── VP9VideoRTPSource.cpp │ │ ├── VideoRTPSink.cpp │ │ ├── VorbisAudioRTPSink.cpp │ │ ├── VorbisAudioRTPSource.cpp │ │ ├── WAVAudioFileServerMediaSubsession.cpp │ │ ├── WAVAudioFileSource.cpp │ │ ├── include │ │ │ ├── AC3AudioFileServerMediaSubsession.hh │ │ │ ├── AC3AudioRTPSink.hh │ │ │ ├── AC3AudioRTPSource.hh │ │ │ ├── AC3AudioStreamFramer.hh │ │ │ ├── ADTSAudioFileServerMediaSubsession.hh │ │ │ ├── ADTSAudioFileSource.hh │ │ │ ├── ADTSAudioStreamDiscreteFramer.hh │ │ │ ├── AMRAudioFileServerMediaSubsession.hh │ │ │ ├── AMRAudioFileSink.hh │ │ │ ├── AMRAudioFileSource.hh │ │ │ ├── AMRAudioRTPSink.hh │ │ │ ├── AMRAudioRTPSource.hh │ │ │ ├── AMRAudioSource.hh │ │ │ ├── AVIFileSink.hh │ │ │ ├── AudioInputDevice.hh │ │ │ ├── AudioRTPSink.hh │ │ │ ├── Base64.hh │ │ │ ├── BasicUDPSink.hh │ │ │ ├── BasicUDPSource.hh │ │ │ ├── BitVector.hh │ │ │ ├── ByteStreamFileSource.hh │ │ │ ├── ByteStreamMemoryBufferSource.hh │ │ │ ├── ByteStreamMultiFileSource.hh │ │ │ ├── DVVideoFileServerMediaSubsession.hh │ │ │ ├── DVVideoRTPSink.hh │ │ │ ├── DVVideoRTPSource.hh │ │ │ ├── DVVideoStreamFramer.hh │ │ │ ├── DeviceSource.hh │ │ │ ├── DigestAuthentication.hh │ │ │ ├── FileServerMediaSubsession.hh │ │ │ ├── FileSink.hh │ │ │ ├── FramedFileSource.hh │ │ │ ├── FramedFilter.hh │ │ │ ├── FramedSource.hh │ │ │ ├── GSMAudioRTPSink.hh │ │ │ ├── GenericMediaServer.hh │ │ │ ├── H261VideoRTPSource.hh │ │ │ ├── H263plusVideoFileServerMediaSubsession.hh │ │ │ ├── H263plusVideoRTPSink.hh │ │ │ ├── H263plusVideoRTPSource.hh │ │ │ ├── H263plusVideoStreamFramer.hh │ │ │ ├── H264VideoFileServerMediaSubsession.hh │ │ │ ├── H264VideoFileSink.hh │ │ │ ├── H264VideoRTPSink.hh │ │ │ ├── H264VideoRTPSource.hh │ │ │ ├── H264VideoStreamDiscreteFramer.hh │ │ │ ├── H264VideoStreamFramer.hh │ │ │ ├── H264or5VideoFileSink.hh │ │ │ ├── H264or5VideoRTPSink.hh │ │ │ ├── H264or5VideoStreamDiscreteFramer.hh │ │ │ ├── H264or5VideoStreamFramer.hh │ │ │ ├── H265VideoFileServerMediaSubsession.hh │ │ │ ├── H265VideoFileSink.hh │ │ │ ├── H265VideoRTPSink.hh │ │ │ ├── H265VideoRTPSource.hh │ │ │ ├── H265VideoStreamDiscreteFramer.hh │ │ │ ├── H265VideoStreamFramer.hh │ │ │ ├── HLSSegmenter.hh │ │ │ ├── HMAC_SHA1.hh │ │ │ ├── HMAC_hash.hh │ │ │ ├── InputFile.hh │ │ │ ├── JPEG2000VideoRTPSink.hh │ │ │ ├── JPEG2000VideoRTPSource.hh │ │ │ ├── JPEGVideoRTPSink.hh │ │ │ ├── JPEGVideoRTPSource.hh │ │ │ ├── JPEGVideoSource.hh │ │ │ ├── Locale.hh │ │ │ ├── MIKEY.hh │ │ │ ├── MP3ADU.hh │ │ │ ├── MP3ADURTPSink.hh │ │ │ ├── MP3ADURTPSource.hh │ │ │ ├── MP3ADUTranscoder.hh │ │ │ ├── MP3ADUinterleaving.hh │ │ │ ├── MP3AudioFileServerMediaSubsession.hh │ │ │ ├── MP3FileSource.hh │ │ │ ├── MP3Transcoder.hh │ │ │ ├── MPEG1or2AudioRTPSink.hh │ │ │ ├── MPEG1or2AudioRTPSource.hh │ │ │ ├── MPEG1or2AudioStreamFramer.hh │ │ │ ├── MPEG1or2Demux.hh │ │ │ ├── MPEG1or2DemuxedElementaryStream.hh │ │ │ ├── MPEG1or2DemuxedServerMediaSubsession.hh │ │ │ ├── MPEG1or2FileServerDemux.hh │ │ │ ├── MPEG1or2VideoFileServerMediaSubsession.hh │ │ │ ├── MPEG1or2VideoRTPSink.hh │ │ │ ├── MPEG1or2VideoRTPSource.hh │ │ │ ├── MPEG1or2VideoStreamDiscreteFramer.hh │ │ │ ├── MPEG1or2VideoStreamFramer.hh │ │ │ ├── MPEG2IndexFromTransportStream.hh │ │ │ ├── MPEG2TransportFileServerMediaSubsession.hh │ │ │ ├── MPEG2TransportStreamAccumulator.hh │ │ │ ├── MPEG2TransportStreamDemux.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 │ │ │ ├── MatroskaFile.hh │ │ │ ├── MatroskaFileServerDemux.hh │ │ │ ├── Media.hh │ │ │ ├── MediaSession.hh │ │ │ ├── MediaSink.hh │ │ │ ├── MediaSource.hh │ │ │ ├── MediaTranscodingTable.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 │ │ │ ├── RawVideoFrameParameters.hh │ │ │ ├── RawVideoRTPSink.hh │ │ │ ├── RawVideoRTPSource.hh │ │ │ ├── SIPClient.hh │ │ │ ├── SRTPCryptographicContext.hh │ │ │ ├── ServerMediaSession.hh │ │ │ ├── SimpleRTPSink.hh │ │ │ ├── SimpleRTPSource.hh │ │ │ ├── StreamReplicator.hh │ │ │ ├── T140TextRTPSink.hh │ │ │ ├── TLSState.hh │ │ │ ├── TextRTPSink.hh │ │ │ ├── TheoraVideoRTPSink.hh │ │ │ ├── TheoraVideoRTPSource.hh │ │ │ ├── VP8VideoRTPSink.hh │ │ │ ├── VP8VideoRTPSource.hh │ │ │ ├── VP9VideoRTPSink.hh │ │ │ ├── VP9VideoRTPSource.hh │ │ │ ├── VideoRTPSink.hh │ │ │ ├── VorbisAudioRTPSink.hh │ │ │ ├── VorbisAudioRTPSource.hh │ │ │ ├── WAVAudioFileServerMediaSubsession.hh │ │ │ ├── WAVAudioFileSource.hh │ │ │ ├── liveMedia.hh │ │ │ ├── liveMedia_version.hh │ │ │ ├── ourMD5.hh │ │ │ └── uLawAudioFilter.hh │ │ ├── ourMD5.cpp │ │ ├── rtcp_from_spec.c │ │ ├── rtcp_from_spec.h │ │ └── uLawAudioFilter.cpp │ │ ├── mediaServer │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── DynamicRTSPServer.cpp │ │ ├── DynamicRTSPServer.hh │ │ ├── Makefile.head │ │ ├── Makefile.tail │ │ ├── live555MediaServer.cpp │ │ └── version.hh │ │ ├── proxyServer │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── Makefile.head │ │ ├── Makefile.tail │ │ └── live555ProxyServer.cpp │ │ ├── testProgs │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── MPEG2TransportStreamIndexer.cpp │ │ ├── Makefile.head │ │ ├── Makefile.tail │ │ ├── mikeyParse.cpp │ │ ├── openRTSP.cpp │ │ ├── playCommon.cpp │ │ ├── playCommon.hh │ │ ├── playSIP.cpp │ │ ├── registerRTSPStream.cpp │ │ ├── sapWatch.cpp │ │ ├── testAMRAudioStreamer.cpp │ │ ├── testDVVideoStreamer.cpp │ │ ├── testGSMStreamer.cpp │ │ ├── testH264VideoStreamer.cpp │ │ ├── testH264VideoToHLSSegments.cpp │ │ ├── testH264VideoToTransportStream.cpp │ │ ├── testH265VideoStreamer.cpp │ │ ├── testH265VideoToTransportStream.cpp │ │ ├── testMKVSplitter.cpp │ │ ├── testMKVStreamer.cpp │ │ ├── testMP3-using-ADUs.sdp │ │ ├── testMP3.sdp │ │ ├── testMP3Receiver.cpp │ │ ├── testMP3Streamer.cpp │ │ ├── testMPEG1or2AudioVideo.sdp │ │ ├── testMPEG1or2AudioVideoStreamer.cpp │ │ ├── testMPEG1or2ProgramToTransportStream.cpp │ │ ├── testMPEG1or2Splitter.cpp │ │ ├── testMPEG1or2Video.sdp │ │ ├── testMPEG1or2VideoReceiver.cpp │ │ ├── testMPEG1or2VideoStreamer.cpp │ │ ├── testMPEG2Transport.sdp │ │ ├── testMPEG2TransportReceiver.cpp │ │ ├── testMPEG2TransportStreamSplitter.cpp │ │ ├── testMPEG2TransportStreamTrickPlay.cpp │ │ ├── testMPEG2TransportStreamer.cpp │ │ ├── testMPEG4VideoStreamer.cpp │ │ ├── testOggStreamer.cpp │ │ ├── testOnDemandRTSPServer.cpp │ │ ├── testRTSPClient.cpp │ │ ├── testRelay.cpp │ │ ├── testReplicator.cpp │ │ ├── testWAVAudioStreamer.cpp │ │ └── vobStreamer.cpp │ │ ├── win32config │ │ └── win32config.Borland ├── mdns │ ├── compile.sh │ └── unicast.patch ├── mosquitto │ ├── compile.sh │ └── config.diff ├── nano │ └── compile.sh └── opus │ └── compile.sh ├── Readme.md ├── autonight ├── Makefile ├── autonight.c └── compile.sh ├── carrier-rtsp-server ├── Makefile ├── capture_and_encoding.cpp ├── capture_and_encoding.h ├── h264_video_streamer.cpp ├── imp-common.c ├── imp-common.h ├── logodata_100x100_bgra.h └── my-carrier-server ├── compileJpeg.sh ├── compileJpegTurbo.sh ├── compile_imagemagick.sh ├── compile_modules.sh ├── motor_app ├── Makefile ├── compile.sh ├── compile_upload.sh └── motor.c ├── onvif ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── compile_debug.sh ├── compile_release_upload.sh ├── generated │ ├── DeviceBinding.nsmap │ ├── DeviceIOBinding.nsmap │ ├── ImagingBinding.nsmap │ ├── MediaBinding.nsmap │ ├── PTZBinding.nsmap │ ├── PullPointSubscriptionBinding.nsmap │ ├── ReceiverBinding.nsmap │ ├── RemoteDiscoveryBinding.nsmap │ ├── SearchBinding.nsmap │ ├── onvif.h │ ├── soapC.cpp │ ├── soapDeviceBindingService.cpp │ ├── soapDeviceBindingService.h │ ├── soapDeviceIOBindingService.cpp │ ├── soapDeviceIOBindingService.h │ ├── soapH.h │ ├── soapImagingBindingService.cpp │ ├── soapImagingBindingService.h │ ├── soapMediaBindingService.cpp │ ├── soapMediaBindingService.h │ ├── soapPTZBindingService.cpp │ ├── soapPTZBindingService.h │ ├── soapPullPointSubscriptionBindingService.cpp │ ├── soapPullPointSubscriptionBindingService.h │ ├── soapReceiverBindingService.cpp │ ├── soapReceiverBindingService.h │ ├── soapRemoteDiscoveryBindingService.cpp │ ├── soapRemoteDiscoveryBindingService.h │ ├── soapSearchBindingService.cpp │ ├── soapSearchBindingService.h │ ├── soapStub.h │ ├── soapwsddService.cpp │ ├── soapwsddService.h │ └── wsdd.nsmap ├── libs │ └── rapidjson │ │ ├── allocators.h │ │ ├── document.h │ │ ├── encodedstream.h │ │ ├── encodings.h │ │ ├── error │ │ ├── en.h │ │ └── error.h │ │ ├── filereadstream.h │ │ ├── filewritestream.h │ │ ├── fwd.h │ │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ │ ├── istreamwrapper.h │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ │ ├── ostreamwrapper.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── schema.h │ │ ├── stream.h │ │ ├── stringbuffer.h │ │ └── writer.h ├── onvif-server ├── packages │ └── gsoap.zip ├── ptz_presets.conf.dist ├── src │ ├── PTZController.hpp │ ├── daemon.c │ ├── daemon.h │ ├── eth_dev_param.cpp │ ├── eth_dev_param.h │ ├── onvif_srvd.c │ ├── services │ │ ├── ServiceContext.cpp │ │ ├── ServiceContext.h │ │ ├── ServiceDevice.cpp │ │ ├── ServiceDeviceIO.cpp │ │ ├── ServiceEvent.cpp │ │ ├── ServiceImaging.cpp │ │ ├── ServiceMedia.cpp │ │ ├── ServicePTZ.cpp │ │ ├── ServiceReceiver.cpp │ │ ├── ServiceRemoteDiscovery.cpp │ │ └── ServiceWSDD.cpp │ ├── smacros.h │ ├── soap_helpers.c │ ├── soap_helpers.h │ ├── system_utils.cpp │ └── system_utils.h └── wsdl │ ├── common.xsd │ ├── deviceio.wsdl │ ├── devicemgmt.wsdl │ ├── event.wsdl │ ├── imaging.wsdl │ ├── media.wsdl │ ├── onvif.xsd │ ├── ptz.wsdl │ ├── receiver.wsdl │ ├── remotediscovery.wsdl │ ├── search.wsdl │ ├── typemap.dat │ └── types.xsd ├── rtspServer ├── .gitignore ├── Makefile ├── inc │ ├── ConfigReader.h │ ├── INIReader.h │ ├── ImpEncoder.h │ ├── OSD.hpp │ ├── capture_and_encoding.h │ ├── imp-common.h │ ├── imp │ │ ├── imp_audio.h │ │ ├── imp_common.h │ │ ├── imp_decoder.h │ │ ├── imp_encoder.h │ │ ├── imp_framesource.h │ │ ├── imp_isp.h │ │ ├── imp_ivs.h │ │ ├── imp_ivs_base_move.h │ │ ├── imp_ivs_move.h │ │ ├── imp_log.h │ │ ├── imp_osd.h │ │ ├── imp_system.h │ │ └── imp_utils.h │ ├── logodata_100x100_bgra.h │ ├── loguru.hpp │ └── sharedmem.h └── src │ ├── ImpEncoder.cpp │ ├── OSD.cpp │ ├── h264_video_streamer.cpp │ └── sharedmem.cpp ├── setCompilePath.sh ├── uboot-env ├── Makefile ├── README ├── compile.sh ├── fw_env.c ├── fw_env.config ├── fw_env.h └── fw_env_main.c ├── v4l2rtspserver-master ├── .coveralls.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── compile.sh ├── dafang.toolchain ├── deploy.sh ├── filter │ ├── README.md │ ├── g711super.c │ ├── g711super.h │ ├── git │ ├── gsm.h │ ├── my_fract.h │ ├── mylog.c │ ├── mylog.h │ ├── noise_remover.c │ ├── noise_remover.h │ ├── types.h │ ├── wave.c │ └── wave.h ├── inc │ ├── ALSACapture.h │ ├── AddH26xMarkerFilter.h │ ├── ConfigReader.h │ ├── DeviceInterface.h │ ├── DeviceSource.h │ ├── H264_V4l2DeviceSource.h │ ├── HTTPServer.h │ ├── INIReader.h │ ├── ImpCapture.h │ ├── ImpEncoder.h │ ├── MJPEGVideoSource.h │ ├── MemoryBufferSink.h │ ├── MulticastServerMediaSubsession.h │ ├── OSD.hpp │ ├── ServerMediaSubsession.h │ ├── TSServerMediaSubsession.h │ ├── UnicastServerMediaSubsession.h │ ├── filt.h │ ├── imp │ │ ├── imp_audio.h │ │ ├── imp_common.h │ │ ├── imp_decoder.h │ │ ├── imp_encoder.h │ │ ├── imp_framesource.h │ │ ├── imp_isp.h │ │ ├── imp_ivs.h │ │ ├── imp_ivs_base_move.h │ │ ├── imp_ivs_move.h │ │ ├── imp_log.h │ │ ├── imp_osd.h │ │ ├── imp_system.h │ │ └── imp_utils.h │ ├── lame.h │ ├── loguru.hpp │ └── soundcard.h ├── index.html ├── nanopi.toolchain ├── raspberry.toolchain ├── src │ ├── ALSACapture.cpp │ ├── ConfigReader.cpp │ ├── DeviceSource.cpp │ ├── H264_V4l2DeviceSource.cpp │ ├── HTTPServer.cpp │ ├── ImpCapture.cpp │ ├── ImpEncoder.cpp │ ├── MJPEGVideoSource.cpp │ ├── MemoryBufferSink.cpp │ ├── MulticastServerMediaSubsession.cpp │ ├── OSD.cpp │ ├── ServerMediaSubsession.cpp │ ├── TSServerMediaSubsession.cpp │ ├── UnicastServerMediaSubsession.cpp │ └── main.cpp ├── v4l2rtspserver-master.ini └── v4l2wrapper │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── compile.sh │ ├── inc │ ├── V4l2Access.h │ ├── V4l2Capture.h │ ├── V4l2Device.h │ ├── V4l2MmapDevice.h │ ├── V4l2Output.h │ ├── V4l2ReadWriteDevice.h │ └── logger.h │ └── src │ ├── V4l2Capture.cpp │ ├── V4l2Device.cpp │ ├── V4l2MmapDevice.cpp │ ├── V4l2Output.cpp │ └── logger.cpp └── v4l2rtspserver-tools ├── .gitignore ├── Makefile ├── compile.sh ├── compile_upload.sh ├── getimage.cpp ├── setconf.cpp ├── sharedmem.cpp └── sharedmem.h /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | *.o 3 | .DS_Store 4 | _install/* 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Dockerfile -------------------------------------------------------------------------------- /Modules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/.gitignore -------------------------------------------------------------------------------- /Modules/01_libressl/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/01_libressl/compile.sh -------------------------------------------------------------------------------- /Modules/02_libpcre/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/02_libpcre/compile.sh -------------------------------------------------------------------------------- /Modules/bftpd/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/bftpd/compile.sh -------------------------------------------------------------------------------- /Modules/busybox/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/busybox/compile.sh -------------------------------------------------------------------------------- /Modules/dosfstools/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/dosfstools/compile.sh -------------------------------------------------------------------------------- /Modules/dropbear/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/dropbear/compile.sh -------------------------------------------------------------------------------- /Modules/dropbear/localoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/dropbear/localoptions.h -------------------------------------------------------------------------------- /Modules/freetype2/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/freetype2/compile.sh -------------------------------------------------------------------------------- /Modules/lame/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/lame/compile.sh -------------------------------------------------------------------------------- /Modules/lighttpd1.4/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/lighttpd1.4/compile.sh -------------------------------------------------------------------------------- /Modules/live/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/compile.sh -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/BasicHashTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/BasicUsageEnvironment/BasicHashTable.cpp -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/BasicTaskScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/BasicUsageEnvironment/BasicTaskScheduler.cpp -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/BasicTaskScheduler0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/BasicUsageEnvironment/BasicTaskScheduler0.cpp -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/BasicUsageEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/BasicUsageEnvironment/BasicUsageEnvironment.cpp -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/BasicUsageEnvironment0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/BasicUsageEnvironment/BasicUsageEnvironment0.cpp -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/COPYING: -------------------------------------------------------------------------------- 1 | ../COPYING -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/COPYING.LESSER: -------------------------------------------------------------------------------- 1 | ../COPYING.LESSER -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/DelayQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/BasicUsageEnvironment/DelayQueue.cpp -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/Makefile.head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/BasicUsageEnvironment/Makefile.head -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/Makefile.tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/BasicUsageEnvironment/Makefile.tail -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/include/BasicHashTable.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/BasicUsageEnvironment/include/BasicHashTable.hh -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/include/BasicUsageEnvironment.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/BasicUsageEnvironment/include/BasicUsageEnvironment.hh -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/include/DelayQueue.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/BasicUsageEnvironment/include/DelayQueue.hh -------------------------------------------------------------------------------- /Modules/live/live555/BasicUsageEnvironment/include/HandlerSet.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/BasicUsageEnvironment/include/HandlerSet.hh -------------------------------------------------------------------------------- /Modules/live/live555/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/COPYING -------------------------------------------------------------------------------- /Modules/live/live555/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/COPYING.LESSER -------------------------------------------------------------------------------- /Modules/live/live555/Makefile.head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/Makefile.head -------------------------------------------------------------------------------- /Modules/live/live555/Makefile.tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/Makefile.tail -------------------------------------------------------------------------------- /Modules/live/live555/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/README -------------------------------------------------------------------------------- /Modules/live/live555/UsageEnvironment/COPYING: -------------------------------------------------------------------------------- 1 | ../COPYING -------------------------------------------------------------------------------- /Modules/live/live555/UsageEnvironment/COPYING.LESSER: -------------------------------------------------------------------------------- 1 | ../COPYING.LESSER -------------------------------------------------------------------------------- /Modules/live/live555/UsageEnvironment/HashTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/UsageEnvironment/HashTable.cpp -------------------------------------------------------------------------------- /Modules/live/live555/UsageEnvironment/Makefile.head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/UsageEnvironment/Makefile.head -------------------------------------------------------------------------------- /Modules/live/live555/UsageEnvironment/Makefile.tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/UsageEnvironment/Makefile.tail -------------------------------------------------------------------------------- /Modules/live/live555/UsageEnvironment/UsageEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/UsageEnvironment/UsageEnvironment.cpp -------------------------------------------------------------------------------- /Modules/live/live555/UsageEnvironment/include/Boolean.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/UsageEnvironment/include/Boolean.hh -------------------------------------------------------------------------------- /Modules/live/live555/UsageEnvironment/include/HashTable.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/UsageEnvironment/include/HashTable.hh -------------------------------------------------------------------------------- /Modules/live/live555/UsageEnvironment/include/UsageEnvironment.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/UsageEnvironment/include/UsageEnvironment.hh -------------------------------------------------------------------------------- /Modules/live/live555/UsageEnvironment/include/UsageEnvironment_version.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/UsageEnvironment/include/UsageEnvironment_version.hh -------------------------------------------------------------------------------- /Modules/live/live555/UsageEnvironment/include/strDup.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/UsageEnvironment/include/strDup.hh -------------------------------------------------------------------------------- /Modules/live/live555/UsageEnvironment/strDup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/UsageEnvironment/strDup.cpp -------------------------------------------------------------------------------- /Modules/live/live555/WindowsAudioInputDevice/WindowsAudioInputDevice.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/WindowsAudioInputDevice/WindowsAudioInputDevice.mak -------------------------------------------------------------------------------- /Modules/live/live555/WindowsAudioInputDevice/showAudioInputPorts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/WindowsAudioInputDevice/showAudioInputPorts.cpp -------------------------------------------------------------------------------- /Modules/live/live555/config.armeb-uclibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.armeb-uclibc -------------------------------------------------------------------------------- /Modules/live/live555/config.armlinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.armlinux -------------------------------------------------------------------------------- /Modules/live/live555/config.avr32-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.avr32-linux -------------------------------------------------------------------------------- /Modules/live/live555/config.bfin-linux-uclibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.bfin-linux-uclibc -------------------------------------------------------------------------------- /Modules/live/live555/config.bfin-uclinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.bfin-uclinux -------------------------------------------------------------------------------- /Modules/live/live555/config.bsplinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.bsplinux -------------------------------------------------------------------------------- /Modules/live/live555/config.cris-axis-linux-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.cris-axis-linux-gnu -------------------------------------------------------------------------------- /Modules/live/live555/config.cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.cygwin -------------------------------------------------------------------------------- /Modules/live/live555/config.cygwin-for-vlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.cygwin-for-vlc -------------------------------------------------------------------------------- /Modules/live/live555/config.freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.freebsd -------------------------------------------------------------------------------- /Modules/live/live555/config.freebsd-no-openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.freebsd-no-openssl -------------------------------------------------------------------------------- /Modules/live/live555/config.iphone-simulator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.iphone-simulator -------------------------------------------------------------------------------- /Modules/live/live555/config.iphoneos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.iphoneos -------------------------------------------------------------------------------- /Modules/live/live555/config.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.linux -------------------------------------------------------------------------------- /Modules/live/live555/config.linux-64bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.linux-64bit -------------------------------------------------------------------------------- /Modules/live/live555/config.linux-gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.linux-gdb -------------------------------------------------------------------------------- /Modules/live/live555/config.linux-no-openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.linux-no-openssl -------------------------------------------------------------------------------- /Modules/live/live555/config.linux-with-shared-libraries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.linux-with-shared-libraries -------------------------------------------------------------------------------- /Modules/live/live555/config.macosx-bigsur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.macosx-bigsur -------------------------------------------------------------------------------- /Modules/live/live555/config.macosx-catalina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.macosx-catalina -------------------------------------------------------------------------------- /Modules/live/live555/config.macosx-no-openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.macosx-no-openssl -------------------------------------------------------------------------------- /Modules/live/live555/config.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.mingw -------------------------------------------------------------------------------- /Modules/live/live555/config.openbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.openbsd -------------------------------------------------------------------------------- /Modules/live/live555/config.qnx4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.qnx4 -------------------------------------------------------------------------------- /Modules/live/live555/config.solaris-32bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.solaris-32bit -------------------------------------------------------------------------------- /Modules/live/live555/config.solaris-64bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.solaris-64bit -------------------------------------------------------------------------------- /Modules/live/live555/config.uClinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/config.uClinux -------------------------------------------------------------------------------- /Modules/live/live555/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/configure -------------------------------------------------------------------------------- /Modules/live/live555/fix-makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/fix-makefile -------------------------------------------------------------------------------- /Modules/live/live555/genMakefiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/genMakefiles -------------------------------------------------------------------------------- /Modules/live/live555/genWindowsMakefiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/genWindowsMakefiles -------------------------------------------------------------------------------- /Modules/live/live555/genWindowsMakefiles.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/genWindowsMakefiles.cmd -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/COPYING: -------------------------------------------------------------------------------- 1 | ../COPYING -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/COPYING.LESSER: -------------------------------------------------------------------------------- 1 | ../COPYING.LESSER -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/GroupEId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/GroupEId.cpp -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/Groupsock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/Groupsock.cpp -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/GroupsockHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/GroupsockHelper.cpp -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/IOHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/IOHandlers.cpp -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/Makefile.head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/Makefile.head -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/Makefile.tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/Makefile.tail -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/NetAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/NetAddress.cpp -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/NetInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/NetInterface.cpp -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/include/GroupEId.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/include/GroupEId.hh -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/include/Groupsock.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/include/Groupsock.hh -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/include/GroupsockHelper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/include/GroupsockHelper.hh -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/include/IOHandlers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/include/IOHandlers.hh -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/include/NetAddress.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/include/NetAddress.hh -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/include/NetCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/include/NetCommon.h -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/include/NetInterface.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/include/NetInterface.hh -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/include/groupsock_version.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/include/groupsock_version.hh -------------------------------------------------------------------------------- /Modules/live/live555/groupsock/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/groupsock/inet.c -------------------------------------------------------------------------------- /Modules/live/live555/hlsProxy/COPYING: -------------------------------------------------------------------------------- 1 | ../COPYING -------------------------------------------------------------------------------- /Modules/live/live555/hlsProxy/COPYING.LESSER: -------------------------------------------------------------------------------- 1 | ../COPYING.LESSER -------------------------------------------------------------------------------- /Modules/live/live555/hlsProxy/Makefile.head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/hlsProxy/Makefile.head -------------------------------------------------------------------------------- /Modules/live/live555/hlsProxy/Makefile.tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/hlsProxy/Makefile.tail -------------------------------------------------------------------------------- /Modules/live/live555/hlsProxy/live555HLSProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/hlsProxy/live555HLSProxy.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AC3AudioFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AC3AudioFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AC3AudioRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AC3AudioRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AC3AudioRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AC3AudioRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AC3AudioStreamFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AC3AudioStreamFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/ADTSAudioFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/ADTSAudioFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/ADTSAudioFileSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/ADTSAudioFileSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/ADTSAudioStreamDiscreteFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/ADTSAudioStreamDiscreteFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AMRAudioFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AMRAudioFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AMRAudioFileSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AMRAudioFileSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AMRAudioFileSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AMRAudioFileSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AMRAudioRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AMRAudioRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AMRAudioRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AMRAudioRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AMRAudioSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AMRAudioSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AVIFileSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AVIFileSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AudioInputDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AudioInputDevice.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/AudioRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/AudioRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/Base64.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/BasicUDPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/BasicUDPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/BasicUDPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/BasicUDPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/BitVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/BitVector.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/ByteStreamFileSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/ByteStreamFileSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/ByteStreamMemoryBufferSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/ByteStreamMemoryBufferSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/ByteStreamMultiFileSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/ByteStreamMultiFileSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/COPYING: -------------------------------------------------------------------------------- 1 | ../COPYING -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/COPYING.LESSER: -------------------------------------------------------------------------------- 1 | ../COPYING.LESSER -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/DVVideoFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/DVVideoFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/DVVideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/DVVideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/DVVideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/DVVideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/DVVideoStreamFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/DVVideoStreamFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/DeviceSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/DeviceSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/DigestAuthentication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/DigestAuthentication.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/EBMLNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/EBMLNumber.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/EBMLNumber.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/EBMLNumber.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/FileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/FileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/FileSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/FileSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/FramedFileSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/FramedFileSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/FramedFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/FramedFilter.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/FramedSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/FramedSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/GSMAudioRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/GSMAudioRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/GenericMediaServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/GenericMediaServer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H261VideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H261VideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H263plusVideoFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H263plusVideoFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H263plusVideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H263plusVideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H263plusVideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H263plusVideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H263plusVideoStreamFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H263plusVideoStreamFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H263plusVideoStreamParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H263plusVideoStreamParser.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H263plusVideoStreamParser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H263plusVideoStreamParser.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H264VideoFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H264VideoFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H264VideoFileSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H264VideoFileSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H264VideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H264VideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H264VideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H264VideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H264VideoStreamDiscreteFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H264VideoStreamDiscreteFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H264VideoStreamFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H264VideoStreamFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H264or5VideoFileSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H264or5VideoFileSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H264or5VideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H264or5VideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H264or5VideoStreamDiscreteFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H264or5VideoStreamDiscreteFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H264or5VideoStreamFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H264or5VideoStreamFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H265VideoFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H265VideoFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H265VideoFileSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H265VideoFileSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H265VideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H265VideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H265VideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H265VideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H265VideoStreamDiscreteFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H265VideoStreamDiscreteFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/H265VideoStreamFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/H265VideoStreamFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/HLSSegmenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/HLSSegmenter.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/HMAC_SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/HMAC_SHA1.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/InputFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/InputFile.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/JPEG2000VideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/JPEG2000VideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/JPEG2000VideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/JPEG2000VideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/JPEGVideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/JPEGVideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/JPEGVideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/JPEGVideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/JPEGVideoSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/JPEGVideoSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/Locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/Locale.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MIKEY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MIKEY.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3ADU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3ADU.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3ADURTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3ADURTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3ADURTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3ADURTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3ADUTranscoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3ADUTranscoder.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3ADUdescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3ADUdescriptor.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3ADUdescriptor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3ADUdescriptor.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3ADUinterleaving.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3ADUinterleaving.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3AudioFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3AudioFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3AudioMatroskaFileServerMediaSubsession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3AudioMatroskaFileServerMediaSubsession.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3FileSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3FileSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3Internals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3Internals.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3Internals.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3Internals.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3InternalsHuffman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3InternalsHuffman.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3InternalsHuffman.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3InternalsHuffman.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3InternalsHuffmanTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3InternalsHuffmanTable.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3StreamState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3StreamState.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3StreamState.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3StreamState.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MP3Transcoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MP3Transcoder.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG1or2AudioRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG1or2AudioRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG1or2AudioRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG1or2AudioRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG1or2AudioStreamFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG1or2AudioStreamFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG1or2Demux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG1or2Demux.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG1or2DemuxedElementaryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG1or2DemuxedElementaryStream.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG1or2DemuxedServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG1or2DemuxedServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG1or2FileServerDemux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG1or2FileServerDemux.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG1or2VideoFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG1or2VideoFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG1or2VideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG1or2VideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG1or2VideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG1or2VideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG1or2VideoStreamDiscreteFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG1or2VideoStreamDiscreteFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG1or2VideoStreamFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG1or2VideoStreamFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2IndexFromTransportStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2IndexFromTransportStream.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamAccumulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamAccumulator.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamDemux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamDemux.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamDemuxedTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamDemuxedTrack.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamDemuxedTrack.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamDemuxedTrack.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamFromESSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamFromESSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamFromPESSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamFromPESSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamIndexFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamIndexFile.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamMultiplexor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamMultiplexor.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamParser.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamParser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamParser.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamParser_PAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamParser_PAT.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamParser_PMT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamParser_PMT.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamParser_STREAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamParser_STREAM.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportStreamTrickModeFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportStreamTrickModeFilter.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG2TransportUDPServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG2TransportUDPServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG4ESVideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG4ESVideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG4ESVideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG4ESVideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG4GenericRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG4GenericRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG4GenericRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG4GenericRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG4LATMAudioRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG4LATMAudioRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG4LATMAudioRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG4LATMAudioRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG4VideoFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG4VideoFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG4VideoStreamDiscreteFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG4VideoStreamDiscreteFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEG4VideoStreamFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEG4VideoStreamFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEGVideoStreamFramer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEGVideoStreamFramer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEGVideoStreamParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEGVideoStreamParser.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MPEGVideoStreamParser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MPEGVideoStreamParser.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/Makefile.head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/Makefile.head -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/Makefile.tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/Makefile.tail -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MatroskaDemuxedTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MatroskaDemuxedTrack.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MatroskaDemuxedTrack.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MatroskaDemuxedTrack.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MatroskaFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MatroskaFile.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MatroskaFileParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MatroskaFileParser.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MatroskaFileParser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MatroskaFileParser.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MatroskaFileServerDemux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MatroskaFileServerDemux.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MatroskaFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MatroskaFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MatroskaFileServerMediaSubsession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MatroskaFileServerMediaSubsession.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/Media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/Media.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MediaSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MediaSession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MediaSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MediaSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MediaSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MediaSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MultiFramedRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MultiFramedRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/MultiFramedRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/MultiFramedRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/OggDemuxedTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/OggDemuxedTrack.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/OggDemuxedTrack.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/OggDemuxedTrack.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/OggFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/OggFile.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/OggFileParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/OggFileParser.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/OggFileParser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/OggFileParser.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/OggFileServerDemux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/OggFileServerDemux.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/OggFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/OggFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/OggFileServerMediaSubsession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/OggFileServerMediaSubsession.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/OggFileSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/OggFileSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/OnDemandServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/OnDemandServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/OutputFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/OutputFile.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/PassiveServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/PassiveServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/ProxyServerMediaSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/ProxyServerMediaSession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/QCELPAudioRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/QCELPAudioRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/QuickTimeFileSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/QuickTimeFileSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/QuickTimeGenericRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/QuickTimeGenericRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/RTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/RTCP.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/RTPInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/RTPInterface.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/RTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/RTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/RTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/RTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/RTSPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/RTSPClient.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/RTSPCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/RTSPCommon.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/RTSPRegisterSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/RTSPRegisterSender.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/RTSPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/RTSPServer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/RTSPServerRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/RTSPServerRegister.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/RawVideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/RawVideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/RawVideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/RawVideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/SIPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/SIPClient.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/SRTPCryptographicContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/SRTPCryptographicContext.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/ServerMediaSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/ServerMediaSession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/SimpleRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/SimpleRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/SimpleRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/SimpleRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/StreamParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/StreamParser.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/StreamParser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/StreamParser.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/StreamReplicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/StreamReplicator.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/T140TextRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/T140TextRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/TLSState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/TLSState.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/TextRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/TextRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/TheoraVideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/TheoraVideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/TheoraVideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/TheoraVideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/VP8VideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/VP8VideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/VP8VideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/VP8VideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/VP9VideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/VP9VideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/VP9VideoRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/VP9VideoRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/VideoRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/VideoRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/VorbisAudioRTPSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/VorbisAudioRTPSink.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/VorbisAudioRTPSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/VorbisAudioRTPSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/WAVAudioFileServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/WAVAudioFileServerMediaSubsession.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/WAVAudioFileSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/WAVAudioFileSource.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/AC3AudioFileServerMediaSubsession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/AC3AudioFileServerMediaSubsession.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/AC3AudioRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/AC3AudioRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/AC3AudioRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/AC3AudioRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/AC3AudioStreamFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/AC3AudioStreamFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/ADTSAudioFileSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/ADTSAudioFileSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/ADTSAudioStreamDiscreteFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/ADTSAudioStreamDiscreteFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/AMRAudioFileSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/AMRAudioFileSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/AMRAudioFileSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/AMRAudioFileSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/AMRAudioRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/AMRAudioRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/AMRAudioRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/AMRAudioRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/AMRAudioSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/AMRAudioSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/AVIFileSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/AVIFileSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/AudioInputDevice.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/AudioInputDevice.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/AudioRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/AudioRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/Base64.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/Base64.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/BasicUDPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/BasicUDPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/BasicUDPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/BasicUDPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/BitVector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/BitVector.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/ByteStreamFileSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/ByteStreamFileSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/ByteStreamMemoryBufferSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/ByteStreamMemoryBufferSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/ByteStreamMultiFileSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/ByteStreamMultiFileSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/DVVideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/DVVideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/DVVideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/DVVideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/DVVideoStreamFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/DVVideoStreamFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/DeviceSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/DeviceSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/DigestAuthentication.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/DigestAuthentication.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/FileServerMediaSubsession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/FileServerMediaSubsession.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/FileSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/FileSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/FramedFileSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/FramedFileSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/FramedFilter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/FramedFilter.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/FramedSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/FramedSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/GSMAudioRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/GSMAudioRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/GenericMediaServer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/GenericMediaServer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H261VideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H261VideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H263plusVideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H263plusVideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H263plusVideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H263plusVideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H263plusVideoStreamFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H263plusVideoStreamFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H264VideoFileSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H264VideoFileSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H264VideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H264VideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H264VideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H264VideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H264VideoStreamDiscreteFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H264VideoStreamDiscreteFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H264VideoStreamFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H264VideoStreamFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H264or5VideoFileSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H264or5VideoFileSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H264or5VideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H264or5VideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H264or5VideoStreamFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H264or5VideoStreamFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H265VideoFileSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H265VideoFileSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H265VideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H265VideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H265VideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H265VideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H265VideoStreamDiscreteFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H265VideoStreamDiscreteFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/H265VideoStreamFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/H265VideoStreamFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/HLSSegmenter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/HLSSegmenter.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/HMAC_SHA1.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/HMAC_SHA1.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/HMAC_hash.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/HMAC_hash.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/InputFile.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/InputFile.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/JPEG2000VideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/JPEG2000VideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/JPEG2000VideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/JPEG2000VideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/JPEGVideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/JPEGVideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/JPEGVideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/JPEGVideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/JPEGVideoSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/JPEGVideoSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/Locale.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/Locale.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MIKEY.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MIKEY.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MP3ADU.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MP3ADU.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MP3ADURTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MP3ADURTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MP3ADURTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MP3ADURTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MP3ADUTranscoder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MP3ADUTranscoder.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MP3ADUinterleaving.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MP3ADUinterleaving.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MP3FileSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MP3FileSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MP3Transcoder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MP3Transcoder.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG1or2AudioRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG1or2AudioRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG1or2AudioRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG1or2AudioRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG1or2AudioStreamFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG1or2AudioStreamFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG1or2Demux.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG1or2Demux.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG1or2FileServerDemux.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG1or2FileServerDemux.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG1or2VideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG1or2VideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG1or2VideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG1or2VideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG1or2VideoStreamFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG1or2VideoStreamFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG2IndexFromTransportStream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG2IndexFromTransportStream.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG2TransportStreamDemux.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG2TransportStreamDemux.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG2TransportStreamFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG2TransportStreamFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG2TransportStreamIndexFile.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG2TransportStreamIndexFile.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG4ESVideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG4ESVideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG4ESVideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG4ESVideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG4GenericRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG4GenericRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG4GenericRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG4GenericRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG4LATMAudioRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG4LATMAudioRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG4LATMAudioRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG4LATMAudioRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG4VideoStreamDiscreteFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG4VideoStreamDiscreteFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEG4VideoStreamFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEG4VideoStreamFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MPEGVideoStreamFramer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MPEGVideoStreamFramer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MatroskaFile.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MatroskaFile.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MatroskaFileServerDemux.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MatroskaFileServerDemux.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/Media.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/Media.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MediaSession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MediaSession.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MediaSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MediaSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MediaSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MediaSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MediaTranscodingTable.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MediaTranscodingTable.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MultiFramedRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MultiFramedRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/MultiFramedRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/MultiFramedRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/OggFile.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/OggFile.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/OggFileServerDemux.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/OggFileServerDemux.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/OggFileSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/OggFileSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/OnDemandServerMediaSubsession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/OnDemandServerMediaSubsession.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/OutputFile.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/OutputFile.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/PassiveServerMediaSubsession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/PassiveServerMediaSubsession.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/ProxyServerMediaSession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/ProxyServerMediaSession.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/QCELPAudioRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/QCELPAudioRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/QuickTimeFileSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/QuickTimeFileSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/QuickTimeGenericRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/QuickTimeGenericRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/RTCP.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/RTCP.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/RTPInterface.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/RTPInterface.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/RTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/RTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/RTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/RTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/RTSPClient.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/RTSPClient.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/RTSPCommon.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/RTSPCommon.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/RTSPRegisterSender.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/RTSPRegisterSender.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/RTSPServer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/RTSPServer.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/RawVideoFrameParameters.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/RawVideoFrameParameters.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/RawVideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/RawVideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/RawVideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/RawVideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/SIPClient.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/SIPClient.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/SRTPCryptographicContext.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/SRTPCryptographicContext.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/ServerMediaSession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/ServerMediaSession.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/SimpleRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/SimpleRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/SimpleRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/SimpleRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/StreamReplicator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/StreamReplicator.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/T140TextRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/T140TextRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/TLSState.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/TLSState.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/TextRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/TextRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/TheoraVideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/TheoraVideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/TheoraVideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/TheoraVideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/VP8VideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/VP8VideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/VP8VideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/VP8VideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/VP9VideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/VP9VideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/VP9VideoRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/VP9VideoRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/VideoRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/VideoRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/VorbisAudioRTPSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/VorbisAudioRTPSink.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/VorbisAudioRTPSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/VorbisAudioRTPSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/WAVAudioFileSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/WAVAudioFileSource.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/liveMedia.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/liveMedia.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/liveMedia_version.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/liveMedia_version.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/ourMD5.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/ourMD5.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/include/uLawAudioFilter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/include/uLawAudioFilter.hh -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/ourMD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/ourMD5.cpp -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/rtcp_from_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/rtcp_from_spec.c -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/rtcp_from_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/rtcp_from_spec.h -------------------------------------------------------------------------------- /Modules/live/live555/liveMedia/uLawAudioFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/liveMedia/uLawAudioFilter.cpp -------------------------------------------------------------------------------- /Modules/live/live555/mediaServer/COPYING: -------------------------------------------------------------------------------- 1 | ../COPYING -------------------------------------------------------------------------------- /Modules/live/live555/mediaServer/COPYING.LESSER: -------------------------------------------------------------------------------- 1 | ../COPYING.LESSER -------------------------------------------------------------------------------- /Modules/live/live555/mediaServer/DynamicRTSPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/mediaServer/DynamicRTSPServer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/mediaServer/DynamicRTSPServer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/mediaServer/DynamicRTSPServer.hh -------------------------------------------------------------------------------- /Modules/live/live555/mediaServer/Makefile.head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/mediaServer/Makefile.head -------------------------------------------------------------------------------- /Modules/live/live555/mediaServer/Makefile.tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/mediaServer/Makefile.tail -------------------------------------------------------------------------------- /Modules/live/live555/mediaServer/live555MediaServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/mediaServer/live555MediaServer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/mediaServer/version.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/mediaServer/version.hh -------------------------------------------------------------------------------- /Modules/live/live555/proxyServer/COPYING: -------------------------------------------------------------------------------- 1 | ../COPYING -------------------------------------------------------------------------------- /Modules/live/live555/proxyServer/COPYING.LESSER: -------------------------------------------------------------------------------- 1 | ../COPYING.LESSER -------------------------------------------------------------------------------- /Modules/live/live555/proxyServer/Makefile.head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/proxyServer/Makefile.head -------------------------------------------------------------------------------- /Modules/live/live555/proxyServer/Makefile.tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/proxyServer/Makefile.tail -------------------------------------------------------------------------------- /Modules/live/live555/proxyServer/live555ProxyServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/proxyServer/live555ProxyServer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/COPYING: -------------------------------------------------------------------------------- 1 | ../COPYING -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/COPYING.LESSER: -------------------------------------------------------------------------------- 1 | ../COPYING.LESSER -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/MPEG2TransportStreamIndexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/MPEG2TransportStreamIndexer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/Makefile.head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/Makefile.head -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/Makefile.tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/Makefile.tail -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/mikeyParse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/mikeyParse.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/openRTSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/openRTSP.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/playCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/playCommon.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/playCommon.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/playCommon.hh -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/playSIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/playSIP.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/registerRTSPStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/registerRTSPStream.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/sapWatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/sapWatch.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testAMRAudioStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testAMRAudioStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testDVVideoStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testDVVideoStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testGSMStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testGSMStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testH264VideoStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testH264VideoStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testH264VideoToHLSSegments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testH264VideoToHLSSegments.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testH264VideoToTransportStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testH264VideoToTransportStream.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testH265VideoStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testH265VideoStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testH265VideoToTransportStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testH265VideoToTransportStream.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMKVSplitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMKVSplitter.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMKVStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMKVStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMP3-using-ADUs.sdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMP3-using-ADUs.sdp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMP3.sdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMP3.sdp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMP3Receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMP3Receiver.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMP3Streamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMP3Streamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG1or2AudioVideo.sdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG1or2AudioVideo.sdp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG1or2AudioVideoStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG1or2AudioVideoStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG1or2ProgramToTransportStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG1or2ProgramToTransportStream.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG1or2Splitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG1or2Splitter.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG1or2Video.sdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG1or2Video.sdp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG1or2VideoReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG1or2VideoReceiver.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG1or2VideoStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG1or2VideoStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG2Transport.sdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG2Transport.sdp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG2TransportReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG2TransportReceiver.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG2TransportStreamSplitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG2TransportStreamSplitter.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG2TransportStreamTrickPlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG2TransportStreamTrickPlay.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG2TransportStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG2TransportStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testMPEG4VideoStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testMPEG4VideoStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testOggStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testOggStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testOnDemandRTSPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testOnDemandRTSPServer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testRTSPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testRTSPClient.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testRelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testRelay.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testReplicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testReplicator.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/testWAVAudioStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/testWAVAudioStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/testProgs/vobStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/testProgs/vobStreamer.cpp -------------------------------------------------------------------------------- /Modules/live/live555/win32config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/win32config -------------------------------------------------------------------------------- /Modules/live/live555/win32config.Borland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/live/live555/win32config.Borland -------------------------------------------------------------------------------- /Modules/mdns/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/mdns/compile.sh -------------------------------------------------------------------------------- /Modules/mdns/unicast.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/mdns/unicast.patch -------------------------------------------------------------------------------- /Modules/mosquitto/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/mosquitto/compile.sh -------------------------------------------------------------------------------- /Modules/mosquitto/config.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/mosquitto/config.diff -------------------------------------------------------------------------------- /Modules/nano/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/nano/compile.sh -------------------------------------------------------------------------------- /Modules/opus/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Modules/opus/compile.sh -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/Readme.md -------------------------------------------------------------------------------- /autonight/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/autonight/Makefile -------------------------------------------------------------------------------- /autonight/autonight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/autonight/autonight.c -------------------------------------------------------------------------------- /autonight/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/autonight/compile.sh -------------------------------------------------------------------------------- /carrier-rtsp-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/carrier-rtsp-server/Makefile -------------------------------------------------------------------------------- /carrier-rtsp-server/capture_and_encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/carrier-rtsp-server/capture_and_encoding.cpp -------------------------------------------------------------------------------- /carrier-rtsp-server/capture_and_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/carrier-rtsp-server/capture_and_encoding.h -------------------------------------------------------------------------------- /carrier-rtsp-server/h264_video_streamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/carrier-rtsp-server/h264_video_streamer.cpp -------------------------------------------------------------------------------- /carrier-rtsp-server/imp-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/carrier-rtsp-server/imp-common.c -------------------------------------------------------------------------------- /carrier-rtsp-server/imp-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/carrier-rtsp-server/imp-common.h -------------------------------------------------------------------------------- /carrier-rtsp-server/logodata_100x100_bgra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/carrier-rtsp-server/logodata_100x100_bgra.h -------------------------------------------------------------------------------- /carrier-rtsp-server/my-carrier-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/carrier-rtsp-server/my-carrier-server -------------------------------------------------------------------------------- /compileJpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/compileJpeg.sh -------------------------------------------------------------------------------- /compileJpegTurbo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/compileJpegTurbo.sh -------------------------------------------------------------------------------- /compile_imagemagick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/compile_imagemagick.sh -------------------------------------------------------------------------------- /compile_modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/compile_modules.sh -------------------------------------------------------------------------------- /motor_app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/motor_app/Makefile -------------------------------------------------------------------------------- /motor_app/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/motor_app/compile.sh -------------------------------------------------------------------------------- /motor_app/compile_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/motor_app/compile_upload.sh -------------------------------------------------------------------------------- /motor_app/motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/motor_app/motor.c -------------------------------------------------------------------------------- /onvif/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/.gitignore -------------------------------------------------------------------------------- /onvif/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/LICENSE -------------------------------------------------------------------------------- /onvif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/Makefile -------------------------------------------------------------------------------- /onvif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/README.md -------------------------------------------------------------------------------- /onvif/compile_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/compile_debug.sh -------------------------------------------------------------------------------- /onvif/compile_release_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/compile_release_upload.sh -------------------------------------------------------------------------------- /onvif/generated/DeviceBinding.nsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/DeviceBinding.nsmap -------------------------------------------------------------------------------- /onvif/generated/DeviceIOBinding.nsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/DeviceIOBinding.nsmap -------------------------------------------------------------------------------- /onvif/generated/ImagingBinding.nsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/ImagingBinding.nsmap -------------------------------------------------------------------------------- /onvif/generated/MediaBinding.nsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/MediaBinding.nsmap -------------------------------------------------------------------------------- /onvif/generated/PTZBinding.nsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/PTZBinding.nsmap -------------------------------------------------------------------------------- /onvif/generated/PullPointSubscriptionBinding.nsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/PullPointSubscriptionBinding.nsmap -------------------------------------------------------------------------------- /onvif/generated/ReceiverBinding.nsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/ReceiverBinding.nsmap -------------------------------------------------------------------------------- /onvif/generated/RemoteDiscoveryBinding.nsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/RemoteDiscoveryBinding.nsmap -------------------------------------------------------------------------------- /onvif/generated/SearchBinding.nsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/SearchBinding.nsmap -------------------------------------------------------------------------------- /onvif/generated/onvif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/onvif.h -------------------------------------------------------------------------------- /onvif/generated/soapC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapC.cpp -------------------------------------------------------------------------------- /onvif/generated/soapDeviceBindingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapDeviceBindingService.cpp -------------------------------------------------------------------------------- /onvif/generated/soapDeviceBindingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapDeviceBindingService.h -------------------------------------------------------------------------------- /onvif/generated/soapDeviceIOBindingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapDeviceIOBindingService.cpp -------------------------------------------------------------------------------- /onvif/generated/soapDeviceIOBindingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapDeviceIOBindingService.h -------------------------------------------------------------------------------- /onvif/generated/soapH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapH.h -------------------------------------------------------------------------------- /onvif/generated/soapImagingBindingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapImagingBindingService.cpp -------------------------------------------------------------------------------- /onvif/generated/soapImagingBindingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapImagingBindingService.h -------------------------------------------------------------------------------- /onvif/generated/soapMediaBindingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapMediaBindingService.cpp -------------------------------------------------------------------------------- /onvif/generated/soapMediaBindingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapMediaBindingService.h -------------------------------------------------------------------------------- /onvif/generated/soapPTZBindingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapPTZBindingService.cpp -------------------------------------------------------------------------------- /onvif/generated/soapPTZBindingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapPTZBindingService.h -------------------------------------------------------------------------------- /onvif/generated/soapPullPointSubscriptionBindingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapPullPointSubscriptionBindingService.cpp -------------------------------------------------------------------------------- /onvif/generated/soapPullPointSubscriptionBindingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapPullPointSubscriptionBindingService.h -------------------------------------------------------------------------------- /onvif/generated/soapReceiverBindingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapReceiverBindingService.cpp -------------------------------------------------------------------------------- /onvif/generated/soapReceiverBindingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapReceiverBindingService.h -------------------------------------------------------------------------------- /onvif/generated/soapRemoteDiscoveryBindingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapRemoteDiscoveryBindingService.cpp -------------------------------------------------------------------------------- /onvif/generated/soapRemoteDiscoveryBindingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapRemoteDiscoveryBindingService.h -------------------------------------------------------------------------------- /onvif/generated/soapSearchBindingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapSearchBindingService.cpp -------------------------------------------------------------------------------- /onvif/generated/soapSearchBindingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapSearchBindingService.h -------------------------------------------------------------------------------- /onvif/generated/soapStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapStub.h -------------------------------------------------------------------------------- /onvif/generated/soapwsddService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapwsddService.cpp -------------------------------------------------------------------------------- /onvif/generated/soapwsddService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/soapwsddService.h -------------------------------------------------------------------------------- /onvif/generated/wsdd.nsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/generated/wsdd.nsmap -------------------------------------------------------------------------------- /onvif/libs/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/allocators.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/document.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/encodings.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/error/en.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/error/error.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/fwd.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/memorystream.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/pointer.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/reader.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/schema.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/stream.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /onvif/libs/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/libs/rapidjson/writer.h -------------------------------------------------------------------------------- /onvif/onvif-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/onvif-server -------------------------------------------------------------------------------- /onvif/packages/gsoap.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/packages/gsoap.zip -------------------------------------------------------------------------------- /onvif/ptz_presets.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/ptz_presets.conf.dist -------------------------------------------------------------------------------- /onvif/src/PTZController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/PTZController.hpp -------------------------------------------------------------------------------- /onvif/src/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/daemon.c -------------------------------------------------------------------------------- /onvif/src/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/daemon.h -------------------------------------------------------------------------------- /onvif/src/eth_dev_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/eth_dev_param.cpp -------------------------------------------------------------------------------- /onvif/src/eth_dev_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/eth_dev_param.h -------------------------------------------------------------------------------- /onvif/src/onvif_srvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/onvif_srvd.c -------------------------------------------------------------------------------- /onvif/src/services/ServiceContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/services/ServiceContext.cpp -------------------------------------------------------------------------------- /onvif/src/services/ServiceContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/services/ServiceContext.h -------------------------------------------------------------------------------- /onvif/src/services/ServiceDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/services/ServiceDevice.cpp -------------------------------------------------------------------------------- /onvif/src/services/ServiceDeviceIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/services/ServiceDeviceIO.cpp -------------------------------------------------------------------------------- /onvif/src/services/ServiceEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/services/ServiceEvent.cpp -------------------------------------------------------------------------------- /onvif/src/services/ServiceImaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/services/ServiceImaging.cpp -------------------------------------------------------------------------------- /onvif/src/services/ServiceMedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/services/ServiceMedia.cpp -------------------------------------------------------------------------------- /onvif/src/services/ServicePTZ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/services/ServicePTZ.cpp -------------------------------------------------------------------------------- /onvif/src/services/ServiceReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/services/ServiceReceiver.cpp -------------------------------------------------------------------------------- /onvif/src/services/ServiceRemoteDiscovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/services/ServiceRemoteDiscovery.cpp -------------------------------------------------------------------------------- /onvif/src/services/ServiceWSDD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/services/ServiceWSDD.cpp -------------------------------------------------------------------------------- /onvif/src/smacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/smacros.h -------------------------------------------------------------------------------- /onvif/src/soap_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/soap_helpers.c -------------------------------------------------------------------------------- /onvif/src/soap_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/soap_helpers.h -------------------------------------------------------------------------------- /onvif/src/system_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/system_utils.cpp -------------------------------------------------------------------------------- /onvif/src/system_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/src/system_utils.h -------------------------------------------------------------------------------- /onvif/wsdl/common.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/common.xsd -------------------------------------------------------------------------------- /onvif/wsdl/deviceio.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/deviceio.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/devicemgmt.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/devicemgmt.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/event.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/event.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/imaging.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/imaging.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/media.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/media.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/onvif.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/onvif.xsd -------------------------------------------------------------------------------- /onvif/wsdl/ptz.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/ptz.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/receiver.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/receiver.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/remotediscovery.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/remotediscovery.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/search.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/search.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/typemap.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/typemap.dat -------------------------------------------------------------------------------- /onvif/wsdl/types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/onvif/wsdl/types.xsd -------------------------------------------------------------------------------- /rtspServer/.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | -------------------------------------------------------------------------------- /rtspServer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/Makefile -------------------------------------------------------------------------------- /rtspServer/inc/ConfigReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/ConfigReader.h -------------------------------------------------------------------------------- /rtspServer/inc/INIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/INIReader.h -------------------------------------------------------------------------------- /rtspServer/inc/ImpEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/ImpEncoder.h -------------------------------------------------------------------------------- /rtspServer/inc/OSD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/OSD.hpp -------------------------------------------------------------------------------- /rtspServer/inc/capture_and_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/capture_and_encoding.h -------------------------------------------------------------------------------- /rtspServer/inc/imp-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp-common.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_audio.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_common.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_decoder.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_encoder.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_framesource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_framesource.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_isp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_isp.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_ivs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_ivs.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_ivs_base_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_ivs_base_move.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_ivs_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_ivs_move.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_log.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_osd.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_system.h -------------------------------------------------------------------------------- /rtspServer/inc/imp/imp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/imp/imp_utils.h -------------------------------------------------------------------------------- /rtspServer/inc/logodata_100x100_bgra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/logodata_100x100_bgra.h -------------------------------------------------------------------------------- /rtspServer/inc/loguru.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/loguru.hpp -------------------------------------------------------------------------------- /rtspServer/inc/sharedmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/inc/sharedmem.h -------------------------------------------------------------------------------- /rtspServer/src/ImpEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/src/ImpEncoder.cpp -------------------------------------------------------------------------------- /rtspServer/src/OSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/src/OSD.cpp -------------------------------------------------------------------------------- /rtspServer/src/h264_video_streamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/src/h264_video_streamer.cpp -------------------------------------------------------------------------------- /rtspServer/src/sharedmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/rtspServer/src/sharedmem.cpp -------------------------------------------------------------------------------- /setCompilePath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/setCompilePath.sh -------------------------------------------------------------------------------- /uboot-env/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/uboot-env/Makefile -------------------------------------------------------------------------------- /uboot-env/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/uboot-env/README -------------------------------------------------------------------------------- /uboot-env/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/uboot-env/compile.sh -------------------------------------------------------------------------------- /uboot-env/fw_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/uboot-env/fw_env.c -------------------------------------------------------------------------------- /uboot-env/fw_env.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/uboot-env/fw_env.config -------------------------------------------------------------------------------- /uboot-env/fw_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/uboot-env/fw_env.h -------------------------------------------------------------------------------- /uboot-env/fw_env_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/uboot-env/fw_env_main.c -------------------------------------------------------------------------------- /v4l2rtspserver-master/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: JHXnPIUwlIxL9EWjL7zypPbTStK0teBOu 2 | -------------------------------------------------------------------------------- /v4l2rtspserver-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/.gitignore -------------------------------------------------------------------------------- /v4l2rtspserver-master/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/.gitmodules -------------------------------------------------------------------------------- /v4l2rtspserver-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/.travis.yml -------------------------------------------------------------------------------- /v4l2rtspserver-master/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/CMakeLists.txt -------------------------------------------------------------------------------- /v4l2rtspserver-master/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /v4l2rtspserver-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/LICENSE -------------------------------------------------------------------------------- /v4l2rtspserver-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/README.md -------------------------------------------------------------------------------- /v4l2rtspserver-master/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/compile.sh -------------------------------------------------------------------------------- /v4l2rtspserver-master/dafang.toolchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/dafang.toolchain -------------------------------------------------------------------------------- /v4l2rtspserver-master/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/deploy.sh -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/filter/README.md -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/g711super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/filter/g711super.c -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/g711super.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/filter/g711super.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/git: -------------------------------------------------------------------------------- 1 | https://github.com/SergMa/free-nross.git 2 | -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/gsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/filter/gsm.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/my_fract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/filter/my_fract.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/mylog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/filter/mylog.c -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/mylog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/filter/mylog.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/noise_remover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/filter/noise_remover.c -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/noise_remover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/filter/noise_remover.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/filter/types.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/filter/wave.c -------------------------------------------------------------------------------- /v4l2rtspserver-master/filter/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/filter/wave.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/ALSACapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/ALSACapture.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/AddH26xMarkerFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/AddH26xMarkerFilter.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/ConfigReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/ConfigReader.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/DeviceInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/DeviceInterface.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/DeviceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/DeviceSource.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/H264_V4l2DeviceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/H264_V4l2DeviceSource.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/HTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/HTTPServer.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/INIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/INIReader.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/ImpCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/ImpCapture.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/ImpEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/ImpEncoder.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/MJPEGVideoSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/MJPEGVideoSource.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/MemoryBufferSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/MemoryBufferSink.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/MulticastServerMediaSubsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/MulticastServerMediaSubsession.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/OSD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/OSD.hpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/ServerMediaSubsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/ServerMediaSubsession.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/TSServerMediaSubsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/TSServerMediaSubsession.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/UnicastServerMediaSubsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/UnicastServerMediaSubsession.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/filt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/filt.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_audio.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_common.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_decoder.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_encoder.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_framesource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_framesource.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_isp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_isp.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_ivs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_ivs.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_ivs_base_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_ivs_base_move.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_ivs_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_ivs_move.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_log.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_osd.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_system.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/imp/imp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/imp/imp_utils.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/lame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/lame.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/loguru.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/loguru.hpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/inc/soundcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/inc/soundcard.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/index.html -------------------------------------------------------------------------------- /v4l2rtspserver-master/nanopi.toolchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/nanopi.toolchain -------------------------------------------------------------------------------- /v4l2rtspserver-master/raspberry.toolchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/raspberry.toolchain -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/ALSACapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/ALSACapture.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/ConfigReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/ConfigReader.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/DeviceSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/DeviceSource.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/H264_V4l2DeviceSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/H264_V4l2DeviceSource.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/HTTPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/HTTPServer.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/ImpCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/ImpCapture.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/ImpEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/ImpEncoder.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/MJPEGVideoSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/MJPEGVideoSource.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/MemoryBufferSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/MemoryBufferSink.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/MulticastServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/MulticastServerMediaSubsession.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/OSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/OSD.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/ServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/ServerMediaSubsession.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/TSServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/TSServerMediaSubsession.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/UnicastServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/UnicastServerMediaSubsession.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/src/main.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2rtspserver-master.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2rtspserver-master.ini -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/LICENSE -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/Makefile -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/README.md -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/compile.sh -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/inc/V4l2Access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/inc/V4l2Access.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/inc/V4l2Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/inc/V4l2Capture.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/inc/V4l2Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/inc/V4l2Device.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/inc/V4l2MmapDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/inc/V4l2MmapDevice.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/inc/V4l2Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/inc/V4l2Output.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/inc/V4l2ReadWriteDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/inc/V4l2ReadWriteDevice.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/inc/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/inc/logger.h -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/src/V4l2Capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/src/V4l2Capture.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/src/V4l2Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/src/V4l2Device.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/src/V4l2MmapDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/src/V4l2MmapDevice.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/src/V4l2Output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/src/V4l2Output.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-master/v4l2wrapper/src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-master/v4l2wrapper/src/logger.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-tools/.gitignore: -------------------------------------------------------------------------------- 1 | getimage 2 | setconf 3 | -------------------------------------------------------------------------------- /v4l2rtspserver-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-tools/Makefile -------------------------------------------------------------------------------- /v4l2rtspserver-tools/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-tools/compile.sh -------------------------------------------------------------------------------- /v4l2rtspserver-tools/compile_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-tools/compile_upload.sh -------------------------------------------------------------------------------- /v4l2rtspserver-tools/getimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-tools/getimage.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-tools/setconf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-tools/setconf.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-tools/sharedmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-tools/sharedmem.cpp -------------------------------------------------------------------------------- /v4l2rtspserver-tools/sharedmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dafang-Hacks/Main/HEAD/v4l2rtspserver-tools/sharedmem.h --------------------------------------------------------------------------------