├── .gitattributes ├── .gitignore ├── 111.png ├── LICENSE ├── Napster模型.vsdx ├── QQ截图20160506201504.png ├── README.md ├── client_project ├── Include │ ├── ffmpeg │ │ ├── libavcodec │ │ │ ├── avcodec.h │ │ │ ├── avdct.h │ │ │ ├── avfft.h │ │ │ ├── d3d11va.h │ │ │ ├── dirac.h │ │ │ ├── dv_profile.h │ │ │ ├── dxva2.h │ │ │ ├── qsv.h │ │ │ ├── vaapi.h │ │ │ ├── vda.h │ │ │ ├── vdpau.h │ │ │ ├── version.h │ │ │ ├── videotoolbox.h │ │ │ ├── vorbis_parser.h │ │ │ └── xvmc.h │ │ ├── libavdevice │ │ │ ├── avdevice.h │ │ │ └── version.h │ │ ├── libavfilter │ │ │ ├── avfilter.h │ │ │ ├── avfiltergraph.h │ │ │ ├── buffersink.h │ │ │ ├── buffersrc.h │ │ │ └── version.h │ │ ├── libavformat │ │ │ ├── avformat.h │ │ │ ├── avio.h │ │ │ └── version.h │ │ ├── libavutil │ │ │ ├── adler32.h │ │ │ ├── aes.h │ │ │ ├── aes_ctr.h │ │ │ ├── attributes.h │ │ │ ├── audio_fifo.h │ │ │ ├── avassert.h │ │ │ ├── avconfig.h │ │ │ ├── avstring.h │ │ │ ├── avutil.h │ │ │ ├── base64.h │ │ │ ├── blowfish.h │ │ │ ├── bprint.h │ │ │ ├── bswap.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast5.h │ │ │ ├── channel_layout.h │ │ │ ├── common.h │ │ │ ├── cpu.h │ │ │ ├── crc.h │ │ │ ├── des.h │ │ │ ├── dict.h │ │ │ ├── display.h │ │ │ ├── downmix_info.h │ │ │ ├── error.h │ │ │ ├── eval.h │ │ │ ├── ffversion.h │ │ │ ├── fifo.h │ │ │ ├── file.h │ │ │ ├── frame.h │ │ │ ├── hash.h │ │ │ ├── hmac.h │ │ │ ├── hwcontext.h │ │ │ ├── hwcontext_vdpau.h │ │ │ ├── imgutils.h │ │ │ ├── intfloat.h │ │ │ ├── intreadwrite.h │ │ │ ├── lfg.h │ │ │ ├── log.h │ │ │ ├── lzo.h │ │ │ ├── macros.h │ │ │ ├── mastering_display_metadata.h │ │ │ ├── mathematics.h │ │ │ ├── md5.h │ │ │ ├── mem.h │ │ │ ├── motion_vector.h │ │ │ ├── murmur3.h │ │ │ ├── opt.h │ │ │ ├── parseutils.h │ │ │ ├── pixdesc.h │ │ │ ├── pixelutils.h │ │ │ ├── pixfmt.h │ │ │ ├── random_seed.h │ │ │ ├── rational.h │ │ │ ├── rc4.h │ │ │ ├── replaygain.h │ │ │ ├── ripemd.h │ │ │ ├── samplefmt.h │ │ │ ├── sha.h │ │ │ ├── sha512.h │ │ │ ├── stereo3d.h │ │ │ ├── tea.h │ │ │ ├── threadmessage.h │ │ │ ├── time.h │ │ │ ├── timecode.h │ │ │ ├── timestamp.h │ │ │ ├── tree.h │ │ │ ├── twofish.h │ │ │ ├── version.h │ │ │ └── xtea.h │ │ ├── libpostproc │ │ │ ├── postprocess.h │ │ │ └── version.h │ │ ├── libswresample │ │ │ ├── swresample.h │ │ │ └── version.h │ │ └── libswscale │ │ │ ├── swscale.h │ │ │ └── version.h │ └── p2p │ │ ├── AVAPIs.h │ │ ├── AVFRAMEINFO.h │ │ ├── AVIOCTRLDEFs.h │ │ ├── IOTCAPIs.h │ │ ├── P2PTunnelAPIs.h │ │ └── RDTAPIs.h ├── android │ ├── AndroidManifest.xml │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── res │ │ ├── drawable-hdpi │ │ └── icon.png │ │ ├── drawable-ldpi │ │ └── icon.png │ │ ├── drawable-mdpi │ │ └── icon.png │ │ └── values │ │ └── libs.xml ├── client_project.pro ├── jiliang.ico ├── lib │ ├── ffmpeg │ │ ├── avcodec.lib │ │ ├── avdevice.lib │ │ ├── avfilter.lib │ │ ├── avformat.lib │ │ ├── avutil.lib │ │ ├── postproc.lib │ │ ├── swresample.lib │ │ └── swscale.lib │ └── p2p │ │ ├── AVAPIs.lib │ │ ├── IOTCAPIs.lib │ │ ├── P2PTunnelAPIs.lib │ │ └── RDTAPIs.lib ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui └── myrc.rc ├── jiliang.ico ├── nal_uint_type语义.png ├── pc客户端.png ├── server_project ├── Include │ ├── ffmpeg │ │ ├── libavcodec │ │ │ ├── avcodec.h │ │ │ ├── avdct.h │ │ │ ├── avfft.h │ │ │ ├── d3d11va.h │ │ │ ├── dirac.h │ │ │ ├── dv_profile.h │ │ │ ├── dxva2.h │ │ │ ├── qsv.h │ │ │ ├── vaapi.h │ │ │ ├── vda.h │ │ │ ├── vdpau.h │ │ │ ├── version.h │ │ │ ├── videotoolbox.h │ │ │ ├── vorbis_parser.h │ │ │ └── xvmc.h │ │ ├── libavdevice │ │ │ ├── avdevice.h │ │ │ └── version.h │ │ ├── libavfilter │ │ │ ├── avfilter.h │ │ │ ├── avfiltergraph.h │ │ │ ├── buffersink.h │ │ │ ├── buffersrc.h │ │ │ └── version.h │ │ ├── libavformat │ │ │ ├── avformat.h │ │ │ ├── avio.h │ │ │ └── version.h │ │ ├── libavutil │ │ │ ├── adler32.h │ │ │ ├── aes.h │ │ │ ├── aes_ctr.h │ │ │ ├── attributes.h │ │ │ ├── audio_fifo.h │ │ │ ├── avassert.h │ │ │ ├── avconfig.h │ │ │ ├── avstring.h │ │ │ ├── avutil.h │ │ │ ├── base64.h │ │ │ ├── blowfish.h │ │ │ ├── bprint.h │ │ │ ├── bswap.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast5.h │ │ │ ├── channel_layout.h │ │ │ ├── common.h │ │ │ ├── cpu.h │ │ │ ├── crc.h │ │ │ ├── des.h │ │ │ ├── dict.h │ │ │ ├── display.h │ │ │ ├── downmix_info.h │ │ │ ├── error.h │ │ │ ├── eval.h │ │ │ ├── ffversion.h │ │ │ ├── fifo.h │ │ │ ├── file.h │ │ │ ├── frame.h │ │ │ ├── hash.h │ │ │ ├── hmac.h │ │ │ ├── hwcontext.h │ │ │ ├── hwcontext_vdpau.h │ │ │ ├── imgutils.h │ │ │ ├── intfloat.h │ │ │ ├── intreadwrite.h │ │ │ ├── lfg.h │ │ │ ├── log.h │ │ │ ├── lzo.h │ │ │ ├── macros.h │ │ │ ├── mastering_display_metadata.h │ │ │ ├── mathematics.h │ │ │ ├── md5.h │ │ │ ├── mem.h │ │ │ ├── motion_vector.h │ │ │ ├── murmur3.h │ │ │ ├── opt.h │ │ │ ├── parseutils.h │ │ │ ├── pixdesc.h │ │ │ ├── pixelutils.h │ │ │ ├── pixfmt.h │ │ │ ├── random_seed.h │ │ │ ├── rational.h │ │ │ ├── rc4.h │ │ │ ├── replaygain.h │ │ │ ├── ripemd.h │ │ │ ├── samplefmt.h │ │ │ ├── sha.h │ │ │ ├── sha512.h │ │ │ ├── stereo3d.h │ │ │ ├── tea.h │ │ │ ├── threadmessage.h │ │ │ ├── time.h │ │ │ ├── timecode.h │ │ │ ├── timestamp.h │ │ │ ├── tree.h │ │ │ ├── twofish.h │ │ │ ├── version.h │ │ │ └── xtea.h │ │ ├── libpostproc │ │ │ ├── postprocess.h │ │ │ └── version.h │ │ ├── libswresample │ │ │ ├── swresample.h │ │ │ └── version.h │ │ └── libswscale │ │ │ ├── swscale.h │ │ │ └── version.h │ ├── p2p │ │ ├── AVAPIs.h │ │ ├── AVFRAMEINFO.h │ │ ├── AVIOCTRLDEFs.h │ │ ├── IOTCAPIs.h │ │ ├── P2PTunnelAPIs.h │ │ └── RDTAPIs.h │ └── server │ │ ├── mainwindow.h │ │ ├── public_header.h │ │ ├── readcamera.h │ │ └── stable.h ├── lib │ ├── ffmpeg │ │ ├── avcodec.lib │ │ ├── avdevice.lib │ │ ├── avfilter.lib │ │ ├── avformat.lib │ │ ├── avutil.lib │ │ ├── postproc.lib │ │ ├── swresample.lib │ │ └── swscale.lib │ └── p2p │ │ ├── AVAPIs.lib │ │ ├── IOTCAPIs.lib │ │ ├── P2PTunnelAPIs.lib │ │ └── RDTAPIs.lib ├── server_project.pro ├── src │ ├── main.cpp │ ├── mainwindow.cpp │ └── readcamera.cpp └── ui │ └── mainwindow.ui ├── test_uid.txt ├── web camera.jpg ├── 客户端流程图.vsdx ├── 手机客户端.png ├── 服务端流程图.vsdx └── 系统结构.vsdx /.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-language=c++ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/.gitignore -------------------------------------------------------------------------------- /111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/111.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/LICENSE -------------------------------------------------------------------------------- /Napster模型.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/Napster模型.vsdx -------------------------------------------------------------------------------- /QQ截图20160506201504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/QQ截图20160506201504.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/README.md -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/avcodec.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/avdct.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/avfft.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/dirac.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/dxva2.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/qsv.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/vaapi.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/vda.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/vdpau.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/version.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavcodec/xvmc.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavdevice/avdevice.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavdevice/version.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavfilter/avfilter.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavfilter/buffersink.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavfilter/version.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavformat/avformat.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavformat/avio.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavformat/version.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/adler32.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/aes.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/attributes.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/avassert.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/avconfig.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/avstring.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/avutil.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/base64.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/blowfish.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/bprint.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/bswap.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/buffer.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/camellia.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/cast5.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/channel_layout.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/common.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/cpu.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/crc.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/des.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/dict.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/display.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/downmix_info.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/error.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/eval.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/ffversion.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/fifo.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/file.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/frame.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/hash.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/hmac.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/hwcontext.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/imgutils.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/intfloat.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/lfg.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/log.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/lzo.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/macros.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/mathematics.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/md5.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/mem.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/motion_vector.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/murmur3.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/opt.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/parseutils.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/pixdesc.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/pixelutils.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/pixfmt.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/random_seed.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/rational.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/rc4.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/replaygain.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/ripemd.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/samplefmt.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/sha.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/sha512.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/stereo3d.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/tea.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/threadmessage.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/time.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/timecode.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/timestamp.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/tree.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/twofish.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/version.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libavutil/xtea.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libpostproc/postprocess.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libpostproc/version.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libswresample/swresample.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libswresample/version.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libswscale/swscale.h -------------------------------------------------------------------------------- /client_project/Include/ffmpeg/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/ffmpeg/libswscale/version.h -------------------------------------------------------------------------------- /client_project/Include/p2p/AVAPIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/p2p/AVAPIs.h -------------------------------------------------------------------------------- /client_project/Include/p2p/AVFRAMEINFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/p2p/AVFRAMEINFO.h -------------------------------------------------------------------------------- /client_project/Include/p2p/AVIOCTRLDEFs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/p2p/AVIOCTRLDEFs.h -------------------------------------------------------------------------------- /client_project/Include/p2p/IOTCAPIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/p2p/IOTCAPIs.h -------------------------------------------------------------------------------- /client_project/Include/p2p/P2PTunnelAPIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/p2p/P2PTunnelAPIs.h -------------------------------------------------------------------------------- /client_project/Include/p2p/RDTAPIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/Include/p2p/RDTAPIs.h -------------------------------------------------------------------------------- /client_project/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/android/AndroidManifest.xml -------------------------------------------------------------------------------- /client_project/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/android/build.gradle -------------------------------------------------------------------------------- /client_project/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /client_project/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /client_project/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/android/gradlew -------------------------------------------------------------------------------- /client_project/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/android/gradlew.bat -------------------------------------------------------------------------------- /client_project/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /client_project/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /client_project/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /client_project/android/res/values/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/android/res/values/libs.xml -------------------------------------------------------------------------------- /client_project/client_project.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/client_project.pro -------------------------------------------------------------------------------- /client_project/jiliang.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/jiliang.ico -------------------------------------------------------------------------------- /client_project/lib/ffmpeg/avcodec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/lib/ffmpeg/avcodec.lib -------------------------------------------------------------------------------- /client_project/lib/ffmpeg/avdevice.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/lib/ffmpeg/avdevice.lib -------------------------------------------------------------------------------- /client_project/lib/ffmpeg/avfilter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/lib/ffmpeg/avfilter.lib -------------------------------------------------------------------------------- /client_project/lib/ffmpeg/avformat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/lib/ffmpeg/avformat.lib -------------------------------------------------------------------------------- /client_project/lib/ffmpeg/avutil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/lib/ffmpeg/avutil.lib -------------------------------------------------------------------------------- /client_project/lib/ffmpeg/postproc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/lib/ffmpeg/postproc.lib -------------------------------------------------------------------------------- /client_project/lib/ffmpeg/swresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/lib/ffmpeg/swresample.lib -------------------------------------------------------------------------------- /client_project/lib/ffmpeg/swscale.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/lib/ffmpeg/swscale.lib -------------------------------------------------------------------------------- /client_project/lib/p2p/AVAPIs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/lib/p2p/AVAPIs.lib -------------------------------------------------------------------------------- /client_project/lib/p2p/IOTCAPIs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/lib/p2p/IOTCAPIs.lib -------------------------------------------------------------------------------- /client_project/lib/p2p/P2PTunnelAPIs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/lib/p2p/P2PTunnelAPIs.lib -------------------------------------------------------------------------------- /client_project/lib/p2p/RDTAPIs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/lib/p2p/RDTAPIs.lib -------------------------------------------------------------------------------- /client_project/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/main.cpp -------------------------------------------------------------------------------- /client_project/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/mainwindow.cpp -------------------------------------------------------------------------------- /client_project/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/mainwindow.h -------------------------------------------------------------------------------- /client_project/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/mainwindow.ui -------------------------------------------------------------------------------- /client_project/myrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/client_project/myrc.rc -------------------------------------------------------------------------------- /jiliang.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/jiliang.ico -------------------------------------------------------------------------------- /nal_uint_type语义.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/nal_uint_type语义.png -------------------------------------------------------------------------------- /pc客户端.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/pc客户端.png -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/avcodec.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/avdct.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/avfft.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/dirac.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/dxva2.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/qsv.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/vaapi.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/vda.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/vdpau.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/version.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavcodec/xvmc.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavdevice/avdevice.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavdevice/version.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavfilter/avfilter.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavfilter/buffersink.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavfilter/version.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavformat/avformat.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavformat/avio.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavformat/version.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/adler32.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/aes.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/attributes.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/avassert.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/avconfig.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/avstring.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/avutil.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/base64.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/blowfish.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/bprint.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/bswap.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/buffer.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/camellia.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/cast5.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/channel_layout.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/common.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/cpu.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/crc.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/des.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/dict.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/display.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/downmix_info.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/error.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/eval.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/ffversion.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/fifo.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/file.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/frame.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/hash.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/hmac.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/hwcontext.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/imgutils.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/intfloat.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/lfg.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/log.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/lzo.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/macros.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/mathematics.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/md5.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/mem.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/motion_vector.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/murmur3.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/opt.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/parseutils.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/pixdesc.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/pixelutils.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/pixfmt.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/random_seed.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/rational.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/rc4.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/replaygain.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/ripemd.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/samplefmt.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/sha.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/sha512.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/stereo3d.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/tea.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/threadmessage.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/time.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/timecode.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/timestamp.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/tree.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/twofish.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/version.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libavutil/xtea.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libpostproc/postprocess.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libpostproc/version.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libswresample/swresample.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libswresample/version.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libswscale/swscale.h -------------------------------------------------------------------------------- /server_project/Include/ffmpeg/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/ffmpeg/libswscale/version.h -------------------------------------------------------------------------------- /server_project/Include/p2p/AVAPIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/p2p/AVAPIs.h -------------------------------------------------------------------------------- /server_project/Include/p2p/AVFRAMEINFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/p2p/AVFRAMEINFO.h -------------------------------------------------------------------------------- /server_project/Include/p2p/AVIOCTRLDEFs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/p2p/AVIOCTRLDEFs.h -------------------------------------------------------------------------------- /server_project/Include/p2p/IOTCAPIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/p2p/IOTCAPIs.h -------------------------------------------------------------------------------- /server_project/Include/p2p/P2PTunnelAPIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/p2p/P2PTunnelAPIs.h -------------------------------------------------------------------------------- /server_project/Include/p2p/RDTAPIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/p2p/RDTAPIs.h -------------------------------------------------------------------------------- /server_project/Include/server/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/server/mainwindow.h -------------------------------------------------------------------------------- /server_project/Include/server/public_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/server/public_header.h -------------------------------------------------------------------------------- /server_project/Include/server/readcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/server/readcamera.h -------------------------------------------------------------------------------- /server_project/Include/server/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/Include/server/stable.h -------------------------------------------------------------------------------- /server_project/lib/ffmpeg/avcodec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/lib/ffmpeg/avcodec.lib -------------------------------------------------------------------------------- /server_project/lib/ffmpeg/avdevice.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/lib/ffmpeg/avdevice.lib -------------------------------------------------------------------------------- /server_project/lib/ffmpeg/avfilter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/lib/ffmpeg/avfilter.lib -------------------------------------------------------------------------------- /server_project/lib/ffmpeg/avformat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/lib/ffmpeg/avformat.lib -------------------------------------------------------------------------------- /server_project/lib/ffmpeg/avutil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/lib/ffmpeg/avutil.lib -------------------------------------------------------------------------------- /server_project/lib/ffmpeg/postproc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/lib/ffmpeg/postproc.lib -------------------------------------------------------------------------------- /server_project/lib/ffmpeg/swresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/lib/ffmpeg/swresample.lib -------------------------------------------------------------------------------- /server_project/lib/ffmpeg/swscale.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/lib/ffmpeg/swscale.lib -------------------------------------------------------------------------------- /server_project/lib/p2p/AVAPIs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/lib/p2p/AVAPIs.lib -------------------------------------------------------------------------------- /server_project/lib/p2p/IOTCAPIs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/lib/p2p/IOTCAPIs.lib -------------------------------------------------------------------------------- /server_project/lib/p2p/P2PTunnelAPIs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/lib/p2p/P2PTunnelAPIs.lib -------------------------------------------------------------------------------- /server_project/lib/p2p/RDTAPIs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/lib/p2p/RDTAPIs.lib -------------------------------------------------------------------------------- /server_project/server_project.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/server_project.pro -------------------------------------------------------------------------------- /server_project/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/src/main.cpp -------------------------------------------------------------------------------- /server_project/src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/src/mainwindow.cpp -------------------------------------------------------------------------------- /server_project/src/readcamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/src/readcamera.cpp -------------------------------------------------------------------------------- /server_project/ui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/server_project/ui/mainwindow.ui -------------------------------------------------------------------------------- /test_uid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/test_uid.txt -------------------------------------------------------------------------------- /web camera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/web camera.jpg -------------------------------------------------------------------------------- /客户端流程图.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/客户端流程图.vsdx -------------------------------------------------------------------------------- /手机客户端.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/手机客户端.png -------------------------------------------------------------------------------- /服务端流程图.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/服务端流程图.vsdx -------------------------------------------------------------------------------- /系统结构.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itisyang/p2p-audio-and-video-transmission-system/HEAD/系统结构.vsdx --------------------------------------------------------------------------------